@charset "UTF-8";
.fc {
  direction: ltr;
  text-align: left;
}
.fc-rtl {
  text-align: right;
}
body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}
.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: 0.3;
}
.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}
/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px;
}
.fc-rtl .fc-popover .fc-header {
  flex-direction: row-reverse;
}
.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}
.fc-popover .fc-header .fc-close {
  cursor: pointer;
  opacity: 0.65;
  font-size: 1.1em;
}
/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px;
}
hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}
.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-mirror-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}
.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}
/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}
.fc th {
  text-align: center;
}
.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}
.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}
/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer;
}
a[data-goto]:hover {
  text-decoration: underline;
}
/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}
.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}
.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}
/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative;
}
.fc-row .fc-bg {
  z-index: 1;
}
/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}
.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}
.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}
.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}
.fc-row .fc-highlight-skeleton {
  z-index: 3;
}
/*
row content (which contains day/week numbers and events) as well as "mirror" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}
.fc-row .fc-mirror-skeleton {
  z-index: 5;
}
.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-mirror-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}
.fc-row .fc-content-skeleton td,
.fc-row .fc-mirror-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}
.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-mirror-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}
/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}
/* TODO: move to timegrid/daygrid */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}
/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.4;
  border-radius: 3px;
  border: 1px solid #3788d8;
}
.fc-event,
.fc-event-dot {
  background-color: #3788d8;
  /* default BACKGROUND color */
}
.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}
.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}
.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}
.fc-event .fc-content {
  position: relative;
  z-index: 2;
}
/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}
/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none;
}
.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}
/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}
/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.fc-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.25;
}
/* Event Dragging
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-dragging.fc-selected {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}
.fc-event.fc-dragging:not(.fc-selected) {
  opacity: 0.75;
}
/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}
/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}
/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}
/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}
/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}
/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}
/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}
/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}
tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}
.fc-mirror-skeleton tr:first-child > td > .fc-day-grid-event {
  margin-top: 0;
  /* except for mirror skeleton */
}
.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}
.fc-day-grid-event .fc-time {
  font-weight: bold;
}
/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}
/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}
/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}
a.fc-more:hover {
  text-decoration: underline;
}
.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}
/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}
.fc-more-popover {
  z-index: 2;
  width: 220px;
}
.fc-more-popover .fc-event-container {
  padding: 10px;
}
/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}
/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}
.fc-unthemed .fc-popover {
  background-color: #fff;
}
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}
.fc-unthemed td.fc-today {
  background: #fcf8e3;
}
.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: 0.3;
}
/* Icons
--------------------------------------------------------------------------------------------------
from https://feathericons.com/ and built with IcoMoon
*/
@font-face {
  font-family: "fcicons";
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.fc-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "fcicons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fc-icon-chevron-left:before {
  content: "";
}
.fc-icon-chevron-right:before {
  content: "";
}
.fc-icon-chevrons-left:before {
  content: "";
}
.fc-icon-chevrons-right:before {
  content: "";
}
.fc-icon-minus-square:before {
  content: "";
}
.fc-icon-plus-square:before {
  content: "";
}
.fc-icon-x:before {
  content: "";
}
.fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
}
/* Buttons
--------------------------------------------------------------------------------------------------
Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
*/
/* reset */
.fc-button {
  border-radius: 0;
  overflow: visible;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.fc-button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
.fc-button {
  -webkit-appearance: button;
}
.fc-button:not(:disabled) {
  cursor: pointer;
}
.fc-button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
/* theme */
.fc-button {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.4em 0.65em;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0.25em;
}
.fc-button:hover {
  color: #212529;
  text-decoration: none;
}
.fc-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}
.fc-button:disabled {
  opacity: 0.65;
}
/* "primary" coloring */
.fc-button-primary {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}
.fc-button-primary:hover {
  color: #fff;
  background-color: #1e2b37;
  border-color: #1a252f;
}
.fc-button-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}
.fc-button-primary:disabled {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}
.fc-button-primary:not(:disabled):active,
.fc-button-primary:not(:disabled).fc-button-active {
  color: #fff;
  background-color: #1a252f;
  border-color: #151e27;
}
.fc-button-primary:not(:disabled):active:focus,
.fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}
/* icons within buttons */
.fc-button .fc-icon {
  vertical-align: middle;
  font-size: 1.5em;
}
/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.fc-button-group > .fc-button {
  position: relative;
  flex: 1 1 auto;
}
.fc-button-group > .fc-button:hover {
  z-index: 1;
}
.fc-button-group > .fc-button:focus,
.fc-button-group > .fc-button:active,
.fc-button-group > .fc-button.fc-button-active {
  z-index: 1;
}
.fc-button-group > .fc-button:not(:first-child) {
  margin-left: -1px;
}
.fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-button-group > .fc-button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}
/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}
/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1.5em;
}
.fc-toolbar.fc-footer-toolbar {
  margin-top: 1.5em;
}
/* inner content */
.fc-toolbar > * > :not(:first-child) {
  margin-left: 0.75em;
}
.fc-toolbar h2 {
  font-size: 1.75em;
  margin: 0;
}
/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-view-container {
  position: relative;
}
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  box-sizing: content-box;
}
.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}
@media print {
  .fc {
    max-width: 100% !important;
  }

  /* Global Event Restyling
  --------------------------------------------------------------------------------------------------*/
  .fc-event {
    background: #fff !important;
    color: #000 !important;
    page-break-inside: avoid;
  }

  .fc-event .fc-resizer {
    display: none;
  }

  /* Table & Day-Row Restyling
  --------------------------------------------------------------------------------------------------*/
  .fc th,
.fc td,
.fc hr,
.fc thead,
.fc tbody,
.fc-row {
    border-color: #ccc !important;
    background: #fff !important;
  }

  /* kill the overlaid, absolutely-positioned components */
  /* common... */
  .fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-mirror-skeleton,
.fc-bgevent-container,
.fc-business-container,
.fc-highlight-container,
.fc-mirror-container {
    display: none;
  }

  /* don't force a min-height on rows (for DayGrid) */
  .fc tbody .fc-row {
    height: auto !important;
    /* undo height that JS set in distributeHeight */
    min-height: 0 !important;
    /* undo the min-height from each view's specific stylesheet */
  }

  .fc tbody .fc-row .fc-content-skeleton {
    position: static;
    /* undo .fc-rigid */
    padding-bottom: 0 !important;
    /* use a more border-friendly method for this... */
  }

  .fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
    /* only works in newer browsers */
    padding-bottom: 1em;
    /* ...gives space within the skeleton. also ensures min height in a way */
  }

  .fc tbody .fc-row .fc-content-skeleton table {
    /* provides a min-height for the row, but only effective for IE, which exaggerates this value,
       making it look more like 3em. for other browers, it will already be this tall */
    height: 1em;
  }

  /* Undo month-view event limiting. Display all events and hide the "more" links
  --------------------------------------------------------------------------------------------------*/
  .fc-more-cell,
.fc-more {
    display: none !important;
  }

  .fc tr.fc-limited {
    display: table-row !important;
  }

  .fc td.fc-limited {
    display: table-cell !important;
  }

  .fc-popover {
    display: none;
    /* never display the "more.." popover in print mode */
  }

  /* TimeGrid Restyling
  --------------------------------------------------------------------------------------------------*/
  /* undo the min-height 100% trick used to fill the container's height */
  .fc-time-grid {
    min-height: 0 !important;
  }

  /* don't display the side axis at all ("all-day" and time cells) */
  .fc-timeGrid-view .fc-axis {
    display: none;
  }

  /* don't display the horizontal lines */
  .fc-slats,
.fc-time-grid hr {
    /* this hr is used when height is underused and needs to be filled */
    display: none !important;
    /* important overrides inline declaration */
  }

  /* let the container that holds the events be naturally positioned and create real height */
  .fc-time-grid .fc-content-skeleton {
    position: static;
  }

  /* in case there are no events, we still want some height */
  .fc-time-grid .fc-content-skeleton table {
    height: 4em;
  }

  /* kill the horizontal spacing made by the event container. event margins will be done below */
  .fc-time-grid .fc-event-container {
    margin: 0 !important;
  }

  /* TimeGrid *Event* Restyling
  --------------------------------------------------------------------------------------------------*/
  /* naturally position events, vertically stacking them */
  .fc-time-grid .fc-event {
    position: static !important;
    margin: 3px 2px !important;
  }

  /* for events that continue to a future day, give the bottom border back */
  .fc-time-grid .fc-event.fc-not-end {
    border-bottom-width: 1px !important;
  }

  /* indicate the event continues via "..." text */
  .fc-time-grid .fc-event.fc-not-end:after {
    content: "...";
  }

  /* for events that are continuations from previous days, give the top border back */
  .fc-time-grid .fc-event.fc-not-start {
    border-top-width: 1px !important;
  }

  /* indicate the event is a continuation via "..." text */
  .fc-time-grid .fc-event.fc-not-start:before {
    content: "...";
  }

  /* time */
  /* undo a previous declaration and let the time text span to a second line */
  .fc-time-grid .fc-event .fc-time {
    white-space: normal !important;
  }

  /* hide the the time that is normally displayed... */
  .fc-time-grid .fc-event .fc-time span {
    display: none;
  }

  /* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
  .fc-time-grid .fc-event .fc-time:after {
    content: attr(data-full);
  }

  /* Vertical Scroller & Containers
  --------------------------------------------------------------------------------------------------*/
  /* kill the scrollbars and allow natural height */
  .fc-scroller,
.fc-day-grid-container,
.fc-time-grid-container {
    /* */
    overflow: visible !important;
    height: auto !important;
  }

  /* kill the horizontal border/padding used to compensate for scrollbars */
  .fc-row {
    border: 0 !important;
    margin: 0 !important;
  }

  /* Button Controls
  --------------------------------------------------------------------------------------------------*/
  .fc-button-group,
.fc button {
    display: none;
    /* don't display any button-related controls */
  }
}
/* DayGridView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-dayGridWeek-view .fc-content-skeleton,
.fc-dayGridDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}
.fc-dayGrid-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}
/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden;
}
.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
/* week and day number styling */
.fc-day-top.fc-other-month {
  opacity: 0.3;
}
.fc-dayGrid-view .fc-week-number,
.fc-dayGrid-view .fc-day-number {
  padding: 2px;
}
.fc-dayGrid-view th.fc-week-number,
.fc-dayGrid-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
  float: right;
}
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-day-number {
  float: left;
}
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0;
}
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}
.fc-dayGrid-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}
/* when week/day number have own column */
.fc-dayGrid-view td.fc-week-number {
  text-align: center;
}
.fc-dayGrid-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}
@charset "UTF-8";
/* TimeGridView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-timeGrid-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}
.fc-timeGrid-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}
.fc-timeGrid-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}
/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}
.fc-ltr .fc-axis {
  text-align: right;
}
.fc-rtl .fc-axis {
  text-align: left;
}
/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}
.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}
.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}
.fc-time-grid > .fc-bg {
  z-index: 1;
}
.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> TimeGridView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}
.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */
}
.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}
/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}
.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}
.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}
.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}
.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}
.fc-time-grid .fc-mirror-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6;
}
/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}
.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}
/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}
.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}
/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}
.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}
.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}
.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}
/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
  margin-bottom: 1px;
}
.fc-time-grid-event-inset {
  box-shadow: 0px 0px 0px 1px #fff;
}
.fc-time-grid-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.fc-time-grid-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-time-grid-event .fc-content {
  overflow: hidden;
  max-height: 100%;
}
.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}
.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}
/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}
.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}
.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}
.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}
.fc-time-grid-event.fc-short .fc-time:after {
  content: " - ";
  /* seperate with a dash, wrapped in nbsp's */
}
.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}
/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}
/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}
/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}
/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */
}
.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}
/* view wrapper */
.fc-rtl .fc-list-view {
  direction: rtl;
  /* unlike core views, leverage browser RTL */
}
.fc-list-view {
  border-width: 1px;
  border-style: solid;
}
/* table resets */
.fc .fc-list-table {
  table-layout: auto;
  /* for shrinkwrapping cell content */
}
.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}
.fc-list-table tr:first-child td {
  border-top-width: 0;
}
/* day headings with the list */
.fc-list-heading {
  border-bottom-width: 1px;
}
.fc-list-heading td {
  font-weight: bold;
}
.fc-ltr .fc-list-heading-main {
  float: left;
}
.fc-ltr .fc-list-heading-alt {
  float: right;
}
.fc-rtl .fc-list-heading-main {
  float: right;
}
.fc-rtl .fc-list-heading-alt {
  float: left;
}
/* event list items */
.fc-list-item.fc-has-url {
  cursor: pointer;
  /* whole row will be clickable */
}
.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}
/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}
.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}
.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit;
}
.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline;
}
/* message when no events */
.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}
.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee;
}
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}
/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}
/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  -o-tab-size: 4;
     tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}
@charset "UTF-8";
/* Colors for the ripple elements.*/
/* stylelint-disable-next-line material/theme-mixin-api */
/* stylelint-disable-next-line material/theme-mixin-api */
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * This file is being used by injecting custom TailwindCSS variants.
 *
 * These variants are different because these will not generate any
 * CSS rules, but they will generate SCSS variables from your Tailwind
 * config file.
 *
 * The generated output will be used by Treo.
 * Do NOT modify or use this file to generate your own variants.
 */
@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * 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;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-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.
 */
[type=search]::-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 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
.mat-badge-content {
  font-weight: 600;
  font-size: 12px;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-badge-small .mat-badge-content {
  font-size: 9px;
}
.mat-badge-large .mat-badge-content {
  font-size: 24px;
}
.mat-h1, .mat-headline, .mat-typography h1 {
  font: 400 24px/32px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2, .mat-title, .mat-typography h2 {
  font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h3, .mat-subheading-2, .mat-typography h3 {
  font: 400 16px/28px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h4, .mat-subheading-1, .mat-typography h4 {
  font: 400 15px/24px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h5, .mat-typography h5 {
  font: 400 calc(14px * 0.83)/20px Roboto, "Helvetica Neue", sans-serif;
  margin: 0 0 12px;
}
.mat-h6, .mat-typography h6 {
  font: 400 calc(14px * 0.67)/20px Roboto, "Helvetica Neue", sans-serif;
  margin: 0 0 12px;
}
.mat-body-strong, .mat-body-2 {
  font: 500 14px/24px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-body, .mat-body-1, .mat-typography {
  font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-body p, .mat-body-1 p, .mat-typography p {
  margin: 0 0 12px;
}
.mat-small, .mat-caption {
  font: 400 12px/20px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-display-4, .mat-typography .mat-display-4 {
  font: 300 112px/112px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: -0.05em;
  margin: 0 0 56px;
}
.mat-display-3, .mat-typography .mat-display-3 {
  font: 400 56px/56px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 64px;
}
.mat-display-2, .mat-typography .mat-display-2 {
  font: 400 45px/48px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: -0.005em;
  margin: 0 0 64px;
}
.mat-display-1, .mat-typography .mat-display-1 {
  font: 400 34px/40px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}
.mat-bottom-sheet-container {
  font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,
.mat-flat-button, .mat-fab, .mat-mini-fab {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.mat-button-toggle {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-card {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-card-title {
  font-size: 24px;
  font-weight: 500;
}
.mat-card-header .mat-card-title {
  font-size: 20px;
}
.mat-card-subtitle,
.mat-card-content {
  font-size: 14px;
}
.mat-checkbox {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-checkbox-layout .mat-checkbox-label {
  line-height: 24px;
}
.mat-chip {
  font-size: 14px;
  font-weight: 500;
}
.mat-chip .mat-chip-trailing-icon.mat-icon,
.mat-chip .mat-chip-remove.mat-icon {
  font-size: 18px;
}
.mat-table {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-header-cell {
  font-size: 12px;
  font-weight: 500;
}
.mat-cell, .mat-footer-cell {
  font-size: 14px;
}
.mat-calendar {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-calendar-body {
  font-size: 13px;
}
.mat-calendar-body-label,
.mat-calendar-period-button {
  font-size: 14px;
  font-weight: 500;
}
.mat-calendar-table-header th {
  font-size: 11px;
  font-weight: 400;
}
.mat-dialog-title {
  font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-expansion-panel-header {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.mat-expansion-panel-content {
  font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-form-field {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.125;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-form-field-wrapper {
  padding-bottom: 1.34375em;
}
.mat-form-field-prefix .mat-icon,
.mat-form-field-suffix .mat-icon {
  font-size: 150%;
  line-height: 1.125;
}
.mat-form-field-prefix .mat-icon-button,
.mat-form-field-suffix .mat-icon-button {
  height: 1.5em;
  width: 1.5em;
}
.mat-form-field-prefix .mat-icon-button .mat-icon,
.mat-form-field-suffix .mat-icon-button .mat-icon {
  height: 1.125em;
  line-height: 1.125;
}
.mat-form-field-infix {
  padding: 0.5em 0;
  border-top: 0.84375em solid transparent;
}
.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34375em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34374em) scale(0.75);
  width: 133.3333433333%;
}
.mat-form-field-label-wrapper {
  top: -0.84375em;
  padding-top: 0.84375em;
}
.mat-form-field-label {
  top: 1.34375em;
}
.mat-form-field-underline {
  bottom: 1.34375em;
}
.mat-form-field-subscript-wrapper {
  font-size: 75%;
  margin-top: 0.6666666667em;
  top: calc(100% - 1.7916666667em);
}
.mat-form-field-appearance-legacy .mat-form-field-wrapper {
  padding-bottom: 1.25em;
}
.mat-form-field-appearance-legacy .mat-form-field-infix {
  padding: 0.4375em 0;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  -ms-transform: translateY(-1.28125em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);
  -ms-transform: translateY(-1.28124em) scale(0.75);
  width: 133.3333433333%;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);
  -ms-transform: translateY(-1.28123em) scale(0.75);
  width: 133.3333533333%;
}
.mat-form-field-appearance-legacy .mat-form-field-label {
  top: 1.28125em;
}
.mat-form-field-appearance-legacy .mat-form-field-underline {
  bottom: 1.25em;
}
.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
  margin-top: 0.5416666667em;
  top: calc(100% - 1.6666666667em);
}
@media print {
  .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.28122em) scale(0.75);
  }
  .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.28121em) scale(0.75);
  }
  .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.2812em) scale(0.75);
  }
}
.mat-form-field-appearance-fill .mat-form-field-infix {
  padding: 0.25em 0 0.75em 0;
}
.mat-form-field-appearance-fill .mat-form-field-label {
  top: 1.09375em;
  margin-top: -0.5em;
}
.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.59375em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.59374em) scale(0.75);
  width: 133.3333433333%;
}
.mat-form-field-appearance-outline .mat-form-field-infix {
  padding: 1em 0 1em 0;
}
.mat-form-field-appearance-outline .mat-form-field-label {
  top: 1.84375em;
  margin-top: -0.25em;
}
.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.59375em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.59374em) scale(0.75);
  width: 133.3333433333%;
}
.mat-grid-tile-header,
.mat-grid-tile-footer {
  font-size: 14px;
}
.mat-grid-tile-header .mat-line,
.mat-grid-tile-footer .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-grid-tile-header .mat-line:nth-child(n+2),
.mat-grid-tile-footer .mat-line:nth-child(n+2) {
  font-size: 12px;
}
input.mat-input-element {
  margin-top: -0.0625em;
}
.mat-menu-item {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.mat-paginator,
.mat-paginator-page-size .mat-select-trigger {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 12px;
}
.mat-radio-button {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-select {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-select-trigger {
  height: 1.125em;
}
.mat-slide-toggle-content {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-slider-thumb-label-text {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.mat-stepper-vertical, .mat-stepper-horizontal {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-step-label {
  font-size: 14px;
  font-weight: 400;
}
.mat-step-sub-label-error {
  font-weight: normal;
}
.mat-step-label-error {
  font-size: 14px;
}
.mat-step-label-selected {
  font-size: 14px;
  font-weight: 500;
}
.mat-tab-group {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-tab-label, .mat-tab-link {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.mat-toolbar,
.mat-toolbar h1,
.mat-toolbar h2,
.mat-toolbar h3,
.mat-toolbar h4,
.mat-toolbar h5,
.mat-toolbar h6 {
  font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0;
}
.mat-tooltip {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.mat-tooltip-handset {
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.mat-list-item {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-list-option {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-list-base .mat-list-item {
  font-size: 16px;
}
.mat-list-base .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 14px;
}
.mat-list-base .mat-list-option {
  font-size: 16px;
}
.mat-list-base .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 14px;
}
.mat-list-base .mat-subheader {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.mat-list-base[dense] .mat-list-item {
  font-size: 12px;
}
.mat-list-base[dense] .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 12px;
}
.mat-list-base[dense] .mat-list-option {
  font-size: 12px;
}
.mat-list-base[dense] .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 12px;
}
.mat-list-base[dense] .mat-subheader {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.mat-option {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 16px;
}
.mat-optgroup-label {
  font: 500 14px/24px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-simple-snackbar {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 14px;
}
.mat-simple-snackbar-action {
  line-height: 1;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
}
.mat-tree {
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.mat-tree-node,
.mat-nested-tree-node {
  font-weight: 400;
  font-size: 14px;
}
.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}
.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}
.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale(0);
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}
.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.cdk-overlay-container, .cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media screen and (-ms-high-contrast: active) {
  .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
@-webkit-keyframes cdk-text-field-autofill-start {
  /*!*/
}
@keyframes cdk-text-field-autofill-start {
  /*!*/
}
@-webkit-keyframes cdk-text-field-autofill-end {
  /*!*/
}
@keyframes cdk-text-field-autofill-end {
  /*!*/
}
.cdk-text-field-autofill-monitored:-webkit-autofill {
  -webkit-animation: cdk-text-field-autofill-start 0s 1ms;
          animation: cdk-text-field-autofill-start 0s 1ms;
}
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  -webkit-animation: cdk-text-field-autofill-end 0s 1ms;
          animation: cdk-text-field-autofill-end 0s 1ms;
}
textarea.cdk-textarea-autosize {
  resize: none;
}
textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}
textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}
.mat-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator {
  position: relative;
}
/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */
/**
 * 1. Prevent padding and border from affecting element width
 * https://goo.gl/pYtbK7
 * 2. Change the default font family in all browsers (opinionated)
 */
html {
  box-sizing: border-box;
  /* 1 */
  font-family: sans-serif;
  /* 2 */
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
/**
 * Removes the default spacing and border for appropriate elements.
 */
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre {
  margin: 0;
}
button {
  background: transparent;
  padding: 0;
}
/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
fieldset {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/**
 * Tailwind custom reset styles
 */
/**
 * 1. Use the system font stack as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 * to override it to ensure consistency even when using the default theme.
 */
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 1 */
  line-height: 1.5;
  /* 2 */
}
/**
 * Allow adding a border to an element by just adding a border-width.
 *
 * By default, the way the browser specifies that an element should have no
 * border is by setting it's border-style to `none` in the user-agent
 * stylesheet.
 *
 * In order to easily add borders to elements by just setting the `border-width`
 * property, we change the default border-style for all elements to `solid`, and
 * use border-width to hide them instead. This way our `border` utilities only
 * need to set the `border-width` property instead of the entire `border`
 * shorthand, making our border utilities much more straightforward to compose.
 *
 * https://github.com/tailwindcss/tailwindcss/pull/116
 */
*,
*::before,
*::after {
  border-width: 0;
  border-style: solid;
}
/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */
img {
  border-style: solid;
}
textarea {
  resize: vertical;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: inherit;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: inherit;
}
input::placeholder,
textarea::placeholder {
  color: inherit;
}
button,
[role=button] {
  cursor: pointer;
}
table {
  border-collapse: collapse;
}
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;
}
/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */
button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}
/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */
pre,
code,
kbd,
samp {
  font-family: "IBM Plex Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */
img,
video {
  max-width: 100%;
  height: auto;
}
* {
  text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -webkit-text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}
*:focus {
  outline: none !important;
}
* button.cdk-focused.cdk-keyboard-focused {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
html,
body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
hr {
  margin: 32px 0;
  border-bottom-width: 1px;
}
img {
  width: 100%;
  vertical-align: top;
}
input[disabled] {
  opacity: 1;
  -webkit-text-fill-color: currentColor;
}
.mat-badge-content {
  font-weight: 600;
  font-size: 12px;
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-badge-small .mat-badge-content {
  font-size: 9px;
}
.mat-badge-large .mat-badge-content {
  font-size: 24px;
}
.mat-h1, .mat-headline, .mat-typography h1 {
  font: 400 24px/32px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2, .mat-title, .mat-typography h2 {
  font: 600 1.25rem/2rem Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h3, .mat-subheading-2, .mat-typography h3 {
  font: 400 16px/28px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h4, .mat-subheading-1, .mat-typography h4 {
  font: 400 15px/24px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h5, .mat-typography h5 {
  font: 400 calc(14px * 0.83)/20px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0 0 12px;
}
.mat-h6, .mat-typography h6 {
  font: 400 calc(14px * 0.67)/20px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0 0 12px;
}
.mat-body-strong, .mat-body-2 {
  font: 600 0.875rem/1.5rem Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
}
.mat-body, .mat-body-1, .mat-typography {
  font: 400 14px/20px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
}
.mat-body p, .mat-body-1 p, .mat-typography p {
  margin: 0 0 12px;
}
.mat-small, .mat-caption {
  font: 400 12px/20px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
}
.mat-display-4, .mat-typography .mat-display-4 {
  font: 300 112px/112px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: -0.05em;
  margin: 0 0 56px;
}
.mat-display-3, .mat-typography .mat-display-3 {
  font: 400 56px/56px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: -0.02em;
  margin: 0 0 64px;
}
.mat-display-2, .mat-typography .mat-display-2 {
  font: 400 45px/48px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: -0.005em;
  margin: 0 0 64px;
}
.mat-display-1, .mat-typography .mat-display-1 {
  font: 400 34px/40px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
  margin: 0 0 64px;
}
.mat-bottom-sheet-container {
  font: 400 14px/20px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
}
.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,
.mat-flat-button, .mat-fab, .mat-mini-fab {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.875rem;
  font-weight: 500;
}
.mat-button-toggle {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-card {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-card-title {
  font-size: 24px;
  font-weight: 600;
}
.mat-card-header .mat-card-title {
  font-size: 1.25rem;
}
.mat-card-subtitle,
.mat-card-content {
  font-size: 14px;
}
.mat-checkbox {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-checkbox-layout .mat-checkbox-label {
  line-height: 1.5rem;
}
.mat-chip {
  font-size: 0.875rem;
  font-weight: 600;
}
.mat-chip .mat-chip-trailing-icon.mat-icon,
.mat-chip .mat-chip-remove.mat-icon {
  font-size: 18px;
}
.mat-table {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-header-cell {
  font-size: 12px;
  font-weight: 600;
}
.mat-cell, .mat-footer-cell {
  font-size: 14px;
}
.mat-calendar {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-calendar-body {
  font-size: 13px;
}
.mat-calendar-body-label,
.mat-calendar-period-button {
  font-size: 0.875rem;
  font-weight: 500;
}
.mat-calendar-table-header th {
  font-size: 11px;
  font-weight: 400;
}
.mat-dialog-title {
  font: 600 1.25rem/2rem Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
}
.mat-expansion-panel-header {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 15px;
  font-weight: 400;
}
.mat-expansion-panel-content {
  font: 400 14px/20px Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
}
.mat-form-field {
  font: 400 0.875rem/1.2857142857 Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
}
.mat-form-field-wrapper {
  padding-bottom: 1.4642857143em;
}
.mat-form-field-prefix .mat-icon,
.mat-form-field-suffix .mat-icon {
  font-size: 150%;
  line-height: 1.2857142857;
}
.mat-form-field-prefix .mat-icon-button,
.mat-form-field-suffix .mat-icon-button {
  height: 1.5em;
  width: 1.5em;
}
.mat-form-field-prefix .mat-icon-button .mat-icon,
.mat-form-field-suffix .mat-icon-button .mat-icon {
  height: 1.2857142857em;
  line-height: 1.2857142857;
}
.mat-form-field-infix {
  padding: 0.5em 0;
  border-top: 0.9642857143em solid transparent;
}
.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.4642657143em) scale(0.75);
  width: 133.3333533333%;
}
.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.4642557143em) scale(0.75);
  width: 133.3333633333%;
}
.mat-form-field-label-wrapper {
  top: -0.9642857143em;
  padding-top: 0.9642857143em;
}
.mat-form-field-label {
  top: 1.4642857143em;
}
.mat-form-field-underline {
  bottom: 1.4642857143em;
}
.mat-form-field-subscript-wrapper {
  font-size: 75%;
  margin-top: 0.6666666667em;
  top: calc(100% - 1.9523809524em);
}
.mat-form-field-appearance-legacy .mat-form-field-wrapper {
  padding-bottom: 1.25em;
}
.mat-form-field-appearance-legacy .mat-form-field-infix {
  padding: 0.3571428571em 0;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.3214285714em) scale(0.75) perspective(100px) translateZ(0.00106px);
  -ms-transform: translateY(-1.3213685714em) scale(0.75);
  width: 133.3333933333%;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.3214285714em) scale(0.75) perspective(100px) translateZ(0.00107px);
  -ms-transform: translateY(-1.3213585714em) scale(0.75);
  width: 133.3334033333%;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.3214285714em) scale(0.75) perspective(100px) translateZ(0.00108px);
  -ms-transform: translateY(-1.3213485714em) scale(0.75);
  width: 133.3334133333%;
}
.mat-form-field-appearance-legacy .mat-form-field-label {
  top: 1.3214285714em;
}
.mat-form-field-appearance-legacy .mat-form-field-underline {
  bottom: 1.25em;
}
.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
  margin-top: 0.380952381em;
  top: calc(100% - 1.6666666667em);
}
@media print {
  .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.3213385714em) scale(0.75);
  }
  .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.3213285714em) scale(0.75);
  }
  .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.3213185714em) scale(0.75);
  }
}
.mat-form-field-appearance-fill .mat-form-field-infix {
  padding: 0.25em 0 0.75em 0;
}
.mat-form-field-appearance-fill .mat-form-field-label {
  top: 1.2142857143em;
  margin-top: -0.5em;
}
.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.7142657143em) scale(0.75);
  width: 133.3333533333%;
}
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.7142557143em) scale(0.75);
  width: 133.3333633333%;
}
.mat-form-field-appearance-outline .mat-form-field-infix {
  padding: 1em 0 1em 0;
}
.mat-form-field-appearance-outline .mat-form-field-label {
  top: 1.9642857143em;
  margin-top: -0.25em;
}
.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.7142657143em) scale(0.75);
  width: 133.3333533333%;
}
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.7142557143em) scale(0.75);
  width: 133.3333633333%;
}
.mat-grid-tile-header,
.mat-grid-tile-footer {
  font-size: 14px;
}
.mat-grid-tile-header .mat-line,
.mat-grid-tile-footer .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-grid-tile-header .mat-line:nth-child(n+2),
.mat-grid-tile-footer .mat-line:nth-child(n+2) {
  font-size: 12px;
}
input.mat-input-element {
  margin-top: -0.1428571429em;
}
.mat-menu-item {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
  font-weight: 400;
}
.mat-paginator,
.mat-paginator-page-size .mat-select-trigger {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
}
.mat-radio-button {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-select {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-select-trigger {
  height: 1.2857142857em;
}
.mat-slide-toggle-content {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-slider-thumb-label-text {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  font-weight: 600;
}
.mat-stepper-vertical, .mat-stepper-horizontal {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-step-label {
  font-size: 14px;
  font-weight: 400;
}
.mat-step-sub-label-error {
  font-weight: normal;
}
.mat-step-label-error {
  font-size: 0.875rem;
}
.mat-step-label-selected {
  font-size: 0.875rem;
  font-weight: 600;
}
.mat-tab-group {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-tab-label, .mat-tab-link {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.875rem;
  font-weight: 500;
}
.mat-toolbar,
.mat-toolbar h1,
.mat-toolbar h2,
.mat-toolbar h3,
.mat-toolbar h4,
.mat-toolbar h5,
.mat-toolbar h6 {
  font: 600 1.25rem/2rem Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
  margin: 0;
}
.mat-tooltip {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.mat-tooltip-handset {
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.mat-list-item {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-list-option {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-list-base .mat-list-item {
  font-size: 16px;
}
.mat-list-base .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 14px;
}
.mat-list-base .mat-list-option {
  font-size: 16px;
}
.mat-list-base .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 14px;
}
.mat-list-base .mat-subheader {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.875rem;
  font-weight: 600;
}
.mat-list-base[dense] .mat-list-item {
  font-size: 12px;
}
.mat-list-base[dense] .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 12px;
}
.mat-list-base[dense] .mat-list-option {
  font-size: 12px;
}
.mat-list-base[dense] .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 12px;
}
.mat-list-base[dense] .mat-subheader {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  font-weight: 600;
}
.mat-option {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
}
.mat-optgroup-label {
  font: 600 0.875rem/1.5rem Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
}
.mat-simple-snackbar {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
}
.mat-simple-snackbar-action {
  line-height: 1;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
}
.mat-tree {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mat-tree-node,
.mat-nested-tree-node {
  font-weight: 400;
  font-size: 14px;
}
html {
  font-size: 16px;
}
body {
  font-size: 0.875rem;
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
h1, h2, h3, h4, h5, h6 {
  margin: 1.25em 0 0.5em 0;
}
h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.25;
}
h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.25;
}
h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.019em;
  line-height: 1.25;
}
h4 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.017em;
}
h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.014em;
}
h6 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.011em;
}
a {
  color: currentColor;
  text-decoration: none;
}
.link {
  cursor: pointer;
}
.link:focus, .link:hover {
  text-decoration: underline;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.breadcrumb .path {
  white-space: nowrap;
}
.breadcrumb .patha {
  color: inherit;
}
.breadcrumb .separator {
  margin: 0 6px;
}
code,
pre {
  font-family: "IBM Plex Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 4px;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
}
pre {
  padding: 24px;
  margin: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
:not(pre) > code {
  padding: 2px 5px;
}
.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4 {
  margin: 0;
}
.rich-text h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
.rich-text h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}
.rich-text h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}
.rich-text h4 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.rich-text h2 + * {
  margin-top: 0;
}
.rich-text h3 + * {
  margin-top: 0;
}
.rich-text h4 + * {
  margin-top: 0;
}
.rich-text p {
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.rich-text [class~=lead] {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 16px;
}
.rich-text hr {
  margin-top: 40px;
  margin-bottom: 40px;
}
.rich-text hr + * {
  margin-top: 0;
}
.rich-text a {
  font-weight: 500;
  text-decoration: underline;
}
.rich-text abbr {
  cursor: help;
  border-bottom-width: 1px;
  border-bottom-style: dotted;
}
.rich-text blockquote {
  border-left-width: 3px;
  font-style: italic;
  font-weight: 600;
  margin: 20px 0;
  padding-left: 16px;
  quotes: "“" "”" "‘" "’";
}
.rich-text blockquote p:first-of-type:before {
  content: open-quote;
}
.rich-text blockquote p:last-of-type:after {
  content: close-quote;
}
.rich-text blockquote footer {
  font-style: normal;
}
.rich-text blockquote footer:before {
  content: "— ";
}
.rich-text blockquote.reverse {
  border-left-width: 0;
  border-right-width: 3px;
  text-align: right;
  padding-left: 0;
  padding-right: 16px;
}
.rich-text blockquote.reverse footer:before {
  content: "";
}
.rich-text blockquote.reverse footer:after {
  content: "— ";
}
.rich-text dl dt {
  font-weight: 700;
}
.rich-text dl dd {
  margin: 4px 0 16px 0;
}
.rich-text fieldset {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-before: 0;
          padding-block-start: 0;
  -webkit-padding-after: 0;
          padding-block-end: 0;
  width: 100%;
  border-width: 1px;
  border-radius: 4px;
  padding: 24px;
}
.rich-text fieldset legend {
  padding: 0 6px;
  margin-left: -6px;
}
.rich-text img {
  margin-top: 32px;
  margin-bottom: 32px;
}
.rich-text video {
  margin-top: 32px;
  margin-bottom: 32px;
}
.rich-text figure {
  margin-top: 32px;
  margin-bottom: 32px;
}
.rich-text figure > * {
  margin-top: 0;
  margin-bottom: 0;
}
.rich-text figure figcaption {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 12px;
}
.rich-text pre {
  margin-top: 20px;
  margin-bottom: 20px;
}
.rich-text pre code {
  padding: 0;
}
.rich-text strong {
  font-weight: 600;
}
.rich-text ol {
  counter-reset: list-counter;
  margin-top: 16px;
  margin-bottom: 16px;
}
.rich-text ul {
  margin-top: 16px;
  margin-bottom: 16px;
}
.rich-text li {
  margin-top: 4px;
  margin-bottom: 4px;
  line-height: 1.8;
}
.rich-text ol > li {
  position: relative;
  counter-increment: list-counter;
  padding-left: 20px;
}
.rich-text ol > li:before {
  content: counter(list-counter) ".";
  position: absolute;
  font-weight: 400;
  left: 0;
}
.rich-text > ol > li > *:first-child {
  margin-top: 16px;
}
.rich-text > ol > li > *:last-child {
  margin-bottom: 16px;
}
.rich-text ul > li {
  position: relative;
  padding-left: 24px;
}
.rich-text ul > li:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: 9px;
  left: 3px;
}
.rich-text > ul > li p {
  margin-top: 8px;
  margin-bottom: 8px;
}
.rich-text > ul > li > *:first-child {
  margin-top: 16px;
}
.rich-text > ul > li > *:last-child {
  margin-bottom: 16px;
}
.rich-text ul ul, .rich-text ul ol, .rich-text ol ul, .rich-text ol ol {
  margin-top: 8px;
  margin-bottom: 8px;
}
.rich-text table {
  table-layout: auto;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.75;
  text-align: left;
}
.rich-text thead {
  font-weight: 600;
  border-bottom-width: 1px;
}
.rich-text thead th {
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  vertical-align: bottom;
}
.rich-text thead th:first-child {
  padding-left: 0;
}
.rich-text thead th:last-child {
  padding-right: 0;
}
.rich-text tbody tr {
  border-bottom-width: 1px;
}
.rich-text tbody tr:last-child {
  border-bottom-width: 0;
}
.rich-text tbody td {
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  vertical-align: top;
}
.rich-text tbody td:first-child {
  padding-left: 0;
}
.rich-text tbody td:last-child {
  padding-right: 0;
}
.rich-text > :first-child {
  margin-top: 0;
}
.rich-text > :last-child {
  margin-bottom: 0;
}
.rich-text * + .treo-highlight {
  margin-top: 16px;
}
.rich-text .treo-highlight + p {
  margin-top: 24px;
}
.rich-text * + treo-message {
  margin-top: 24px;
}
.rich-text treo-message + p {
  margin-top: 24px;
}
.treo-theme-dark .link {
  color: #0694A2;
  border-bottom-color: #0694A2;
}
.treo-theme-dark .breadcrumb .path {
  color: #0694A2;
}
.treo-theme-dark .breadcrumb .path.current {
  color: #97a6ba;
}
.treo-theme-dark .breadcrumb .separator {
  color: #97a6ba;
}
.treo-theme-dark code,
.treo-theme-dark pre {
  color: #97a6ba;
  background: #27303f;
}
.treo-theme-dark :not(pre) > code {
  color: #97a6ba;
  background: #364152;
}
.treo-theme-dark .rich-text a {
  color: #0694A2;
  border-bottom-color: #0694A2;
}
.treo-theme-dark .rich-text figure figcaption {
  color: #97a6ba;
}
.treo-theme-dark .rich-text mark {
  background: #F7F49A;
}
.treo-theme-dark .rich-text ol > li:before {
  color: #97a6ba;
}
.treo-theme-dark .rich-text ul > li:before {
  background: #64748b;
}
.treo-theme-light .link {
  color: #5850EC;
  border-bottom-color: #5850EC;
}
.treo-theme-light .breadcrumb .path {
  color: #5850EC;
}
.treo-theme-light .breadcrumb .path.current {
  color: #64748b;
}
.treo-theme-light .breadcrumb .separator {
  color: #64748b;
}
.treo-theme-light code,
.treo-theme-light pre {
  background: #FFFFFF;
  color: #728FCB;
}
.treo-theme-light :not(pre) > code {
  color: #64748b;
  background: #e2e8f0;
}
.treo-theme-light .rich-text a {
  color: #5850EC;
  border-bottom-color: #5850EC;
}
.treo-theme-light .rich-text figure figcaption {
  color: #64748b;
}
.treo-theme-light .rich-text mark {
  background: #F7F49A;
}
.treo-theme-light .rich-text ol > li:before {
  color: #64748b;
}
.treo-theme-light .rich-text ul > li:before {
  background: #97a6ba;
}
.theme-dark .link {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
.theme-dark .breadcrumb .path {
  color: #FFFFFF;
}
.theme-dark .breadcrumb .path.current {
  color: #97a6ba;
}
.theme-dark .breadcrumb .separator {
  color: #97a6ba;
}
.theme-dark code,
.theme-dark pre {
  color: #97a6ba;
  background: #27303f;
}
.theme-dark :not(pre) > code {
  color: #97a6ba;
  background: #364152;
}
.theme-dark .rich-text a {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
.theme-dark .rich-text figure figcaption {
  color: #97a6ba;
}
.theme-dark .rich-text mark {
  background: #F7F49A;
}
.theme-dark .rich-text ol > li:before {
  color: #97a6ba;
}
.theme-dark .rich-text ul > li:before {
  background: #64748b;
}
.theme-light .link {
  color: #000000;
  border-bottom-color: #000000;
}
.theme-light .breadcrumb .path {
  color: #000000;
}
.theme-light .breadcrumb .path.current {
  color: #64748b;
}
.theme-light .breadcrumb .separator {
  color: #64748b;
}
.theme-light code,
.theme-light pre {
  background: #FFFFFF;
  color: #728FCB;
}
.theme-light :not(pre) > code {
  color: #64748b;
  background: #e2e8f0;
}
.theme-light .rich-text a {
  color: #000000;
  border-bottom-color: #000000;
}
.theme-light .rich-text figure figcaption {
  color: #64748b;
}
.theme-light .rich-text mark {
  background: #F7F49A;
}
.theme-light .rich-text ol > li:before {
  color: #64748b;
}
.theme-light .rich-text ul > li:before {
  background: #97a6ba;
}
.treo-theme-dark {
  color: white;
  background-color: #1a202e;
}
.treo-theme-dark *,
.treo-theme-dark *::before,
.treo-theme-dark *::after {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark [disabled] * {
  color: #475569 !important;
}
.treo-theme-dark .mat-icon {
  color: #97a6ba;
}
.treo-theme-dark .text-card {
  color: #27303f;
}
.treo-theme-dark .text-default {
  color: white;
}
.treo-theme-dark .text-secondary {
  color: #97a6ba;
}
.treo-theme-dark .text-hint {
  color: #64748b;
}
.treo-theme-dark .text-disabled {
  color: #475569;
}
.treo-theme-dark .divider {
  color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .bg-default {
  background-color: #1a202e;
}
.treo-theme-dark .bg-dialog,
.treo-theme-dark .bg-card {
  background-color: #27303f;
}
.treo-theme-dark .bg-hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.treo-theme-dark.dark\:text-normal,
.treo-theme-dark .dark\:text-normal {
  color: white;
}
.treo-theme-dark.dark\:text-secondary,
.treo-theme-dark .dark\:text-secondary {
  color: #97a6ba;
}
.treo-theme-dark.dark\:text-hint,
.treo-theme-dark .dark\:text-hint {
  color: #64748b;
}
.treo-theme-dark.dark\:text-disabled,
.treo-theme-dark .dark\:text-disabled {
  color: #475569;
}
.treo-theme-dark.dark\:text-divider,
.treo-theme-dark .dark\:text-divider {
  color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark.dark\:bg-default,
.treo-theme-dark .dark\:bg-default {
  background-color: #1a202e;
}
.treo-theme-dark.dark\:bg-dialog,
.treo-theme-dark .dark\:bg-dialog, .treo-theme-dark.dark\:bg-card,
.treo-theme-dark .dark\:bg-card {
  background-color: #27303f;
}
.treo-theme-dark.dark\:bg-hover,
.treo-theme-dark .dark\:bg-hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.treo-theme-light {
  color: #27303f;
  background-color: #f1f5f9;
}
.treo-theme-light *,
.treo-theme-light *::before,
.treo-theme-light *::after {
  border-color: #e2e8f0;
}
.treo-theme-light [disabled] * {
  color: #97a6ba !important;
}
.treo-theme-light .mat-icon {
  color: #64748b;
}
.treo-theme-light .text-card {
  color: white;
}
.treo-theme-light .text-default {
  color: #27303f;
}
.treo-theme-light .text-secondary {
  color: #64748b;
}
.treo-theme-light .text-hint {
  color: #97a6ba;
}
.treo-theme-light .text-disabled {
  color: #97a6ba;
}
.treo-theme-light .divider {
  color: #e2e8f0;
}
.treo-theme-light .bg-default {
  background-color: #f1f5f9;
}
.treo-theme-light .bg-dialog,
.treo-theme-light .bg-card {
  background-color: white;
}
.treo-theme-light .bg-hover {
  background-color: rgba(151, 166, 186, 0.12);
}
.treo-theme-light.light\:text-normal,
.treo-theme-light .light\:text-normal {
  color: #27303f;
}
.treo-theme-light.light\:text-secondary,
.treo-theme-light .light\:text-secondary {
  color: #64748b;
}
.treo-theme-light.light\:text-hint,
.treo-theme-light .light\:text-hint {
  color: #97a6ba;
}
.treo-theme-light.light\:text-disabled,
.treo-theme-light .light\:text-disabled {
  color: #97a6ba;
}
.treo-theme-light.light\:text-divider,
.treo-theme-light .light\:text-divider {
  color: #e2e8f0;
}
.treo-theme-light.light\:bg-default,
.treo-theme-light .light\:bg-default {
  background-color: #f1f5f9;
}
.treo-theme-light.light\:bg-dialog,
.treo-theme-light .light\:bg-dialog, .treo-theme-light.light\:bg-card,
.treo-theme-light .light\:bg-card {
  background-color: white;
}
.treo-theme-light.light\:bg-hover,
.treo-theme-light .light\:bg-hover {
  background-color: rgba(151, 166, 186, 0.12);
}
.theme-dark {
  color: white;
  background-color: #1a202e;
}
.theme-dark *,
.theme-dark *::before,
.theme-dark *::after {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark [disabled] * {
  color: #475569 !important;
}
.theme-dark .mat-icon {
  color: #97a6ba;
}
.theme-dark .text-card {
  color: #27303f;
}
.theme-dark .text-default {
  color: white;
}
.theme-dark .text-secondary {
  color: #97a6ba;
}
.theme-dark .text-hint {
  color: #64748b;
}
.theme-dark .text-disabled {
  color: #475569;
}
.theme-dark .divider {
  color: rgba(241, 245, 249, 0.12);
}
.theme-dark .bg-default {
  background-color: #1a202e;
}
.theme-dark .bg-dialog,
.theme-dark .bg-card {
  background-color: #27303f;
}
.theme-dark .bg-hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.theme-dark.dark\:text-normal,
.theme-dark .dark\:text-normal {
  color: white;
}
.theme-dark.dark\:text-secondary,
.theme-dark .dark\:text-secondary {
  color: #97a6ba;
}
.theme-dark.dark\:text-hint,
.theme-dark .dark\:text-hint {
  color: #64748b;
}
.theme-dark.dark\:text-disabled,
.theme-dark .dark\:text-disabled {
  color: #475569;
}
.theme-dark.dark\:text-divider,
.theme-dark .dark\:text-divider {
  color: rgba(241, 245, 249, 0.12);
}
.theme-dark.dark\:bg-default,
.theme-dark .dark\:bg-default {
  background-color: #1a202e;
}
.theme-dark.dark\:bg-dialog,
.theme-dark .dark\:bg-dialog, .theme-dark.dark\:bg-card,
.theme-dark .dark\:bg-card {
  background-color: #27303f;
}
.theme-dark.dark\:bg-hover,
.theme-dark .dark\:bg-hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.theme-light {
  color: #27303f;
  background-color: #f1f5f9;
}
.theme-light *,
.theme-light *::before,
.theme-light *::after {
  border-color: #e2e8f0;
}
.theme-light [disabled] * {
  color: #97a6ba !important;
}
.theme-light .mat-icon {
  color: #64748b;
}
.theme-light .text-card {
  color: white;
}
.theme-light .text-default {
  color: #27303f;
}
.theme-light .text-secondary {
  color: #64748b;
}
.theme-light .text-hint {
  color: #97a6ba;
}
.theme-light .text-disabled {
  color: #97a6ba;
}
.theme-light .divider {
  color: #e2e8f0;
}
.theme-light .bg-default {
  background-color: #f1f5f9;
}
.theme-light .bg-dialog,
.theme-light .bg-card {
  background-color: white;
}
.theme-light .bg-hover {
  background-color: rgba(151, 166, 186, 0.12);
}
.theme-light.light\:text-normal,
.theme-light .light\:text-normal {
  color: #27303f;
}
.theme-light.light\:text-secondary,
.theme-light .light\:text-secondary {
  color: #64748b;
}
.theme-light.light\:text-hint,
.theme-light .light\:text-hint {
  color: #97a6ba;
}
.theme-light.light\:text-disabled,
.theme-light .light\:text-disabled {
  color: #97a6ba;
}
.theme-light.light\:text-divider,
.theme-light .light\:text-divider {
  color: #e2e8f0;
}
.theme-light.light\:bg-default,
.theme-light .light\:bg-default {
  background-color: #f1f5f9;
}
.theme-light.light\:bg-dialog,
.theme-light .light\:bg-dialog, .theme-light.light\:bg-card,
.theme-light .light\:bg-card {
  background-color: white;
}
.theme-light.light\:bg-hover,
.theme-light .light\:bg-hover {
  background-color: rgba(151, 166, 186, 0.12);
}
.treo-theme-dark .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.treo-theme-dark .mat-option {
  color: white;
}
.treo-theme-dark .mat-option:hover:not(.mat-option-disabled), .treo-theme-dark .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(255, 255, 255, 0.05);
}
.treo-theme-dark .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(255, 255, 255, 0.05);
}
.treo-theme-dark .mat-option.mat-active {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}
.treo-theme-dark .mat-option.mat-option-disabled {
  color: #64748b;
}
.treo-theme-dark .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #0694a2;
}
.treo-theme-dark .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #e74694;
}
.treo-theme-dark .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #f98080;
}
.treo-theme-dark .mat-optgroup-label {
  color: #97a6ba;
}
.treo-theme-dark .mat-optgroup-disabled .mat-optgroup-label {
  color: #64748b;
}
.treo-theme-dark .mat-pseudo-checkbox {
  color: #97a6ba;
}
.treo-theme-dark .mat-pseudo-checkbox::after {
  color: #1a202e;
}
.treo-theme-dark .mat-pseudo-checkbox-disabled {
  color: #686868;
}
.treo-theme-dark .mat-primary .mat-pseudo-checkbox-checked,
.treo-theme-dark .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #0694a2;
}
.treo-theme-dark .mat-pseudo-checkbox-checked,
.treo-theme-dark .mat-pseudo-checkbox-indeterminate,
.treo-theme-dark .mat-accent .mat-pseudo-checkbox-checked,
.treo-theme-dark .mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #e74694;
}
.treo-theme-dark .mat-warn .mat-pseudo-checkbox-checked,
.treo-theme-dark .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #f98080;
}
.treo-theme-dark .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.treo-theme-dark .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #686868;
}
.treo-theme-dark .mat-app-background, .treo-theme-dark.mat-app-background {
  background-color: #1a202e;
  color: white;
}
.treo-theme-dark .mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.mat-theme-loaded-marker {
  display: none;
}
.treo-theme-dark .mat-autocomplete-panel {
  background: #27303f;
  color: white;
}
.treo-theme-dark .mat-autocomplete-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: #27303f;
}
.treo-theme-dark .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: white;
}
.treo-theme-dark .mat-badge-content {
  color: #edfafa;
  background: #0694a2;
}
.cdk-high-contrast-active .treo-theme-dark .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.treo-theme-dark .mat-badge-accent .mat-badge-content {
  background: #e74694;
  color: #fdf2f8;
}
.treo-theme-dark .mat-badge-warn .mat-badge-content {
  color: #771d1d;
  background: #f98080;
}
.treo-theme-dark .mat-badge {
  position: relative;
}
.treo-theme-dark .mat-badge-hidden .mat-badge-content {
  display: none;
}
.treo-theme-dark .mat-badge-disabled .mat-badge-content {
  background: #27303f;
  color: #475569;
}
.treo-theme-dark .mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
.treo-theme-dark .ng-animate-disabled .mat-badge-content,
.treo-theme-dark .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.treo-theme-dark .mat-badge-content.mat-badge-active {
  transform: none;
}
.treo-theme-dark .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.treo-theme-dark .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.treo-theme-dark .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.treo-theme-dark .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .treo-theme-dark .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.treo-theme-dark .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .treo-theme-dark .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.treo-theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .treo-theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.treo-theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .treo-theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.treo-theme-dark .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.treo-theme-dark .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.treo-theme-dark .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.treo-theme-dark .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .treo-theme-dark .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.treo-theme-dark .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .treo-theme-dark .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.treo-theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .treo-theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.treo-theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .treo-theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.treo-theme-dark .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.treo-theme-dark .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.treo-theme-dark .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.treo-theme-dark .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .treo-theme-dark .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.treo-theme-dark .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .treo-theme-dark .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.treo-theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .treo-theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.treo-theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .treo-theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.treo-theme-dark .mat-bottom-sheet-container {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  background: #27303f;
  color: white;
}
.treo-theme-dark .mat-button, .treo-theme-dark .mat-icon-button, .treo-theme-dark .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.treo-theme-dark .mat-button.mat-primary, .treo-theme-dark .mat-icon-button.mat-primary, .treo-theme-dark .mat-stroked-button.mat-primary {
  color: #0694a2;
}
.treo-theme-dark .mat-button.mat-accent, .treo-theme-dark .mat-icon-button.mat-accent, .treo-theme-dark .mat-stroked-button.mat-accent {
  color: #e74694;
}
.treo-theme-dark .mat-button.mat-warn, .treo-theme-dark .mat-icon-button.mat-warn, .treo-theme-dark .mat-stroked-button.mat-warn {
  color: #f98080;
}
.treo-theme-dark .mat-button.mat-primary.mat-button-disabled, .treo-theme-dark .mat-button.mat-accent.mat-button-disabled, .treo-theme-dark .mat-button.mat-warn.mat-button-disabled, .treo-theme-dark .mat-button.mat-button-disabled.mat-button-disabled, .treo-theme-dark .mat-icon-button.mat-primary.mat-button-disabled, .treo-theme-dark .mat-icon-button.mat-accent.mat-button-disabled, .treo-theme-dark .mat-icon-button.mat-warn.mat-button-disabled, .treo-theme-dark .mat-icon-button.mat-button-disabled.mat-button-disabled, .treo-theme-dark .mat-stroked-button.mat-primary.mat-button-disabled, .treo-theme-dark .mat-stroked-button.mat-accent.mat-button-disabled, .treo-theme-dark .mat-stroked-button.mat-warn.mat-button-disabled, .treo-theme-dark .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: #27303f;
}
.treo-theme-dark .mat-button.mat-primary .mat-button-focus-overlay, .treo-theme-dark .mat-icon-button.mat-primary .mat-button-focus-overlay, .treo-theme-dark .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #0694a2;
}
.treo-theme-dark .mat-button.mat-accent .mat-button-focus-overlay, .treo-theme-dark .mat-icon-button.mat-accent .mat-button-focus-overlay, .treo-theme-dark .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #e74694;
}
.treo-theme-dark .mat-button.mat-warn .mat-button-focus-overlay, .treo-theme-dark .mat-icon-button.mat-warn .mat-button-focus-overlay, .treo-theme-dark .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #f98080;
}
.treo-theme-dark .mat-button.mat-button-disabled .mat-button-focus-overlay, .treo-theme-dark .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .treo-theme-dark .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.treo-theme-dark .mat-button .mat-ripple-element, .treo-theme-dark .mat-icon-button .mat-ripple-element, .treo-theme-dark .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.treo-theme-dark .mat-button-focus-overlay {
  background: white;
}
.treo-theme-dark .mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-flat-button, .treo-theme-dark .mat-raised-button, .treo-theme-dark .mat-fab, .treo-theme-dark .mat-mini-fab {
  color: white;
  background-color: #1a202e;
}
.treo-theme-dark .mat-flat-button.mat-primary, .treo-theme-dark .mat-raised-button.mat-primary, .treo-theme-dark .mat-fab.mat-primary, .treo-theme-dark .mat-mini-fab.mat-primary {
  color: #edfafa;
}
.treo-theme-dark .mat-flat-button.mat-accent, .treo-theme-dark .mat-raised-button.mat-accent, .treo-theme-dark .mat-fab.mat-accent, .treo-theme-dark .mat-mini-fab.mat-accent {
  color: #fdf2f8;
}
.treo-theme-dark .mat-flat-button.mat-warn, .treo-theme-dark .mat-raised-button.mat-warn, .treo-theme-dark .mat-fab.mat-warn, .treo-theme-dark .mat-mini-fab.mat-warn {
  color: #771d1d;
}
.treo-theme-dark .mat-flat-button.mat-primary.mat-button-disabled, .treo-theme-dark .mat-flat-button.mat-accent.mat-button-disabled, .treo-theme-dark .mat-flat-button.mat-warn.mat-button-disabled, .treo-theme-dark .mat-flat-button.mat-button-disabled.mat-button-disabled, .treo-theme-dark .mat-raised-button.mat-primary.mat-button-disabled, .treo-theme-dark .mat-raised-button.mat-accent.mat-button-disabled, .treo-theme-dark .mat-raised-button.mat-warn.mat-button-disabled, .treo-theme-dark .mat-raised-button.mat-button-disabled.mat-button-disabled, .treo-theme-dark .mat-fab.mat-primary.mat-button-disabled, .treo-theme-dark .mat-fab.mat-accent.mat-button-disabled, .treo-theme-dark .mat-fab.mat-warn.mat-button-disabled, .treo-theme-dark .mat-fab.mat-button-disabled.mat-button-disabled, .treo-theme-dark .mat-mini-fab.mat-primary.mat-button-disabled, .treo-theme-dark .mat-mini-fab.mat-accent.mat-button-disabled, .treo-theme-dark .mat-mini-fab.mat-warn.mat-button-disabled, .treo-theme-dark .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: #27303f;
}
.treo-theme-dark .mat-flat-button.mat-primary, .treo-theme-dark .mat-raised-button.mat-primary, .treo-theme-dark .mat-fab.mat-primary, .treo-theme-dark .mat-mini-fab.mat-primary {
  background-color: #0694a2;
}
.treo-theme-dark .mat-flat-button.mat-accent, .treo-theme-dark .mat-raised-button.mat-accent, .treo-theme-dark .mat-fab.mat-accent, .treo-theme-dark .mat-mini-fab.mat-accent {
  background-color: #e74694;
}
.treo-theme-dark .mat-flat-button.mat-warn, .treo-theme-dark .mat-raised-button.mat-warn, .treo-theme-dark .mat-fab.mat-warn, .treo-theme-dark .mat-mini-fab.mat-warn {
  background-color: #f98080;
}
.treo-theme-dark .mat-flat-button.mat-primary.mat-button-disabled, .treo-theme-dark .mat-flat-button.mat-accent.mat-button-disabled, .treo-theme-dark .mat-flat-button.mat-warn.mat-button-disabled, .treo-theme-dark .mat-flat-button.mat-button-disabled.mat-button-disabled, .treo-theme-dark .mat-raised-button.mat-primary.mat-button-disabled, .treo-theme-dark .mat-raised-button.mat-accent.mat-button-disabled, .treo-theme-dark .mat-raised-button.mat-warn.mat-button-disabled, .treo-theme-dark .mat-raised-button.mat-button-disabled.mat-button-disabled, .treo-theme-dark .mat-fab.mat-primary.mat-button-disabled, .treo-theme-dark .mat-fab.mat-accent.mat-button-disabled, .treo-theme-dark .mat-fab.mat-warn.mat-button-disabled, .treo-theme-dark .mat-fab.mat-button-disabled.mat-button-disabled, .treo-theme-dark .mat-mini-fab.mat-primary.mat-button-disabled, .treo-theme-dark .mat-mini-fab.mat-accent.mat-button-disabled, .treo-theme-dark .mat-mini-fab.mat-warn.mat-button-disabled, .treo-theme-dark .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(26, 32, 46, 0.38);
}
.treo-theme-dark .mat-flat-button.mat-primary .mat-ripple-element, .treo-theme-dark .mat-raised-button.mat-primary .mat-ripple-element, .treo-theme-dark .mat-fab.mat-primary .mat-ripple-element, .treo-theme-dark .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(237, 250, 250, 0.1);
}
.treo-theme-dark .mat-flat-button.mat-accent .mat-ripple-element, .treo-theme-dark .mat-raised-button.mat-accent .mat-ripple-element, .treo-theme-dark .mat-fab.mat-accent .mat-ripple-element, .treo-theme-dark .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(253, 242, 248, 0.1);
}
.treo-theme-dark .mat-flat-button.mat-warn .mat-ripple-element, .treo-theme-dark .mat-raised-button.mat-warn .mat-ripple-element, .treo-theme-dark .mat-fab.mat-warn .mat-ripple-element, .treo-theme-dark .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(119, 29, 29, 0.1);
}
.treo-theme-dark .mat-stroked-button:not([class*=mat-elevation-z]), .treo-theme-dark .mat-flat-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-raised-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-fab:not([class*=mat-elevation-z]), .treo-theme-dark .mat-mini-fab:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .treo-theme-dark .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .treo-theme-dark .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-button-toggle-standalone,
.treo-theme-dark .mat-button-toggle-group {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.treo-theme-dark .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.treo-theme-dark .mat-button-toggle {
  color: #64748b;
}
.treo-theme-dark .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: #e2e8f0;
}
.treo-theme-dark .mat-button-toggle-appearance-standard {
  color: white;
  background: #27303f;
}
.treo-theme-dark .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: #e2e8f0;
}
.treo-theme-dark .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px rgba(241, 245, 249, 0.12);
}
.treo-theme-dark [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: none;
  border-top: solid 1px rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-button-toggle-checked {
  background-color: rgba(255, 255, 255, 0.05);
  color: #97a6ba;
}
.treo-theme-dark .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: white;
}
.treo-theme-dark .mat-button-toggle-disabled {
  color: #27303f;
  background-color: #1a202e;
}
.treo-theme-dark .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: #27303f;
}
.treo-theme-dark .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #27303f;
}
.treo-theme-dark .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.treo-theme-dark .mat-button-toggle-group-appearance-standard {
  border: solid 1px rgba(241, 245, 249, 0.12);
}
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 48px;
}
.treo-theme-dark .mat-card {
  background: #27303f;
  color: white;
}
.treo-theme-dark .mat-card:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-card.mat-card-flat:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-card-subtitle {
  color: #97a6ba;
}
.treo-theme-dark .mat-checkbox-frame {
  border-color: #97a6ba;
}
.treo-theme-dark .mat-checkbox-checkmark {
  fill: #1a202e;
}
.treo-theme-dark .mat-checkbox-checkmark-path {
  stroke: #1a202e !important;
}
.treo-theme-dark .mat-checkbox-mixedmark {
  background-color: #1a202e;
}
.treo-theme-dark .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .treo-theme-dark .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #0694a2;
}
.treo-theme-dark .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .treo-theme-dark .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #e74694;
}
.treo-theme-dark .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .treo-theme-dark .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #f98080;
}
.treo-theme-dark .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .treo-theme-dark .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #686868;
}
.treo-theme-dark .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #686868;
}
.treo-theme-dark .mat-checkbox-disabled .mat-checkbox-label {
  color: #97a6ba;
}
.treo-theme-dark .mat-checkbox .mat-ripple-element {
  background-color: white;
}
.treo-theme-dark .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.treo-theme-dark .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #0694a2;
}
.treo-theme-dark .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.treo-theme-dark .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #e74694;
}
.treo-theme-dark .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.treo-theme-dark .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #f98080;
}
.treo-theme-dark .mat-chip.mat-standard-chip {
  background-color: #475569;
  color: white;
}
.treo-theme-dark .mat-chip.mat-standard-chip .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.treo-theme-dark .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.treo-theme-dark .mat-chip.mat-standard-chip::after {
  background: white;
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #0694a2;
  color: #edfafa;
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: #edfafa;
  opacity: 0.4;
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(237, 250, 250, 0.1);
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #f98080;
  color: #771d1d;
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: #771d1d;
  opacity: 0.4;
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(119, 29, 29, 0.1);
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #e74694;
  color: #fdf2f8;
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: #fdf2f8;
  opacity: 0.4;
}
.treo-theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(253, 242, 248, 0.1);
}
.treo-theme-dark .mat-table {
  background: #27303f;
}
.treo-theme-dark .mat-table thead, .treo-theme-dark .mat-table tbody, .treo-theme-dark .mat-table tfoot,
.treo-theme-dark mat-header-row, .treo-theme-dark mat-row, .treo-theme-dark mat-footer-row,
.treo-theme-dark [mat-header-row], .treo-theme-dark [mat-row], .treo-theme-dark [mat-footer-row],
.treo-theme-dark .mat-table-sticky {
  background: inherit;
}
.treo-theme-dark mat-row, .treo-theme-dark mat-header-row, .treo-theme-dark mat-footer-row,
.treo-theme-dark th.mat-header-cell, .treo-theme-dark td.mat-cell, .treo-theme-dark td.mat-footer-cell {
  border-bottom-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-header-cell {
  color: #97a6ba;
}
.treo-theme-dark .mat-cell, .treo-theme-dark .mat-footer-cell {
  color: white;
}
.treo-theme-dark .mat-calendar-arrow {
  border-top-color: #f1f5f9;
}
.treo-theme-dark .mat-datepicker-toggle,
.treo-theme-dark .mat-datepicker-content .mat-calendar-next-button,
.treo-theme-dark .mat-datepicker-content .mat-calendar-previous-button {
  color: #f1f5f9;
}
.treo-theme-dark .mat-calendar-table-header {
  color: #64748b;
}
.treo-theme-dark .mat-calendar-table-header-divider::after {
  background: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-calendar-body-label {
  color: #97a6ba;
}
.treo-theme-dark .mat-calendar-body-cell-content,
.treo-theme-dark .mat-date-range-input-separator {
  color: white;
  border-color: transparent;
}
.treo-theme-dark .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: #475569;
}
.treo-theme-dark .mat-form-field-disabled .mat-date-range-input-separator {
  color: #475569;
}
.treo-theme-dark .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.treo-theme-dark .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.treo-theme-dark .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(255, 255, 255, 0.05);
}
.treo-theme-dark .mat-calendar-body-in-preview {
  color: rgba(241, 245, 249, 0.24);
}
.treo-theme-dark .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: #64748b;
}
.treo-theme-dark .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(100, 116, 139, 0.8);
}
.treo-theme-dark .mat-calendar-body-in-range::before {
  background: rgba(6, 148, 162, 0.2);
}
.treo-theme-dark .mat-calendar-body-comparison-identical,
.treo-theme-dark .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.treo-theme-dark .mat-calendar-body-comparison-bridge-start::before,
.treo-theme-dark [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(6, 148, 162, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-dark .mat-calendar-body-comparison-bridge-end::before,
.treo-theme-dark [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(6, 148, 162, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-dark .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.treo-theme-dark .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.treo-theme-dark .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.treo-theme-dark .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.treo-theme-dark .mat-calendar-body-selected {
  background-color: #0694a2;
  color: #edfafa;
}
.treo-theme-dark .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(6, 148, 162, 0.4);
}
.treo-theme-dark .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #edfafa;
}
.treo-theme-dark .mat-datepicker-content {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  background-color: #27303f;
  color: white;
}
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(231, 70, 148, 0.2);
}
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.treo-theme-dark .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(231, 70, 148, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.treo-theme-dark .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(231, 70, 148, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #e74694;
  color: #fdf2f8;
}
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(231, 70, 148, 0.4);
}
.treo-theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fdf2f8;
}
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(249, 128, 128, 0.2);
}
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.treo-theme-dark .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(249, 128, 128, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.treo-theme-dark .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(249, 128, 128, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #f98080;
  color: #771d1d;
}
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(249, 128, 128, 0.4);
}
.treo-theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #771d1d;
}
.treo-theme-dark .mat-datepicker-content-touch {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-datepicker-toggle-active {
  color: #0694a2;
}
.treo-theme-dark .mat-datepicker-toggle-active.mat-accent {
  color: #e74694;
}
.treo-theme-dark .mat-datepicker-toggle-active.mat-warn {
  color: #f98080;
}
.treo-theme-dark .mat-date-range-input-inner[disabled] {
  color: #475569;
}
.treo-theme-dark .mat-dialog-container {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  background: #27303f;
  color: white;
}
.treo-theme-dark .mat-divider {
  border-top-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-divider-vertical {
  border-right-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-expansion-panel {
  background: #27303f;
  color: white;
}
.treo-theme-dark .mat-expansion-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-action-row {
  border-top-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .treo-theme-dark .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .treo-theme-dark .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(255, 255, 255, 0.05);
}
@media (hover: none) {
  .treo-theme-dark .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: #27303f;
  }
}
.treo-theme-dark .mat-expansion-panel-header-title {
  color: white;
}
.treo-theme-dark .mat-expansion-panel-header-description,
.treo-theme-dark .mat-expansion-indicator::after {
  color: #97a6ba;
}
.treo-theme-dark .mat-expansion-panel-header[aria-disabled=true] {
  color: #27303f;
}
.treo-theme-dark .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.treo-theme-dark .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.mat-expansion-panel-header {
  height: 48px;
}
.mat-expansion-panel-header.mat-expanded {
  height: 64px;
}
.treo-theme-dark .mat-form-field-label {
  color: rgba(151, 166, 186, 0.7);
}
.treo-theme-dark .mat-hint {
  color: rgba(151, 166, 186, 0.7);
}
.treo-theme-dark .mat-form-field.mat-focused .mat-form-field-label {
  color: #0694a2;
}
.treo-theme-dark .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #e74694;
}
.treo-theme-dark .mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #f98080;
}
.treo-theme-dark .mat-focused .mat-form-field-required-marker {
  color: #e74694;
}
.treo-theme-dark .mat-form-field-ripple {
  background-color: #f1f5f9;
}
.treo-theme-dark .mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #0694a2;
}
.treo-theme-dark .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #e74694;
}
.treo-theme-dark .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #f98080;
}
.treo-theme-dark .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #0694a2;
}
.treo-theme-dark .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #e74694;
}
.treo-theme-dark .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #f98080;
}
.treo-theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #f98080;
}
.treo-theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.treo-theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #f98080;
}
.treo-theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.treo-theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #f98080;
}
.treo-theme-dark .mat-error {
  color: #f98080;
}
.treo-theme-dark .mat-form-field-appearance-legacy .mat-form-field-label {
  color: #97a6ba;
}
.treo-theme-dark .mat-form-field-appearance-legacy .mat-hint {
  color: #97a6ba;
}
.treo-theme-dark .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(241, 245, 249, 0.7);
}
.treo-theme-dark .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(241, 245, 249, 0.7) 0%, rgba(241, 245, 249, 0.7) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.treo-theme-dark .mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(241, 245, 249, 0.7);
}
.treo-theme-dark .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(241, 245, 249, 0.7) 0%, rgba(241, 245, 249, 0.7) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.treo-theme-dark .mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(255, 255, 255, 0.1);
}
.treo-theme-dark .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(255, 255, 255, 0.05);
}
.treo-theme-dark .mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(241, 245, 249, 0.5);
}
.treo-theme-dark .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: #475569;
}
.treo-theme-dark .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.treo-theme-dark .mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(241, 245, 249, 0.3);
}
.treo-theme-dark .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: #f1f5f9;
}
.treo-theme-dark .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #0694a2;
}
.treo-theme-dark .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #e74694;
}
.treo-theme-dark .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #f98080;
}
.treo-theme-dark .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #f98080;
}
.treo-theme-dark .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: #475569;
}
.treo-theme-dark .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(241, 245, 249, 0.15);
}
.treo-theme-dark .mat-icon.mat-primary {
  color: #0694a2;
}
.treo-theme-dark .mat-icon.mat-accent {
  color: #e74694;
}
.treo-theme-dark .mat-icon.mat-warn {
  color: #f98080;
}
.treo-theme-dark .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: #97a6ba;
}
.treo-theme-dark .mat-input-element:disabled,
.treo-theme-dark .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: #475569;
}
.treo-theme-dark .mat-input-element {
  caret-color: #0694a2;
}
.treo-theme-dark .mat-input-element::-moz-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.treo-theme-dark .mat-input-element:-ms-input-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.treo-theme-dark .mat-input-element::-ms-input-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.treo-theme-dark .mat-input-element::placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.treo-theme-dark .mat-input-element::-moz-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.treo-theme-dark .mat-input-element::-webkit-input-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.treo-theme-dark .mat-input-element:-ms-input-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.treo-theme-dark .mat-input-element option {
  color: rgba(0, 0, 0, 0.87);
}
.treo-theme-dark .mat-input-element option:disabled {
  color: rgba(0, 0, 0, 0.38);
}
.treo-theme-dark .mat-form-field.mat-accent .mat-input-element {
  caret-color: #e74694;
}
.treo-theme-dark .mat-form-field.mat-warn .mat-input-element,
.treo-theme-dark .mat-form-field-invalid .mat-input-element {
  caret-color: #f98080;
}
.treo-theme-dark .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #f98080;
}
.treo-theme-dark .mat-list-base .mat-list-item {
  color: white;
}
.treo-theme-dark .mat-list-base .mat-list-option {
  color: white;
}
.treo-theme-dark .mat-list-base .mat-subheader {
  color: #97a6ba;
}
.treo-theme-dark .mat-list-item-disabled {
  background-color: #e2e8f0;
}
.treo-theme-dark .mat-list-option:hover, .treo-theme-dark .mat-list-option:focus,
.treo-theme-dark .mat-nav-list .mat-list-item:hover,
.treo-theme-dark .mat-nav-list .mat-list-item:focus,
.treo-theme-dark .mat-action-list .mat-list-item:hover,
.treo-theme-dark .mat-action-list .mat-list-item:focus {
  background: rgba(255, 255, 255, 0.05);
}
.treo-theme-dark .mat-list-single-selected-option, .treo-theme-dark .mat-list-single-selected-option:hover, .treo-theme-dark .mat-list-single-selected-option:focus {
  background: rgba(255, 255, 255, 0.12);
}
.treo-theme-dark .mat-menu-panel {
  background: #27303f;
}
.treo-theme-dark .mat-menu-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-menu-item {
  background: transparent;
  color: white;
}
.treo-theme-dark .mat-menu-item[disabled], .treo-theme-dark .mat-menu-item[disabled]::after {
  color: #475569;
}
.treo-theme-dark .mat-menu-item .mat-icon-no-color,
.treo-theme-dark .mat-menu-item-submenu-trigger::after {
  color: #f1f5f9;
}
.treo-theme-dark .mat-menu-item:hover:not([disabled]),
.treo-theme-dark .mat-menu-item.cdk-program-focused:not([disabled]),
.treo-theme-dark .mat-menu-item.cdk-keyboard-focused:not([disabled]),
.treo-theme-dark .mat-menu-item-highlighted:not([disabled]) {
  background: rgba(255, 255, 255, 0.05);
}
.treo-theme-dark .mat-paginator {
  background: #27303f;
}
.treo-theme-dark .mat-paginator,
.treo-theme-dark .mat-paginator-page-size .mat-select-trigger {
  color: #97a6ba;
}
.treo-theme-dark .mat-paginator-decrement,
.treo-theme-dark .mat-paginator-increment {
  border-top: 2px solid #f1f5f9;
  border-right: 2px solid #f1f5f9;
}
.treo-theme-dark .mat-paginator-first,
.treo-theme-dark .mat-paginator-last {
  border-top: 2px solid #f1f5f9;
}
.treo-theme-dark .mat-icon-button[disabled] .mat-paginator-decrement,
.treo-theme-dark .mat-icon-button[disabled] .mat-paginator-increment,
.treo-theme-dark .mat-icon-button[disabled] .mat-paginator-first,
.treo-theme-dark .mat-icon-button[disabled] .mat-paginator-last {
  border-color: #475569;
}
.mat-paginator-container {
  min-height: 56px;
}
.treo-theme-dark .mat-progress-bar-background {
  fill: #d5f5f6;
}
.treo-theme-dark .mat-progress-bar-buffer {
  background-color: #d5f5f6;
}
.treo-theme-dark .mat-progress-bar-fill::after {
  background-color: #0694a2;
}
.treo-theme-dark .mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #fce8f3;
}
.treo-theme-dark .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #fce8f3;
}
.treo-theme-dark .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #e74694;
}
.treo-theme-dark .mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #fde8e8;
}
.treo-theme-dark .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #fde8e8;
}
.treo-theme-dark .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #f98080;
}
.treo-theme-dark .mat-progress-spinner circle, .treo-theme-dark .mat-spinner circle {
  stroke: #0694a2;
}
.treo-theme-dark .mat-progress-spinner.mat-accent circle, .treo-theme-dark .mat-spinner.mat-accent circle {
  stroke: #e74694;
}
.treo-theme-dark .mat-progress-spinner.mat-warn circle, .treo-theme-dark .mat-spinner.mat-warn circle {
  stroke: #f98080;
}
.treo-theme-dark .mat-radio-outer-circle {
  border-color: #97a6ba;
}
.treo-theme-dark .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #0694a2;
}
.treo-theme-dark .mat-radio-button.mat-primary .mat-radio-inner-circle,
.treo-theme-dark .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .treo-theme-dark .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .treo-theme-dark .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #0694a2;
}
.treo-theme-dark .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #e74694;
}
.treo-theme-dark .mat-radio-button.mat-accent .mat-radio-inner-circle,
.treo-theme-dark .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .treo-theme-dark .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .treo-theme-dark .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #e74694;
}
.treo-theme-dark .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #f98080;
}
.treo-theme-dark .mat-radio-button.mat-warn .mat-radio-inner-circle,
.treo-theme-dark .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .treo-theme-dark .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .treo-theme-dark .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #f98080;
}
.treo-theme-dark .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.treo-theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: #475569;
}
.treo-theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.treo-theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: #475569;
}
.treo-theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: #475569;
}
.treo-theme-dark .mat-radio-button .mat-ripple-element {
  background-color: white;
}
.treo-theme-dark .mat-select-value {
  color: white;
}
.treo-theme-dark .mat-select-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.treo-theme-dark .mat-select-disabled .mat-select-value {
  color: #475569;
}
.treo-theme-dark .mat-select-arrow {
  color: #97a6ba;
}
.treo-theme-dark .mat-select-panel {
  background: #27303f;
}
.treo-theme-dark .mat-select-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(255, 255, 255, 0.12);
}
.treo-theme-dark .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #0694a2;
}
.treo-theme-dark .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #e74694;
}
.treo-theme-dark .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #f98080;
}
.treo-theme-dark .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #f98080;
}
.treo-theme-dark .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: #475569;
}
.treo-theme-dark .mat-drawer-container {
  background-color: #1a202e;
  color: white;
}
.treo-theme-dark .mat-drawer {
  background-color: #27303f;
  color: white;
}
.treo-theme-dark .mat-drawer.mat-drawer-push {
  background-color: #27303f;
}
.treo-theme-dark .mat-drawer:not(.mat-drawer-side) {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-drawer-side {
  border-right: solid 1px rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-drawer-side.mat-drawer-end {
  border-left: solid 1px rgba(241, 245, 249, 0.12);
  border-right: none;
}
.treo-theme-dark [dir=rtl] .mat-drawer-side {
  border-left: solid 1px rgba(241, 245, 249, 0.12);
  border-right: none;
}
.treo-theme-dark [dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(216, 207, 192, 0.6);
}
.treo-theme-dark .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #e74694;
}
.treo-theme-dark .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(231, 70, 148, 0.54);
}
.treo-theme-dark .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #e74694;
}
.treo-theme-dark .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #0694a2;
}
.treo-theme-dark .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(6, 148, 162, 0.54);
}
.treo-theme-dark .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #0694a2;
}
.treo-theme-dark .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #f98080;
}
.treo-theme-dark .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(249, 128, 128, 0.54);
}
.treo-theme-dark .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #f98080;
}
.treo-theme-dark .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: white;
}
.treo-theme-dark .mat-slide-toggle-thumb {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  background-color: #bdbdbd;
}
.treo-theme-dark .mat-slide-toggle-bar {
  background-color: #475569;
}
.treo-theme-dark .mat-slider-track-background {
  background-color: #64748b;
}
.treo-theme-dark .mat-primary .mat-slider-track-fill,
.treo-theme-dark .mat-primary .mat-slider-thumb,
.treo-theme-dark .mat-primary .mat-slider-thumb-label {
  background-color: #0694a2;
}
.treo-theme-dark .mat-primary .mat-slider-thumb-label-text {
  color: #edfafa;
}
.treo-theme-dark .mat-primary .mat-slider-focus-ring {
  background-color: rgba(6, 148, 162, 0.2);
}
.treo-theme-dark .mat-accent .mat-slider-track-fill,
.treo-theme-dark .mat-accent .mat-slider-thumb,
.treo-theme-dark .mat-accent .mat-slider-thumb-label {
  background-color: #e74694;
}
.treo-theme-dark .mat-accent .mat-slider-thumb-label-text {
  color: #fdf2f8;
}
.treo-theme-dark .mat-accent .mat-slider-focus-ring {
  background-color: rgba(231, 70, 148, 0.2);
}
.treo-theme-dark .mat-warn .mat-slider-track-fill,
.treo-theme-dark .mat-warn .mat-slider-thumb,
.treo-theme-dark .mat-warn .mat-slider-thumb-label {
  background-color: #f98080;
}
.treo-theme-dark .mat-warn .mat-slider-thumb-label-text {
  color: #771d1d;
}
.treo-theme-dark .mat-warn .mat-slider-focus-ring {
  background-color: rgba(249, 128, 128, 0.2);
}
.treo-theme-dark .mat-slider:hover .mat-slider-track-background,
.treo-theme-dark .cdk-focused .mat-slider-track-background {
  background-color: #97a6ba;
}
.treo-theme-dark .mat-slider-disabled .mat-slider-track-background,
.treo-theme-dark .mat-slider-disabled .mat-slider-track-fill,
.treo-theme-dark .mat-slider-disabled .mat-slider-thumb {
  background-color: #64748b;
}
.treo-theme-dark .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: #64748b;
}
.treo-theme-dark .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(255, 255, 255, 0.12);
}
.treo-theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.treo-theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: white;
}
.treo-theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.treo-theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: #64748b;
}
.treo-theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: #64748b;
  background-color: transparent;
}
.treo-theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .treo-theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: #97a6ba;
}
.treo-theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .treo-theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: #64748b;
}
.treo-theme-dark .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(255, 255, 255, 0.7);
}
.treo-theme-dark .mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);
}
.treo-theme-dark .mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);
}
.treo-theme-dark .mat-step-header.cdk-keyboard-focused, .treo-theme-dark .mat-step-header.cdk-program-focused, .treo-theme-dark .mat-step-header:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
@media (hover: none) {
  .treo-theme-dark .mat-step-header:hover {
    background: none;
  }
}
.treo-theme-dark .mat-step-header .mat-step-label,
.treo-theme-dark .mat-step-header .mat-step-optional {
  color: #97a6ba;
}
.treo-theme-dark .mat-step-header .mat-step-icon {
  background-color: #97a6ba;
  color: #edfafa;
}
.treo-theme-dark .mat-step-header .mat-step-icon-selected,
.treo-theme-dark .mat-step-header .mat-step-icon-state-done,
.treo-theme-dark .mat-step-header .mat-step-icon-state-edit {
  background-color: #0694a2;
  color: #edfafa;
}
.treo-theme-dark .mat-step-header.mat-accent .mat-step-icon {
  color: #fdf2f8;
}
.treo-theme-dark .mat-step-header.mat-accent .mat-step-icon-selected,
.treo-theme-dark .mat-step-header.mat-accent .mat-step-icon-state-done,
.treo-theme-dark .mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #e74694;
  color: #fdf2f8;
}
.treo-theme-dark .mat-step-header.mat-warn .mat-step-icon {
  color: #771d1d;
}
.treo-theme-dark .mat-step-header.mat-warn .mat-step-icon-selected,
.treo-theme-dark .mat-step-header.mat-warn .mat-step-icon-state-done,
.treo-theme-dark .mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #f98080;
  color: #771d1d;
}
.treo-theme-dark .mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #f98080;
}
.treo-theme-dark .mat-step-header .mat-step-label.mat-step-label-active {
  color: white;
}
.treo-theme-dark .mat-step-header .mat-step-label.mat-step-label-error {
  color: #f98080;
}
.treo-theme-dark .mat-stepper-horizontal, .treo-theme-dark .mat-stepper-vertical {
  background-color: #27303f;
}
.treo-theme-dark .mat-stepper-vertical-line::before {
  border-left-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-horizontal-stepper-header::before,
.treo-theme-dark .mat-horizontal-stepper-header::after,
.treo-theme-dark .mat-stepper-horizontal-line {
  border-top-color: rgba(241, 245, 249, 0.12);
}
.mat-horizontal-stepper-header {
  height: 72px;
}
.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,
.mat-vertical-stepper-header {
  padding: 24px 24px;
}
.mat-stepper-vertical-line::before {
  top: -16px;
  bottom: -16px;
}
.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after, .mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before {
  top: 36px;
}
.mat-stepper-label-position-bottom .mat-stepper-horizontal-line {
  top: 36px;
}
.treo-theme-dark .mat-sort-header-arrow {
  color: #97a6ba;
}
.treo-theme-dark .mat-tab-nav-bar,
.treo-theme-dark .mat-tab-header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .mat-tab-group-inverted-header .mat-tab-nav-bar,
.treo-theme-dark .mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(241, 245, 249, 0.12);
  border-bottom: none;
}
.treo-theme-dark .mat-tab-label, .treo-theme-dark .mat-tab-link {
  color: white;
}
.treo-theme-dark .mat-tab-label.mat-tab-disabled, .treo-theme-dark .mat-tab-link.mat-tab-disabled {
  color: #475569;
}
.treo-theme-dark .mat-tab-header-pagination-chevron {
  border-color: white;
}
.treo-theme-dark .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: #475569;
}
.treo-theme-dark .mat-tab-group[class*=mat-background-] .mat-tab-header,
.treo-theme-dark .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.treo-theme-dark .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(213, 245, 246, 0.3);
}
.treo-theme-dark .mat-tab-group.mat-primary .mat-ink-bar, .treo-theme-dark .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #0694a2;
}
.treo-theme-dark .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .treo-theme-dark .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: #edfafa;
}
.treo-theme-dark .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(252, 232, 243, 0.3);
}
.treo-theme-dark .mat-tab-group.mat-accent .mat-ink-bar, .treo-theme-dark .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #e74694;
}
.treo-theme-dark .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .treo-theme-dark .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: #fdf2f8;
}
.treo-theme-dark .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(253, 232, 232, 0.3);
}
.treo-theme-dark .mat-tab-group.mat-warn .mat-ink-bar, .treo-theme-dark .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #f98080;
}
.treo-theme-dark .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .treo-theme-dark .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: #771d1d;
}
.treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(213, 245, 246, 0.3);
}
.treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-header, .treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-links, .treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: #0694a2;
}
.treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-label, .treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-link, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: #edfafa;
}
.treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(237, 250, 250, 0.4);
}
.treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: #edfafa;
}
.treo-theme-dark .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(237, 250, 250, 0.4);
}
.treo-theme-dark .mat-tab-group.mat-background-primary .mat-ripple-element, .treo-theme-dark .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(237, 250, 250, 0.12);
}
.treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(252, 232, 243, 0.3);
}
.treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-header, .treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-links, .treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #e74694;
}
.treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-label, .treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-link, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: #fdf2f8;
}
.treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(253, 242, 248, 0.4);
}
.treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: #fdf2f8;
}
.treo-theme-dark .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(253, 242, 248, 0.4);
}
.treo-theme-dark .mat-tab-group.mat-background-accent .mat-ripple-element, .treo-theme-dark .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(253, 242, 248, 0.12);
}
.treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(253, 232, 232, 0.3);
}
.treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-header, .treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-links, .treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #f98080;
}
.treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-label, .treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-link, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: #771d1d;
}
.treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(119, 29, 29, 0.4);
}
.treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: #771d1d;
}
.treo-theme-dark .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(119, 29, 29, 0.4);
}
.treo-theme-dark .mat-tab-group.mat-background-warn .mat-ripple-element, .treo-theme-dark .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(119, 29, 29, 0.12);
}
.treo-theme-dark .mat-toolbar {
  background: #1a202e;
  color: white;
}
.treo-theme-dark .mat-toolbar.mat-primary {
  background: #0694a2;
  color: #edfafa;
}
.treo-theme-dark .mat-toolbar.mat-accent {
  background: #e74694;
  color: #fdf2f8;
}
.treo-theme-dark .mat-toolbar.mat-warn {
  background: #f98080;
  color: #771d1d;
}
.treo-theme-dark .mat-toolbar .mat-form-field-underline,
.treo-theme-dark .mat-toolbar .mat-form-field-ripple,
.treo-theme-dark .mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.treo-theme-dark .mat-toolbar .mat-form-field-label,
.treo-theme-dark .mat-toolbar .mat-focused .mat-form-field-label,
.treo-theme-dark .mat-toolbar .mat-select-value,
.treo-theme-dark .mat-toolbar .mat-select-arrow,
.treo-theme-dark .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.treo-theme-dark .mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.mat-toolbar-multiple-rows {
  min-height: 64px;
}
.mat-toolbar-row, .mat-toolbar-single-row {
  height: 64px;
}
@media (max-width: 599px) {
  .mat-toolbar-multiple-rows {
    min-height: 56px;
  }

  .mat-toolbar-row, .mat-toolbar-single-row {
    height: 56px;
  }
}
.treo-theme-dark .mat-tooltip {
  background: rgba(100, 116, 139, 0.9);
}
.treo-theme-dark .mat-tree {
  background: #27303f;
}
.treo-theme-dark .mat-tree-node,
.treo-theme-dark .mat-nested-tree-node {
  color: white;
}
.mat-tree-node {
  min-height: 48px;
}
.treo-theme-dark .mat-snack-bar-container {
  color: rgba(0, 0, 0, 0.87);
  background: #fafafa;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-dark .mat-simple-snackbar-action {
  color: inherit;
}
.treo-theme-dark .text-primary-100 {
  color: #D5F5F6 !important;
}
.treo-theme-dark .bg-primary-100 {
  background: #D5F5F6 !important;
}
.treo-theme-dark .primary-100 {
  background: #D5F5F6 !important;
  color: #014451 !important;
}
.treo-theme-dark .primary-100 .mat-icon {
  color: #014451 !important;
}
.treo-theme-dark .primary-100.text-secondary,
.treo-theme-dark .primary-100 .text-secondary {
  color: rgba(1, 68, 81, 0.6) !important;
}
.treo-theme-dark .primary-100.text-hint,
.treo-theme-dark .primary-100 .text-hint {
  color: rgba(1, 68, 81, 0.38) !important;
}
.treo-theme-dark .primary-100.text-disabled,
.treo-theme-dark .primary-100 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.treo-theme-dark .primary-100.divider,
.treo-theme-dark .primary-100 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.treo-theme-dark .border-primary-100 {
  border-color: #D5F5F6 !important;
}
.treo-theme-dark .hover\:border-primary-100:hover {
  border-color: #D5F5F6 !important;
}
.treo-theme-dark .focus\:border-primary-100:focus {
  border-color: #D5F5F6 !important;
}
.treo-theme-dark .active\:border-primary-100:active {
  border-color: #D5F5F6 !important;
}
.treo-theme-dark .text-primary-200 {
  color: #AFECEF !important;
}
.treo-theme-dark .bg-primary-200 {
  background: #AFECEF !important;
}
.treo-theme-dark .primary-200 {
  background: #AFECEF !important;
  color: #014451 !important;
}
.treo-theme-dark .primary-200 .mat-icon {
  color: #014451 !important;
}
.treo-theme-dark .primary-200.text-secondary,
.treo-theme-dark .primary-200 .text-secondary {
  color: rgba(1, 68, 81, 0.6) !important;
}
.treo-theme-dark .primary-200.text-hint,
.treo-theme-dark .primary-200 .text-hint {
  color: rgba(1, 68, 81, 0.38) !important;
}
.treo-theme-dark .primary-200.text-disabled,
.treo-theme-dark .primary-200 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.treo-theme-dark .primary-200.divider,
.treo-theme-dark .primary-200 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.treo-theme-dark .border-primary-200 {
  border-color: #AFECEF !important;
}
.treo-theme-dark .hover\:border-primary-200:hover {
  border-color: #AFECEF !important;
}
.treo-theme-dark .focus\:border-primary-200:focus {
  border-color: #AFECEF !important;
}
.treo-theme-dark .active\:border-primary-200:active {
  border-color: #AFECEF !important;
}
.treo-theme-dark .text-primary-300 {
  color: #7EDCE2 !important;
}
.treo-theme-dark .bg-primary-300 {
  background: #7EDCE2 !important;
}
.treo-theme-dark .primary-300 {
  background: #7EDCE2 !important;
  color: #014451 !important;
}
.treo-theme-dark .primary-300 .mat-icon {
  color: #014451 !important;
}
.treo-theme-dark .primary-300.text-secondary,
.treo-theme-dark .primary-300 .text-secondary {
  color: rgba(1, 68, 81, 0.6) !important;
}
.treo-theme-dark .primary-300.text-hint,
.treo-theme-dark .primary-300 .text-hint {
  color: rgba(1, 68, 81, 0.38) !important;
}
.treo-theme-dark .primary-300.text-disabled,
.treo-theme-dark .primary-300 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.treo-theme-dark .primary-300.divider,
.treo-theme-dark .primary-300 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.treo-theme-dark .border-primary-300 {
  border-color: #7EDCE2 !important;
}
.treo-theme-dark .hover\:border-primary-300:hover {
  border-color: #7EDCE2 !important;
}
.treo-theme-dark .focus\:border-primary-300:focus {
  border-color: #7EDCE2 !important;
}
.treo-theme-dark .active\:border-primary-300:active {
  border-color: #7EDCE2 !important;
}
.treo-theme-dark .text-primary-400 {
  color: #16BDCA !important;
}
.treo-theme-dark .bg-primary-400 {
  background: #16BDCA !important;
}
.treo-theme-dark .primary-400 {
  background: #16BDCA !important;
  color: #014451 !important;
}
.treo-theme-dark .primary-400 .mat-icon {
  color: #014451 !important;
}
.treo-theme-dark .primary-400.text-secondary,
.treo-theme-dark .primary-400 .text-secondary {
  color: rgba(1, 68, 81, 0.6) !important;
}
.treo-theme-dark .primary-400.text-hint,
.treo-theme-dark .primary-400 .text-hint {
  color: rgba(1, 68, 81, 0.38) !important;
}
.treo-theme-dark .primary-400.text-disabled,
.treo-theme-dark .primary-400 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.treo-theme-dark .primary-400.divider,
.treo-theme-dark .primary-400 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.treo-theme-dark .border-primary-400 {
  border-color: #16BDCA !important;
}
.treo-theme-dark .hover\:border-primary-400:hover {
  border-color: #16BDCA !important;
}
.treo-theme-dark .focus\:border-primary-400:focus {
  border-color: #16BDCA !important;
}
.treo-theme-dark .active\:border-primary-400:active {
  border-color: #16BDCA !important;
}
.treo-theme-dark .text-primary-500 {
  color: #0694A2 !important;
}
.treo-theme-dark .bg-primary-500 {
  background: #0694A2 !important;
}
.treo-theme-dark .primary-500 {
  background: #0694A2 !important;
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-500 .mat-icon {
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-500.text-secondary,
.treo-theme-dark .primary-500 .text-secondary {
  color: rgba(237, 250, 250, 0.6) !important;
}
.treo-theme-dark .primary-500.text-hint,
.treo-theme-dark .primary-500 .text-hint {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-500.text-disabled,
.treo-theme-dark .primary-500 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-500.divider,
.treo-theme-dark .primary-500 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.treo-theme-dark .border-primary-500 {
  border-color: #0694A2 !important;
}
.treo-theme-dark .hover\:border-primary-500:hover {
  border-color: #0694A2 !important;
}
.treo-theme-dark .focus\:border-primary-500:focus {
  border-color: #0694A2 !important;
}
.treo-theme-dark .active\:border-primary-500:active {
  border-color: #0694A2 !important;
}
.treo-theme-dark .text-primary {
  color: #0694A2 !important;
}
.treo-theme-dark .bg-primary {
  background: #0694A2 !important;
}
.treo-theme-dark .primary {
  background: #0694A2 !important;
  color: #EDFAFA !important;
}
.treo-theme-dark .primary .mat-icon {
  color: #EDFAFA !important;
}
.treo-theme-dark .primary.text-secondary,
.treo-theme-dark .primary .text-secondary {
  color: rgba(237, 250, 250, 0.6) !important;
}
.treo-theme-dark .primary.text-hint,
.treo-theme-dark .primary .text-hint {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary.text-disabled,
.treo-theme-dark .primary .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary.divider,
.treo-theme-dark .primary .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.treo-theme-dark .border-primary {
  border-color: #0694A2 !important;
}
.treo-theme-dark .hover\:border-primary:hover {
  border-color: #0694A2 !important;
}
.treo-theme-dark .focus\:border-primary:focus {
  border-color: #0694A2 !important;
}
.treo-theme-dark .active\:border-primary:active {
  border-color: #0694A2 !important;
}
.treo-theme-dark .text-primary-600 {
  color: #047481 !important;
}
.treo-theme-dark .bg-primary-600 {
  background: #047481 !important;
}
.treo-theme-dark .primary-600 {
  background: #047481 !important;
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-600 .mat-icon {
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-600.text-secondary,
.treo-theme-dark .primary-600 .text-secondary {
  color: rgba(237, 250, 250, 0.6) !important;
}
.treo-theme-dark .primary-600.text-hint,
.treo-theme-dark .primary-600 .text-hint {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-600.text-disabled,
.treo-theme-dark .primary-600 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-600.divider,
.treo-theme-dark .primary-600 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.treo-theme-dark .border-primary-600 {
  border-color: #047481 !important;
}
.treo-theme-dark .hover\:border-primary-600:hover {
  border-color: #047481 !important;
}
.treo-theme-dark .focus\:border-primary-600:focus {
  border-color: #047481 !important;
}
.treo-theme-dark .active\:border-primary-600:active {
  border-color: #047481 !important;
}
.treo-theme-dark .text-primary-700 {
  color: #036672 !important;
}
.treo-theme-dark .bg-primary-700 {
  background: #036672 !important;
}
.treo-theme-dark .primary-700 {
  background: #036672 !important;
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-700 .mat-icon {
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-700.text-secondary,
.treo-theme-dark .primary-700 .text-secondary {
  color: rgba(237, 250, 250, 0.6) !important;
}
.treo-theme-dark .primary-700.text-hint,
.treo-theme-dark .primary-700 .text-hint {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-700.text-disabled,
.treo-theme-dark .primary-700 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-700.divider,
.treo-theme-dark .primary-700 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.treo-theme-dark .border-primary-700 {
  border-color: #036672 !important;
}
.treo-theme-dark .hover\:border-primary-700:hover {
  border-color: #036672 !important;
}
.treo-theme-dark .focus\:border-primary-700:focus {
  border-color: #036672 !important;
}
.treo-theme-dark .active\:border-primary-700:active {
  border-color: #036672 !important;
}
.treo-theme-dark .text-primary-800 {
  color: #05505C !important;
}
.treo-theme-dark .bg-primary-800 {
  background: #05505C !important;
}
.treo-theme-dark .primary-800 {
  background: #05505C !important;
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-800 .mat-icon {
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-800.text-secondary,
.treo-theme-dark .primary-800 .text-secondary {
  color: rgba(237, 250, 250, 0.6) !important;
}
.treo-theme-dark .primary-800.text-hint,
.treo-theme-dark .primary-800 .text-hint {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-800.text-disabled,
.treo-theme-dark .primary-800 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-800.divider,
.treo-theme-dark .primary-800 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.treo-theme-dark .border-primary-800 {
  border-color: #05505C !important;
}
.treo-theme-dark .hover\:border-primary-800:hover {
  border-color: #05505C !important;
}
.treo-theme-dark .focus\:border-primary-800:focus {
  border-color: #05505C !important;
}
.treo-theme-dark .active\:border-primary-800:active {
  border-color: #05505C !important;
}
.treo-theme-dark .text-primary-900 {
  color: #014451 !important;
}
.treo-theme-dark .bg-primary-900 {
  background: #014451 !important;
}
.treo-theme-dark .primary-900 {
  background: #014451 !important;
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-900 .mat-icon {
  color: #EDFAFA !important;
}
.treo-theme-dark .primary-900.text-secondary,
.treo-theme-dark .primary-900 .text-secondary {
  color: rgba(237, 250, 250, 0.6) !important;
}
.treo-theme-dark .primary-900.text-hint,
.treo-theme-dark .primary-900 .text-hint {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-900.text-disabled,
.treo-theme-dark .primary-900 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.treo-theme-dark .primary-900.divider,
.treo-theme-dark .primary-900 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.treo-theme-dark .border-primary-900 {
  border-color: #014451 !important;
}
.treo-theme-dark .hover\:border-primary-900:hover {
  border-color: #014451 !important;
}
.treo-theme-dark .focus\:border-primary-900:focus {
  border-color: #014451 !important;
}
.treo-theme-dark .active\:border-primary-900:active {
  border-color: #014451 !important;
}
.treo-theme-dark .text-accent-100 {
  color: #FCE8F3 !important;
}
.treo-theme-dark .bg-accent-100 {
  background: #FCE8F3 !important;
}
.treo-theme-dark .accent-100 {
  background: #FCE8F3 !important;
  color: #751A3D !important;
}
.treo-theme-dark .accent-100 .mat-icon {
  color: #751A3D !important;
}
.treo-theme-dark .accent-100.text-secondary,
.treo-theme-dark .accent-100 .text-secondary {
  color: rgba(117, 26, 61, 0.6) !important;
}
.treo-theme-dark .accent-100.text-hint,
.treo-theme-dark .accent-100 .text-hint {
  color: rgba(117, 26, 61, 0.38) !important;
}
.treo-theme-dark .accent-100.text-disabled,
.treo-theme-dark .accent-100 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.treo-theme-dark .accent-100.divider,
.treo-theme-dark .accent-100 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.treo-theme-dark .border-accent-100 {
  border-color: #FCE8F3 !important;
}
.treo-theme-dark .hover\:border-accent-100:hover {
  border-color: #FCE8F3 !important;
}
.treo-theme-dark .focus\:border-accent-100:focus {
  border-color: #FCE8F3 !important;
}
.treo-theme-dark .active\:border-accent-100:active {
  border-color: #FCE8F3 !important;
}
.treo-theme-dark .text-accent-200 {
  color: #FAD1E8 !important;
}
.treo-theme-dark .bg-accent-200 {
  background: #FAD1E8 !important;
}
.treo-theme-dark .accent-200 {
  background: #FAD1E8 !important;
  color: #751A3D !important;
}
.treo-theme-dark .accent-200 .mat-icon {
  color: #751A3D !important;
}
.treo-theme-dark .accent-200.text-secondary,
.treo-theme-dark .accent-200 .text-secondary {
  color: rgba(117, 26, 61, 0.6) !important;
}
.treo-theme-dark .accent-200.text-hint,
.treo-theme-dark .accent-200 .text-hint {
  color: rgba(117, 26, 61, 0.38) !important;
}
.treo-theme-dark .accent-200.text-disabled,
.treo-theme-dark .accent-200 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.treo-theme-dark .accent-200.divider,
.treo-theme-dark .accent-200 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.treo-theme-dark .border-accent-200 {
  border-color: #FAD1E8 !important;
}
.treo-theme-dark .hover\:border-accent-200:hover {
  border-color: #FAD1E8 !important;
}
.treo-theme-dark .focus\:border-accent-200:focus {
  border-color: #FAD1E8 !important;
}
.treo-theme-dark .active\:border-accent-200:active {
  border-color: #FAD1E8 !important;
}
.treo-theme-dark .text-accent-300 {
  color: #F8B4D9 !important;
}
.treo-theme-dark .bg-accent-300 {
  background: #F8B4D9 !important;
}
.treo-theme-dark .accent-300 {
  background: #F8B4D9 !important;
  color: #751A3D !important;
}
.treo-theme-dark .accent-300 .mat-icon {
  color: #751A3D !important;
}
.treo-theme-dark .accent-300.text-secondary,
.treo-theme-dark .accent-300 .text-secondary {
  color: rgba(117, 26, 61, 0.6) !important;
}
.treo-theme-dark .accent-300.text-hint,
.treo-theme-dark .accent-300 .text-hint {
  color: rgba(117, 26, 61, 0.38) !important;
}
.treo-theme-dark .accent-300.text-disabled,
.treo-theme-dark .accent-300 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.treo-theme-dark .accent-300.divider,
.treo-theme-dark .accent-300 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.treo-theme-dark .border-accent-300 {
  border-color: #F8B4D9 !important;
}
.treo-theme-dark .hover\:border-accent-300:hover {
  border-color: #F8B4D9 !important;
}
.treo-theme-dark .focus\:border-accent-300:focus {
  border-color: #F8B4D9 !important;
}
.treo-theme-dark .active\:border-accent-300:active {
  border-color: #F8B4D9 !important;
}
.treo-theme-dark .text-accent-400 {
  color: #F17EB8 !important;
}
.treo-theme-dark .bg-accent-400 {
  background: #F17EB8 !important;
}
.treo-theme-dark .accent-400 {
  background: #F17EB8 !important;
  color: #751A3D !important;
}
.treo-theme-dark .accent-400 .mat-icon {
  color: #751A3D !important;
}
.treo-theme-dark .accent-400.text-secondary,
.treo-theme-dark .accent-400 .text-secondary {
  color: rgba(117, 26, 61, 0.6) !important;
}
.treo-theme-dark .accent-400.text-hint,
.treo-theme-dark .accent-400 .text-hint {
  color: rgba(117, 26, 61, 0.38) !important;
}
.treo-theme-dark .accent-400.text-disabled,
.treo-theme-dark .accent-400 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.treo-theme-dark .accent-400.divider,
.treo-theme-dark .accent-400 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.treo-theme-dark .border-accent-400 {
  border-color: #F17EB8 !important;
}
.treo-theme-dark .hover\:border-accent-400:hover {
  border-color: #F17EB8 !important;
}
.treo-theme-dark .focus\:border-accent-400:focus {
  border-color: #F17EB8 !important;
}
.treo-theme-dark .active\:border-accent-400:active {
  border-color: #F17EB8 !important;
}
.treo-theme-dark .text-accent-500 {
  color: #E74694 !important;
}
.treo-theme-dark .bg-accent-500 {
  background: #E74694 !important;
}
.treo-theme-dark .accent-500 {
  background: #E74694 !important;
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-500 .mat-icon {
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-500.text-secondary,
.treo-theme-dark .accent-500 .text-secondary {
  color: rgba(253, 242, 248, 0.6) !important;
}
.treo-theme-dark .accent-500.text-hint,
.treo-theme-dark .accent-500 .text-hint {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-500.text-disabled,
.treo-theme-dark .accent-500 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-500.divider,
.treo-theme-dark .accent-500 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.treo-theme-dark .border-accent-500 {
  border-color: #E74694 !important;
}
.treo-theme-dark .hover\:border-accent-500:hover {
  border-color: #E74694 !important;
}
.treo-theme-dark .focus\:border-accent-500:focus {
  border-color: #E74694 !important;
}
.treo-theme-dark .active\:border-accent-500:active {
  border-color: #E74694 !important;
}
.treo-theme-dark .text-accent {
  color: #E74694 !important;
}
.treo-theme-dark .bg-accent {
  background: #E74694 !important;
}
.treo-theme-dark .accent {
  background: #E74694 !important;
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent .mat-icon {
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent.text-secondary,
.treo-theme-dark .accent .text-secondary {
  color: rgba(253, 242, 248, 0.6) !important;
}
.treo-theme-dark .accent.text-hint,
.treo-theme-dark .accent .text-hint {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent.text-disabled,
.treo-theme-dark .accent .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent.divider,
.treo-theme-dark .accent .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.treo-theme-dark .border-accent {
  border-color: #E74694 !important;
}
.treo-theme-dark .hover\:border-accent:hover {
  border-color: #E74694 !important;
}
.treo-theme-dark .focus\:border-accent:focus {
  border-color: #E74694 !important;
}
.treo-theme-dark .active\:border-accent:active {
  border-color: #E74694 !important;
}
.treo-theme-dark .text-accent-600 {
  color: #D61F69 !important;
}
.treo-theme-dark .bg-accent-600 {
  background: #D61F69 !important;
}
.treo-theme-dark .accent-600 {
  background: #D61F69 !important;
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-600 .mat-icon {
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-600.text-secondary,
.treo-theme-dark .accent-600 .text-secondary {
  color: rgba(253, 242, 248, 0.6) !important;
}
.treo-theme-dark .accent-600.text-hint,
.treo-theme-dark .accent-600 .text-hint {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-600.text-disabled,
.treo-theme-dark .accent-600 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-600.divider,
.treo-theme-dark .accent-600 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.treo-theme-dark .border-accent-600 {
  border-color: #D61F69 !important;
}
.treo-theme-dark .hover\:border-accent-600:hover {
  border-color: #D61F69 !important;
}
.treo-theme-dark .focus\:border-accent-600:focus {
  border-color: #D61F69 !important;
}
.treo-theme-dark .active\:border-accent-600:active {
  border-color: #D61F69 !important;
}
.treo-theme-dark .text-accent-700 {
  color: #BF125D !important;
}
.treo-theme-dark .bg-accent-700 {
  background: #BF125D !important;
}
.treo-theme-dark .accent-700 {
  background: #BF125D !important;
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-700 .mat-icon {
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-700.text-secondary,
.treo-theme-dark .accent-700 .text-secondary {
  color: rgba(253, 242, 248, 0.6) !important;
}
.treo-theme-dark .accent-700.text-hint,
.treo-theme-dark .accent-700 .text-hint {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-700.text-disabled,
.treo-theme-dark .accent-700 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-700.divider,
.treo-theme-dark .accent-700 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.treo-theme-dark .border-accent-700 {
  border-color: #BF125D !important;
}
.treo-theme-dark .hover\:border-accent-700:hover {
  border-color: #BF125D !important;
}
.treo-theme-dark .focus\:border-accent-700:focus {
  border-color: #BF125D !important;
}
.treo-theme-dark .active\:border-accent-700:active {
  border-color: #BF125D !important;
}
.treo-theme-dark .text-accent-800 {
  color: #99154B !important;
}
.treo-theme-dark .bg-accent-800 {
  background: #99154B !important;
}
.treo-theme-dark .accent-800 {
  background: #99154B !important;
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-800 .mat-icon {
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-800.text-secondary,
.treo-theme-dark .accent-800 .text-secondary {
  color: rgba(253, 242, 248, 0.6) !important;
}
.treo-theme-dark .accent-800.text-hint,
.treo-theme-dark .accent-800 .text-hint {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-800.text-disabled,
.treo-theme-dark .accent-800 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-800.divider,
.treo-theme-dark .accent-800 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.treo-theme-dark .border-accent-800 {
  border-color: #99154B !important;
}
.treo-theme-dark .hover\:border-accent-800:hover {
  border-color: #99154B !important;
}
.treo-theme-dark .focus\:border-accent-800:focus {
  border-color: #99154B !important;
}
.treo-theme-dark .active\:border-accent-800:active {
  border-color: #99154B !important;
}
.treo-theme-dark .text-accent-900 {
  color: #751A3D !important;
}
.treo-theme-dark .bg-accent-900 {
  background: #751A3D !important;
}
.treo-theme-dark .accent-900 {
  background: #751A3D !important;
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-900 .mat-icon {
  color: #FDF2F8 !important;
}
.treo-theme-dark .accent-900.text-secondary,
.treo-theme-dark .accent-900 .text-secondary {
  color: rgba(253, 242, 248, 0.6) !important;
}
.treo-theme-dark .accent-900.text-hint,
.treo-theme-dark .accent-900 .text-hint {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-900.text-disabled,
.treo-theme-dark .accent-900 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.treo-theme-dark .accent-900.divider,
.treo-theme-dark .accent-900 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.treo-theme-dark .border-accent-900 {
  border-color: #751A3D !important;
}
.treo-theme-dark .hover\:border-accent-900:hover {
  border-color: #751A3D !important;
}
.treo-theme-dark .focus\:border-accent-900:focus {
  border-color: #751A3D !important;
}
.treo-theme-dark .active\:border-accent-900:active {
  border-color: #751A3D !important;
}
.treo-theme-dark .text-warn-100 {
  color: #FDE8E8 !important;
}
.treo-theme-dark .bg-warn-100 {
  background: #FDE8E8 !important;
}
.treo-theme-dark .warn-100 {
  background: #FDE8E8 !important;
  color: #771D1D !important;
}
.treo-theme-dark .warn-100 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-dark .warn-100.text-secondary,
.treo-theme-dark .warn-100 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-dark .warn-100.text-hint,
.treo-theme-dark .warn-100 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-100.text-disabled,
.treo-theme-dark .warn-100 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-100.divider,
.treo-theme-dark .warn-100 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-dark .border-warn-100 {
  border-color: #FDE8E8 !important;
}
.treo-theme-dark .hover\:border-warn-100:hover {
  border-color: #FDE8E8 !important;
}
.treo-theme-dark .focus\:border-warn-100:focus {
  border-color: #FDE8E8 !important;
}
.treo-theme-dark .active\:border-warn-100:active {
  border-color: #FDE8E8 !important;
}
.treo-theme-dark .text-warn-200 {
  color: #FBD5D5 !important;
}
.treo-theme-dark .bg-warn-200 {
  background: #FBD5D5 !important;
}
.treo-theme-dark .warn-200 {
  background: #FBD5D5 !important;
  color: #771D1D !important;
}
.treo-theme-dark .warn-200 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-dark .warn-200.text-secondary,
.treo-theme-dark .warn-200 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-dark .warn-200.text-hint,
.treo-theme-dark .warn-200 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-200.text-disabled,
.treo-theme-dark .warn-200 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-200.divider,
.treo-theme-dark .warn-200 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-dark .border-warn-200 {
  border-color: #FBD5D5 !important;
}
.treo-theme-dark .hover\:border-warn-200:hover {
  border-color: #FBD5D5 !important;
}
.treo-theme-dark .focus\:border-warn-200:focus {
  border-color: #FBD5D5 !important;
}
.treo-theme-dark .active\:border-warn-200:active {
  border-color: #FBD5D5 !important;
}
.treo-theme-dark .text-warn-300 {
  color: #F8B4B4 !important;
}
.treo-theme-dark .bg-warn-300 {
  background: #F8B4B4 !important;
}
.treo-theme-dark .warn-300 {
  background: #F8B4B4 !important;
  color: #771D1D !important;
}
.treo-theme-dark .warn-300 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-dark .warn-300.text-secondary,
.treo-theme-dark .warn-300 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-dark .warn-300.text-hint,
.treo-theme-dark .warn-300 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-300.text-disabled,
.treo-theme-dark .warn-300 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-300.divider,
.treo-theme-dark .warn-300 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-dark .border-warn-300 {
  border-color: #F8B4B4 !important;
}
.treo-theme-dark .hover\:border-warn-300:hover {
  border-color: #F8B4B4 !important;
}
.treo-theme-dark .focus\:border-warn-300:focus {
  border-color: #F8B4B4 !important;
}
.treo-theme-dark .active\:border-warn-300:active {
  border-color: #F8B4B4 !important;
}
.treo-theme-dark .text-warn-400 {
  color: #F98080 !important;
}
.treo-theme-dark .bg-warn-400 {
  background: #F98080 !important;
}
.treo-theme-dark .warn-400 {
  background: #F98080 !important;
  color: #771D1D !important;
}
.treo-theme-dark .warn-400 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-dark .warn-400.text-secondary,
.treo-theme-dark .warn-400 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-dark .warn-400.text-hint,
.treo-theme-dark .warn-400 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-400.text-disabled,
.treo-theme-dark .warn-400 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-400.divider,
.treo-theme-dark .warn-400 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-dark .border-warn-400 {
  border-color: #F98080 !important;
}
.treo-theme-dark .hover\:border-warn-400:hover {
  border-color: #F98080 !important;
}
.treo-theme-dark .focus\:border-warn-400:focus {
  border-color: #F98080 !important;
}
.treo-theme-dark .active\:border-warn-400:active {
  border-color: #F98080 !important;
}
.treo-theme-dark .text-warn-500 {
  color: #F05252 !important;
}
.treo-theme-dark .bg-warn-500 {
  background: #F05252 !important;
}
.treo-theme-dark .warn-500 {
  background: #F05252 !important;
  color: #771D1D !important;
}
.treo-theme-dark .warn-500 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-dark .warn-500.text-secondary,
.treo-theme-dark .warn-500 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-dark .warn-500.text-hint,
.treo-theme-dark .warn-500 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-500.text-disabled,
.treo-theme-dark .warn-500 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn-500.divider,
.treo-theme-dark .warn-500 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-dark .border-warn-500 {
  border-color: #F05252 !important;
}
.treo-theme-dark .hover\:border-warn-500:hover {
  border-color: #F05252 !important;
}
.treo-theme-dark .focus\:border-warn-500:focus {
  border-color: #F05252 !important;
}
.treo-theme-dark .active\:border-warn-500:active {
  border-color: #F05252 !important;
}
.treo-theme-dark .text-warn {
  color: #F05252 !important;
}
.treo-theme-dark .bg-warn {
  background: #F05252 !important;
}
.treo-theme-dark .warn {
  background: #F05252 !important;
  color: #771D1D !important;
}
.treo-theme-dark .warn .mat-icon {
  color: #771D1D !important;
}
.treo-theme-dark .warn.text-secondary,
.treo-theme-dark .warn .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-dark .warn.text-hint,
.treo-theme-dark .warn .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn.text-disabled,
.treo-theme-dark .warn .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-dark .warn.divider,
.treo-theme-dark .warn .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-dark .border-warn {
  border-color: #F05252 !important;
}
.treo-theme-dark .hover\:border-warn:hover {
  border-color: #F05252 !important;
}
.treo-theme-dark .focus\:border-warn:focus {
  border-color: #F05252 !important;
}
.treo-theme-dark .active\:border-warn:active {
  border-color: #F05252 !important;
}
.treo-theme-dark .text-warn-600 {
  color: #E02424 !important;
}
.treo-theme-dark .bg-warn-600 {
  background: #E02424 !important;
}
.treo-theme-dark .warn-600 {
  background: #E02424 !important;
  color: #FDF2F2 !important;
}
.treo-theme-dark .warn-600 .mat-icon {
  color: #FDF2F2 !important;
}
.treo-theme-dark .warn-600.text-secondary,
.treo-theme-dark .warn-600 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.treo-theme-dark .warn-600.text-hint,
.treo-theme-dark .warn-600 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-dark .warn-600.text-disabled,
.treo-theme-dark .warn-600 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-dark .warn-600.divider,
.treo-theme-dark .warn-600 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.treo-theme-dark .border-warn-600 {
  border-color: #E02424 !important;
}
.treo-theme-dark .hover\:border-warn-600:hover {
  border-color: #E02424 !important;
}
.treo-theme-dark .focus\:border-warn-600:focus {
  border-color: #E02424 !important;
}
.treo-theme-dark .active\:border-warn-600:active {
  border-color: #E02424 !important;
}
.treo-theme-dark .text-warn-700 {
  color: #C81E1E !important;
}
.treo-theme-dark .bg-warn-700 {
  background: #C81E1E !important;
}
.treo-theme-dark .warn-700 {
  background: #C81E1E !important;
  color: #FDF2F2 !important;
}
.treo-theme-dark .warn-700 .mat-icon {
  color: #FDF2F2 !important;
}
.treo-theme-dark .warn-700.text-secondary,
.treo-theme-dark .warn-700 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.treo-theme-dark .warn-700.text-hint,
.treo-theme-dark .warn-700 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-dark .warn-700.text-disabled,
.treo-theme-dark .warn-700 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-dark .warn-700.divider,
.treo-theme-dark .warn-700 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.treo-theme-dark .border-warn-700 {
  border-color: #C81E1E !important;
}
.treo-theme-dark .hover\:border-warn-700:hover {
  border-color: #C81E1E !important;
}
.treo-theme-dark .focus\:border-warn-700:focus {
  border-color: #C81E1E !important;
}
.treo-theme-dark .active\:border-warn-700:active {
  border-color: #C81E1E !important;
}
.treo-theme-dark .text-warn-800 {
  color: #9B1C1C !important;
}
.treo-theme-dark .bg-warn-800 {
  background: #9B1C1C !important;
}
.treo-theme-dark .warn-800 {
  background: #9B1C1C !important;
  color: #FDF2F2 !important;
}
.treo-theme-dark .warn-800 .mat-icon {
  color: #FDF2F2 !important;
}
.treo-theme-dark .warn-800.text-secondary,
.treo-theme-dark .warn-800 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.treo-theme-dark .warn-800.text-hint,
.treo-theme-dark .warn-800 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-dark .warn-800.text-disabled,
.treo-theme-dark .warn-800 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-dark .warn-800.divider,
.treo-theme-dark .warn-800 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.treo-theme-dark .border-warn-800 {
  border-color: #9B1C1C !important;
}
.treo-theme-dark .hover\:border-warn-800:hover {
  border-color: #9B1C1C !important;
}
.treo-theme-dark .focus\:border-warn-800:focus {
  border-color: #9B1C1C !important;
}
.treo-theme-dark .active\:border-warn-800:active {
  border-color: #9B1C1C !important;
}
.treo-theme-dark .text-warn-900 {
  color: #771D1D !important;
}
.treo-theme-dark .bg-warn-900 {
  background: #771D1D !important;
}
.treo-theme-dark .warn-900 {
  background: #771D1D !important;
  color: #FDF2F2 !important;
}
.treo-theme-dark .warn-900 .mat-icon {
  color: #FDF2F2 !important;
}
.treo-theme-dark .warn-900.text-secondary,
.treo-theme-dark .warn-900 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.treo-theme-dark .warn-900.text-hint,
.treo-theme-dark .warn-900 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-dark .warn-900.text-disabled,
.treo-theme-dark .warn-900 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-dark .warn-900.divider,
.treo-theme-dark .warn-900 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.treo-theme-dark .border-warn-900 {
  border-color: #771D1D !important;
}
.treo-theme-dark .hover\:border-warn-900:hover {
  border-color: #771D1D !important;
}
.treo-theme-dark .focus\:border-warn-900:focus {
  border-color: #771D1D !important;
}
.treo-theme-dark .active\:border-warn-900:active {
  border-color: #771D1D !important;
}
.treo-theme-light .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.treo-theme-light .mat-option {
  color: #27303f;
}
.treo-theme-light .mat-option:hover:not(.mat-option-disabled), .treo-theme-light .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(151, 166, 186, 0.12);
}
.treo-theme-light .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(151, 166, 186, 0.12);
}
.treo-theme-light .mat-option.mat-active {
  background: rgba(151, 166, 186, 0.12);
  color: #27303f;
}
.treo-theme-light .mat-option.mat-option-disabled {
  color: #97a6ba;
}
.treo-theme-light .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #5850ec;
}
.treo-theme-light .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #27303f;
}
.treo-theme-light .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #c81e1e;
}
.treo-theme-light .mat-optgroup-label {
  color: #64748b;
}
.treo-theme-light .mat-optgroup-disabled .mat-optgroup-label {
  color: #97a6ba;
}
.treo-theme-light .mat-pseudo-checkbox {
  color: #64748b;
}
.treo-theme-light .mat-pseudo-checkbox::after {
  color: #f1f5f9;
}
.treo-theme-light .mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}
.treo-theme-light .mat-primary .mat-pseudo-checkbox-checked,
.treo-theme-light .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #5850ec;
}
.treo-theme-light .mat-pseudo-checkbox-checked,
.treo-theme-light .mat-pseudo-checkbox-indeterminate,
.treo-theme-light .mat-accent .mat-pseudo-checkbox-checked,
.treo-theme-light .mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #27303f;
}
.treo-theme-light .mat-warn .mat-pseudo-checkbox-checked,
.treo-theme-light .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #c81e1e;
}
.treo-theme-light .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.treo-theme-light .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}
.treo-theme-light .mat-app-background, .treo-theme-light.mat-app-background {
  background-color: #f1f5f9;
  color: #27303f;
}
.treo-theme-light .mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.mat-theme-loaded-marker {
  display: none;
}
.treo-theme-light .mat-autocomplete-panel {
  background: white;
  color: #27303f;
}
.treo-theme-light .mat-autocomplete-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: white;
}
.treo-theme-light .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: #27303f;
}
.treo-theme-light .mat-badge-content {
  color: #f0f5ff;
  background: #5850ec;
}
.cdk-high-contrast-active .treo-theme-light .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.treo-theme-light .mat-badge-accent .mat-badge-content {
  background: #27303f;
  color: #fbfdfe;
}
.treo-theme-light .mat-badge-warn .mat-badge-content {
  color: #fdf2f2;
  background: #c81e1e;
}
.treo-theme-light .mat-badge {
  position: relative;
}
.treo-theme-light .mat-badge-hidden .mat-badge-content {
  display: none;
}
.treo-theme-light .mat-badge-disabled .mat-badge-content {
  background: #97a6ba;
  color: #97a6ba;
}
.treo-theme-light .mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
.treo-theme-light .ng-animate-disabled .mat-badge-content,
.treo-theme-light .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.treo-theme-light .mat-badge-content.mat-badge-active {
  transform: none;
}
.treo-theme-light .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.treo-theme-light .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.treo-theme-light .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.treo-theme-light .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .treo-theme-light .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.treo-theme-light .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .treo-theme-light .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.treo-theme-light .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .treo-theme-light .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.treo-theme-light .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .treo-theme-light .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.treo-theme-light .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.treo-theme-light .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.treo-theme-light .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.treo-theme-light .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .treo-theme-light .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.treo-theme-light .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .treo-theme-light .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.treo-theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .treo-theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.treo-theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .treo-theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.treo-theme-light .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.treo-theme-light .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.treo-theme-light .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.treo-theme-light .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .treo-theme-light .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.treo-theme-light .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .treo-theme-light .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.treo-theme-light .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .treo-theme-light .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.treo-theme-light .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .treo-theme-light .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.treo-theme-light .mat-bottom-sheet-container {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  background: white;
  color: #27303f;
}
.treo-theme-light .mat-button, .treo-theme-light .mat-icon-button, .treo-theme-light .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.treo-theme-light .mat-button.mat-primary, .treo-theme-light .mat-icon-button.mat-primary, .treo-theme-light .mat-stroked-button.mat-primary {
  color: #5850ec;
}
.treo-theme-light .mat-button.mat-accent, .treo-theme-light .mat-icon-button.mat-accent, .treo-theme-light .mat-stroked-button.mat-accent {
  color: #27303f;
}
.treo-theme-light .mat-button.mat-warn, .treo-theme-light .mat-icon-button.mat-warn, .treo-theme-light .mat-stroked-button.mat-warn {
  color: #c81e1e;
}
.treo-theme-light .mat-button.mat-primary.mat-button-disabled, .treo-theme-light .mat-button.mat-accent.mat-button-disabled, .treo-theme-light .mat-button.mat-warn.mat-button-disabled, .treo-theme-light .mat-button.mat-button-disabled.mat-button-disabled, .treo-theme-light .mat-icon-button.mat-primary.mat-button-disabled, .treo-theme-light .mat-icon-button.mat-accent.mat-button-disabled, .treo-theme-light .mat-icon-button.mat-warn.mat-button-disabled, .treo-theme-light .mat-icon-button.mat-button-disabled.mat-button-disabled, .treo-theme-light .mat-stroked-button.mat-primary.mat-button-disabled, .treo-theme-light .mat-stroked-button.mat-accent.mat-button-disabled, .treo-theme-light .mat-stroked-button.mat-warn.mat-button-disabled, .treo-theme-light .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: #97a6ba;
}
.treo-theme-light .mat-button.mat-primary .mat-button-focus-overlay, .treo-theme-light .mat-icon-button.mat-primary .mat-button-focus-overlay, .treo-theme-light .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #5850ec;
}
.treo-theme-light .mat-button.mat-accent .mat-button-focus-overlay, .treo-theme-light .mat-icon-button.mat-accent .mat-button-focus-overlay, .treo-theme-light .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #27303f;
}
.treo-theme-light .mat-button.mat-warn .mat-button-focus-overlay, .treo-theme-light .mat-icon-button.mat-warn .mat-button-focus-overlay, .treo-theme-light .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #c81e1e;
}
.treo-theme-light .mat-button.mat-button-disabled .mat-button-focus-overlay, .treo-theme-light .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .treo-theme-light .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.treo-theme-light .mat-button .mat-ripple-element, .treo-theme-light .mat-icon-button .mat-ripple-element, .treo-theme-light .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.treo-theme-light .mat-button-focus-overlay {
  background: black;
}
.treo-theme-light .mat-stroked-button:not(.mat-button-disabled) {
  border-color: #e2e8f0;
}
.treo-theme-light .mat-flat-button, .treo-theme-light .mat-raised-button, .treo-theme-light .mat-fab, .treo-theme-light .mat-mini-fab {
  color: #27303f;
  background-color: white;
}
.treo-theme-light .mat-flat-button.mat-primary, .treo-theme-light .mat-raised-button.mat-primary, .treo-theme-light .mat-fab.mat-primary, .treo-theme-light .mat-mini-fab.mat-primary {
  color: #f0f5ff;
}
.treo-theme-light .mat-flat-button.mat-accent, .treo-theme-light .mat-raised-button.mat-accent, .treo-theme-light .mat-fab.mat-accent, .treo-theme-light .mat-mini-fab.mat-accent {
  color: #fbfdfe;
}
.treo-theme-light .mat-flat-button.mat-warn, .treo-theme-light .mat-raised-button.mat-warn, .treo-theme-light .mat-fab.mat-warn, .treo-theme-light .mat-mini-fab.mat-warn {
  color: #fdf2f2;
}
.treo-theme-light .mat-flat-button.mat-primary.mat-button-disabled, .treo-theme-light .mat-flat-button.mat-accent.mat-button-disabled, .treo-theme-light .mat-flat-button.mat-warn.mat-button-disabled, .treo-theme-light .mat-flat-button.mat-button-disabled.mat-button-disabled, .treo-theme-light .mat-raised-button.mat-primary.mat-button-disabled, .treo-theme-light .mat-raised-button.mat-accent.mat-button-disabled, .treo-theme-light .mat-raised-button.mat-warn.mat-button-disabled, .treo-theme-light .mat-raised-button.mat-button-disabled.mat-button-disabled, .treo-theme-light .mat-fab.mat-primary.mat-button-disabled, .treo-theme-light .mat-fab.mat-accent.mat-button-disabled, .treo-theme-light .mat-fab.mat-warn.mat-button-disabled, .treo-theme-light .mat-fab.mat-button-disabled.mat-button-disabled, .treo-theme-light .mat-mini-fab.mat-primary.mat-button-disabled, .treo-theme-light .mat-mini-fab.mat-accent.mat-button-disabled, .treo-theme-light .mat-mini-fab.mat-warn.mat-button-disabled, .treo-theme-light .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: #97a6ba;
}
.treo-theme-light .mat-flat-button.mat-primary, .treo-theme-light .mat-raised-button.mat-primary, .treo-theme-light .mat-fab.mat-primary, .treo-theme-light .mat-mini-fab.mat-primary {
  background-color: #5850ec;
}
.treo-theme-light .mat-flat-button.mat-accent, .treo-theme-light .mat-raised-button.mat-accent, .treo-theme-light .mat-fab.mat-accent, .treo-theme-light .mat-mini-fab.mat-accent {
  background-color: #27303f;
}
.treo-theme-light .mat-flat-button.mat-warn, .treo-theme-light .mat-raised-button.mat-warn, .treo-theme-light .mat-fab.mat-warn, .treo-theme-light .mat-mini-fab.mat-warn {
  background-color: #c81e1e;
}
.treo-theme-light .mat-flat-button.mat-primary.mat-button-disabled, .treo-theme-light .mat-flat-button.mat-accent.mat-button-disabled, .treo-theme-light .mat-flat-button.mat-warn.mat-button-disabled, .treo-theme-light .mat-flat-button.mat-button-disabled.mat-button-disabled, .treo-theme-light .mat-raised-button.mat-primary.mat-button-disabled, .treo-theme-light .mat-raised-button.mat-accent.mat-button-disabled, .treo-theme-light .mat-raised-button.mat-warn.mat-button-disabled, .treo-theme-light .mat-raised-button.mat-button-disabled.mat-button-disabled, .treo-theme-light .mat-fab.mat-primary.mat-button-disabled, .treo-theme-light .mat-fab.mat-accent.mat-button-disabled, .treo-theme-light .mat-fab.mat-warn.mat-button-disabled, .treo-theme-light .mat-fab.mat-button-disabled.mat-button-disabled, .treo-theme-light .mat-mini-fab.mat-primary.mat-button-disabled, .treo-theme-light .mat-mini-fab.mat-accent.mat-button-disabled, .treo-theme-light .mat-mini-fab.mat-warn.mat-button-disabled, .treo-theme-light .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(151, 166, 186, 0.38);
}
.treo-theme-light .mat-flat-button.mat-primary .mat-ripple-element, .treo-theme-light .mat-raised-button.mat-primary .mat-ripple-element, .treo-theme-light .mat-fab.mat-primary .mat-ripple-element, .treo-theme-light .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(240, 245, 255, 0.1);
}
.treo-theme-light .mat-flat-button.mat-accent .mat-ripple-element, .treo-theme-light .mat-raised-button.mat-accent .mat-ripple-element, .treo-theme-light .mat-fab.mat-accent .mat-ripple-element, .treo-theme-light .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(251, 253, 254, 0.1);
}
.treo-theme-light .mat-flat-button.mat-warn .mat-ripple-element, .treo-theme-light .mat-raised-button.mat-warn .mat-ripple-element, .treo-theme-light .mat-fab.mat-warn .mat-ripple-element, .treo-theme-light .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(253, 242, 242, 0.1);
}
.treo-theme-light .mat-stroked-button:not([class*=mat-elevation-z]), .treo-theme-light .mat-flat-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-raised-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-fab:not([class*=mat-elevation-z]), .treo-theme-light .mat-mini-fab:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .treo-theme-light .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .treo-theme-light .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-button-toggle-standalone,
.treo-theme-light .mat-button-toggle-group {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.treo-theme-light .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.treo-theme-light .mat-button-toggle {
  color: #97a6ba;
}
.treo-theme-light .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: #64748b;
}
.treo-theme-light .mat-button-toggle-appearance-standard {
  color: #27303f;
  background: white;
}
.treo-theme-light .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: #64748b;
}
.treo-theme-light .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px #e2e8f0;
}
.treo-theme-light [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px #e2e8f0;
}
.treo-theme-light .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: none;
  border-top: solid 1px #e2e8f0;
}
.treo-theme-light .mat-button-toggle-checked {
  background-color: #e2e8f0;
  color: #64748b;
}
.treo-theme-light .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: #27303f;
}
.treo-theme-light .mat-button-toggle-disabled {
  color: #97a6ba;
  background-color: #cfd8e3;
}
.treo-theme-light .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: white;
}
.treo-theme-light .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #e2e8f0;
}
.treo-theme-light .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.treo-theme-light .mat-button-toggle-group-appearance-standard {
  border: solid 1px #e2e8f0;
}
.treo-theme-light .mat-card {
  background: white;
  color: #27303f;
}
.treo-theme-light .mat-card:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-card.mat-card-flat:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-card-subtitle {
  color: #64748b;
}
.treo-theme-light .mat-checkbox-frame {
  border-color: #64748b;
}
.treo-theme-light .mat-checkbox-checkmark {
  fill: #f1f5f9;
}
.treo-theme-light .mat-checkbox-checkmark-path {
  stroke: #f1f5f9 !important;
}
.treo-theme-light .mat-checkbox-mixedmark {
  background-color: #f1f5f9;
}
.treo-theme-light .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .treo-theme-light .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #5850ec;
}
.treo-theme-light .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .treo-theme-light .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #27303f;
}
.treo-theme-light .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .treo-theme-light .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #c81e1e;
}
.treo-theme-light .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .treo-theme-light .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0;
}
.treo-theme-light .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0;
}
.treo-theme-light .mat-checkbox-disabled .mat-checkbox-label {
  color: #64748b;
}
.treo-theme-light .mat-checkbox .mat-ripple-element {
  background-color: black;
}
.treo-theme-light .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.treo-theme-light .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #5850ec;
}
.treo-theme-light .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.treo-theme-light .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #27303f;
}
.treo-theme-light .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.treo-theme-light .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #c81e1e;
}
.treo-theme-light .mat-chip.mat-standard-chip {
  background-color: #e2e8f0;
  color: #27303f;
}
.treo-theme-light .mat-chip.mat-standard-chip .mat-chip-remove {
  color: #27303f;
  opacity: 0.4;
}
.treo-theme-light .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.treo-theme-light .mat-chip.mat-standard-chip::after {
  background: black;
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #5850ec;
  color: #f0f5ff;
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: #f0f5ff;
  opacity: 0.4;
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(240, 245, 255, 0.1);
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #c81e1e;
  color: #fdf2f2;
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: #fdf2f2;
  opacity: 0.4;
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(253, 242, 242, 0.1);
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #27303f;
  color: #fbfdfe;
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: #fbfdfe;
  opacity: 0.4;
}
.treo-theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(251, 253, 254, 0.1);
}
.treo-theme-light .mat-table {
  background: white;
}
.treo-theme-light .mat-table thead, .treo-theme-light .mat-table tbody, .treo-theme-light .mat-table tfoot,
.treo-theme-light mat-header-row, .treo-theme-light mat-row, .treo-theme-light mat-footer-row,
.treo-theme-light [mat-header-row], .treo-theme-light [mat-row], .treo-theme-light [mat-footer-row],
.treo-theme-light .mat-table-sticky {
  background: inherit;
}
.treo-theme-light mat-row, .treo-theme-light mat-header-row, .treo-theme-light mat-footer-row,
.treo-theme-light th.mat-header-cell, .treo-theme-light td.mat-cell, .treo-theme-light td.mat-footer-cell {
  border-bottom-color: #e2e8f0;
}
.treo-theme-light .mat-header-cell {
  color: #64748b;
}
.treo-theme-light .mat-cell, .treo-theme-light .mat-footer-cell {
  color: #27303f;
}
.treo-theme-light .mat-calendar-arrow {
  border-top-color: #64748b;
}
.treo-theme-light .mat-datepicker-toggle,
.treo-theme-light .mat-datepicker-content .mat-calendar-next-button,
.treo-theme-light .mat-datepicker-content .mat-calendar-previous-button {
  color: #64748b;
}
.treo-theme-light .mat-calendar-table-header {
  color: #97a6ba;
}
.treo-theme-light .mat-calendar-table-header-divider::after {
  background: #e2e8f0;
}
.treo-theme-light .mat-calendar-body-label {
  color: #64748b;
}
.treo-theme-light .mat-calendar-body-cell-content,
.treo-theme-light .mat-date-range-input-separator {
  color: #27303f;
  border-color: transparent;
}
.treo-theme-light .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: #97a6ba;
}
.treo-theme-light .mat-form-field-disabled .mat-date-range-input-separator {
  color: #97a6ba;
}
.treo-theme-light .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.treo-theme-light .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.treo-theme-light .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(151, 166, 186, 0.12);
}
.treo-theme-light .mat-calendar-body-in-preview {
  color: #e2e8f0;
}
.treo-theme-light .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: #97a6ba;
}
.treo-theme-light .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(151, 166, 186, 0.8);
}
.treo-theme-light .mat-calendar-body-in-range::before {
  background: rgba(88, 80, 236, 0.2);
}
.treo-theme-light .mat-calendar-body-comparison-identical,
.treo-theme-light .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.treo-theme-light .mat-calendar-body-comparison-bridge-start::before,
.treo-theme-light [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(88, 80, 236, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-light .mat-calendar-body-comparison-bridge-end::before,
.treo-theme-light [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(88, 80, 236, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-light .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.treo-theme-light .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.treo-theme-light .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.treo-theme-light .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.treo-theme-light .mat-calendar-body-selected {
  background-color: #5850ec;
  color: #f0f5ff;
}
.treo-theme-light .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(88, 80, 236, 0.4);
}
.treo-theme-light .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #f0f5ff;
}
.treo-theme-light .mat-datepicker-content {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  background-color: white;
  color: #27303f;
}
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(39, 48, 63, 0.2);
}
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.treo-theme-light .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(39, 48, 63, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.treo-theme-light .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(39, 48, 63, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #27303f;
  color: #fbfdfe;
}
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(39, 48, 63, 0.4);
}
.treo-theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fbfdfe;
}
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(200, 30, 30, 0.2);
}
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.treo-theme-light .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(200, 30, 30, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.treo-theme-light .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(200, 30, 30, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #c81e1e;
  color: #fdf2f2;
}
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(200, 30, 30, 0.4);
}
.treo-theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fdf2f2;
}
.treo-theme-light .mat-datepicker-content-touch {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-datepicker-toggle-active {
  color: #5850ec;
}
.treo-theme-light .mat-datepicker-toggle-active.mat-accent {
  color: #27303f;
}
.treo-theme-light .mat-datepicker-toggle-active.mat-warn {
  color: #c81e1e;
}
.treo-theme-light .mat-date-range-input-inner[disabled] {
  color: #97a6ba;
}
.treo-theme-light .mat-dialog-container {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  background: white;
  color: #27303f;
}
.treo-theme-light .mat-divider {
  border-top-color: #e2e8f0;
}
.treo-theme-light .mat-divider-vertical {
  border-right-color: #e2e8f0;
}
.treo-theme-light .mat-expansion-panel {
  background: white;
  color: #27303f;
}
.treo-theme-light .mat-expansion-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-action-row {
  border-top-color: #e2e8f0;
}
.treo-theme-light .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .treo-theme-light .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .treo-theme-light .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(151, 166, 186, 0.12);
}
@media (hover: none) {
  .treo-theme-light .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: white;
  }
}
.treo-theme-light .mat-expansion-panel-header-title {
  color: #27303f;
}
.treo-theme-light .mat-expansion-panel-header-description,
.treo-theme-light .mat-expansion-indicator::after {
  color: #64748b;
}
.treo-theme-light .mat-expansion-panel-header[aria-disabled=true] {
  color: #97a6ba;
}
.treo-theme-light .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.treo-theme-light .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.treo-theme-light .mat-form-field-label {
  color: rgba(100, 116, 139, 0.6);
}
.treo-theme-light .mat-hint {
  color: rgba(100, 116, 139, 0.6);
}
.treo-theme-light .mat-form-field.mat-focused .mat-form-field-label {
  color: #5850ec;
}
.treo-theme-light .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #27303f;
}
.treo-theme-light .mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #c81e1e;
}
.treo-theme-light .mat-focused .mat-form-field-required-marker {
  color: #27303f;
}
.treo-theme-light .mat-form-field-ripple {
  background-color: rgba(226, 232, 240, 0.87);
}
.treo-theme-light .mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #5850ec;
}
.treo-theme-light .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #27303f;
}
.treo-theme-light .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #c81e1e;
}
.treo-theme-light .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #5850ec;
}
.treo-theme-light .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #27303f;
}
.treo-theme-light .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #c81e1e;
}
.treo-theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #c81e1e;
}
.treo-theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.treo-theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #c81e1e;
}
.treo-theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.treo-theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #c81e1e;
}
.treo-theme-light .mat-error {
  color: #c81e1e;
}
.treo-theme-light .mat-form-field-appearance-legacy .mat-form-field-label {
  color: #64748b;
}
.treo-theme-light .mat-form-field-appearance-legacy .mat-hint {
  color: #64748b;
}
.treo-theme-light .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(226, 232, 240, 0.42);
}
.treo-theme-light .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(226, 232, 240, 0.42) 0%, rgba(226, 232, 240, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.treo-theme-light .mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(226, 232, 240, 0.42);
}
.treo-theme-light .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(226, 232, 240, 0.42) 0%, rgba(226, 232, 240, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.treo-theme-light .mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04);
}
.treo-theme-light .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}
.treo-theme-light .mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(226, 232, 240, 0.42);
}
.treo-theme-light .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: #97a6ba;
}
.treo-theme-light .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.treo-theme-light .mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(226, 232, 240, 0.12);
}
.treo-theme-light .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(226, 232, 240, 0.87);
}
.treo-theme-light .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #5850ec;
}
.treo-theme-light .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #27303f;
}
.treo-theme-light .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #c81e1e;
}
.treo-theme-light .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #c81e1e;
}
.treo-theme-light .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: #97a6ba;
}
.treo-theme-light .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(226, 232, 240, 0.06);
}
.treo-theme-light .mat-icon.mat-primary {
  color: #5850ec;
}
.treo-theme-light .mat-icon.mat-accent {
  color: #27303f;
}
.treo-theme-light .mat-icon.mat-warn {
  color: #c81e1e;
}
.treo-theme-light .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: #64748b;
}
.treo-theme-light .mat-input-element:disabled,
.treo-theme-light .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: #97a6ba;
}
.treo-theme-light .mat-input-element {
  caret-color: #5850ec;
}
.treo-theme-light .mat-input-element::-moz-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.treo-theme-light .mat-input-element:-ms-input-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.treo-theme-light .mat-input-element::-ms-input-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.treo-theme-light .mat-input-element::placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.treo-theme-light .mat-input-element::-moz-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.treo-theme-light .mat-input-element::-webkit-input-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.treo-theme-light .mat-input-element:-ms-input-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.treo-theme-light .mat-form-field.mat-accent .mat-input-element {
  caret-color: #27303f;
}
.treo-theme-light .mat-form-field.mat-warn .mat-input-element,
.treo-theme-light .mat-form-field-invalid .mat-input-element {
  caret-color: #c81e1e;
}
.treo-theme-light .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #c81e1e;
}
.treo-theme-light .mat-list-base .mat-list-item {
  color: #27303f;
}
.treo-theme-light .mat-list-base .mat-list-option {
  color: #27303f;
}
.treo-theme-light .mat-list-base .mat-subheader {
  color: #64748b;
}
.treo-theme-light .mat-list-item-disabled {
  background-color: #cfd8e3;
}
.treo-theme-light .mat-list-option:hover, .treo-theme-light .mat-list-option:focus,
.treo-theme-light .mat-nav-list .mat-list-item:hover,
.treo-theme-light .mat-nav-list .mat-list-item:focus,
.treo-theme-light .mat-action-list .mat-list-item:hover,
.treo-theme-light .mat-action-list .mat-list-item:focus {
  background: rgba(151, 166, 186, 0.12);
}
.treo-theme-light .mat-list-single-selected-option, .treo-theme-light .mat-list-single-selected-option:hover, .treo-theme-light .mat-list-single-selected-option:focus {
  background: rgba(151, 166, 186, 0.12);
}
.treo-theme-light .mat-menu-panel {
  background: white;
}
.treo-theme-light .mat-menu-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-menu-item {
  background: transparent;
  color: #27303f;
}
.treo-theme-light .mat-menu-item[disabled], .treo-theme-light .mat-menu-item[disabled]::after {
  color: #97a6ba;
}
.treo-theme-light .mat-menu-item .mat-icon-no-color,
.treo-theme-light .mat-menu-item-submenu-trigger::after {
  color: #64748b;
}
.treo-theme-light .mat-menu-item:hover:not([disabled]),
.treo-theme-light .mat-menu-item.cdk-program-focused:not([disabled]),
.treo-theme-light .mat-menu-item.cdk-keyboard-focused:not([disabled]),
.treo-theme-light .mat-menu-item-highlighted:not([disabled]) {
  background: rgba(151, 166, 186, 0.12);
}
.treo-theme-light .mat-paginator {
  background: white;
}
.treo-theme-light .mat-paginator,
.treo-theme-light .mat-paginator-page-size .mat-select-trigger {
  color: #64748b;
}
.treo-theme-light .mat-paginator-decrement,
.treo-theme-light .mat-paginator-increment {
  border-top: 2px solid #64748b;
  border-right: 2px solid #64748b;
}
.treo-theme-light .mat-paginator-first,
.treo-theme-light .mat-paginator-last {
  border-top: 2px solid #64748b;
}
.treo-theme-light .mat-icon-button[disabled] .mat-paginator-decrement,
.treo-theme-light .mat-icon-button[disabled] .mat-paginator-increment,
.treo-theme-light .mat-icon-button[disabled] .mat-paginator-first,
.treo-theme-light .mat-icon-button[disabled] .mat-paginator-last {
  border-color: #97a6ba;
}
.treo-theme-light .mat-progress-bar-background {
  fill: #e5edff;
}
.treo-theme-light .mat-progress-bar-buffer {
  background-color: #e5edff;
}
.treo-theme-light .mat-progress-bar-fill::after {
  background-color: #5850ec;
}
.treo-theme-light .mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #f1f5f9;
}
.treo-theme-light .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #f1f5f9;
}
.treo-theme-light .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #27303f;
}
.treo-theme-light .mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #fde8e8;
}
.treo-theme-light .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #fde8e8;
}
.treo-theme-light .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #c81e1e;
}
.treo-theme-light .mat-progress-spinner circle, .treo-theme-light .mat-spinner circle {
  stroke: #5850ec;
}
.treo-theme-light .mat-progress-spinner.mat-accent circle, .treo-theme-light .mat-spinner.mat-accent circle {
  stroke: #27303f;
}
.treo-theme-light .mat-progress-spinner.mat-warn circle, .treo-theme-light .mat-spinner.mat-warn circle {
  stroke: #c81e1e;
}
.treo-theme-light .mat-radio-outer-circle {
  border-color: #64748b;
}
.treo-theme-light .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #5850ec;
}
.treo-theme-light .mat-radio-button.mat-primary .mat-radio-inner-circle,
.treo-theme-light .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .treo-theme-light .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .treo-theme-light .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #5850ec;
}
.treo-theme-light .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #27303f;
}
.treo-theme-light .mat-radio-button.mat-accent .mat-radio-inner-circle,
.treo-theme-light .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .treo-theme-light .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .treo-theme-light .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #27303f;
}
.treo-theme-light .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #c81e1e;
}
.treo-theme-light .mat-radio-button.mat-warn .mat-radio-inner-circle,
.treo-theme-light .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .treo-theme-light .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .treo-theme-light .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #c81e1e;
}
.treo-theme-light .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.treo-theme-light .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: #97a6ba;
}
.treo-theme-light .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.treo-theme-light .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: #97a6ba;
}
.treo-theme-light .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: #97a6ba;
}
.treo-theme-light .mat-radio-button .mat-ripple-element {
  background-color: black;
}
.treo-theme-light .mat-select-value {
  color: #27303f;
}
.treo-theme-light .mat-select-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.treo-theme-light .mat-select-disabled .mat-select-value {
  color: #97a6ba;
}
.treo-theme-light .mat-select-arrow {
  color: #64748b;
}
.treo-theme-light .mat-select-panel {
  background: white;
}
.treo-theme-light .mat-select-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(151, 166, 186, 0.12);
}
.treo-theme-light .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #5850ec;
}
.treo-theme-light .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #27303f;
}
.treo-theme-light .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #c81e1e;
}
.treo-theme-light .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #c81e1e;
}
.treo-theme-light .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: #97a6ba;
}
.treo-theme-light .mat-drawer-container {
  background-color: #f1f5f9;
  color: #27303f;
}
.treo-theme-light .mat-drawer {
  background-color: white;
  color: #27303f;
}
.treo-theme-light .mat-drawer.mat-drawer-push {
  background-color: white;
}
.treo-theme-light .mat-drawer:not(.mat-drawer-side) {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-drawer-side {
  border-right: solid 1px #e2e8f0;
}
.treo-theme-light .mat-drawer-side.mat-drawer-end {
  border-left: solid 1px #e2e8f0;
  border-right: none;
}
.treo-theme-light [dir=rtl] .mat-drawer-side {
  border-left: solid 1px #e2e8f0;
  border-right: none;
}
.treo-theme-light [dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px #e2e8f0;
}
.treo-theme-light .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.treo-theme-light .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #27303f;
}
.treo-theme-light .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(39, 48, 63, 0.54);
}
.treo-theme-light .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #27303f;
}
.treo-theme-light .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #5850ec;
}
.treo-theme-light .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(88, 80, 236, 0.54);
}
.treo-theme-light .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #5850ec;
}
.treo-theme-light .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #c81e1e;
}
.treo-theme-light .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(200, 30, 30, 0.54);
}
.treo-theme-light .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #c81e1e;
}
.treo-theme-light .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: black;
}
.treo-theme-light .mat-slide-toggle-thumb {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  background-color: #fafafa;
}
.treo-theme-light .mat-slide-toggle-bar {
  background-color: #97a6ba;
}
.treo-theme-light .mat-slider-track-background {
  background-color: #cfd8e3;
}
.treo-theme-light .mat-primary .mat-slider-track-fill,
.treo-theme-light .mat-primary .mat-slider-thumb,
.treo-theme-light .mat-primary .mat-slider-thumb-label {
  background-color: #5850ec;
}
.treo-theme-light .mat-primary .mat-slider-thumb-label-text {
  color: #f0f5ff;
}
.treo-theme-light .mat-primary .mat-slider-focus-ring {
  background-color: rgba(88, 80, 236, 0.2);
}
.treo-theme-light .mat-accent .mat-slider-track-fill,
.treo-theme-light .mat-accent .mat-slider-thumb,
.treo-theme-light .mat-accent .mat-slider-thumb-label {
  background-color: #27303f;
}
.treo-theme-light .mat-accent .mat-slider-thumb-label-text {
  color: #fbfdfe;
}
.treo-theme-light .mat-accent .mat-slider-focus-ring {
  background-color: rgba(39, 48, 63, 0.2);
}
.treo-theme-light .mat-warn .mat-slider-track-fill,
.treo-theme-light .mat-warn .mat-slider-thumb,
.treo-theme-light .mat-warn .mat-slider-thumb-label {
  background-color: #c81e1e;
}
.treo-theme-light .mat-warn .mat-slider-thumb-label-text {
  color: #fdf2f2;
}
.treo-theme-light .mat-warn .mat-slider-focus-ring {
  background-color: rgba(200, 30, 30, 0.2);
}
.treo-theme-light .mat-slider:hover .mat-slider-track-background,
.treo-theme-light .cdk-focused .mat-slider-track-background {
  background-color: #97a6ba;
}
.treo-theme-light .mat-slider-disabled .mat-slider-track-background,
.treo-theme-light .mat-slider-disabled .mat-slider-track-fill,
.treo-theme-light .mat-slider-disabled .mat-slider-thumb {
  background-color: #cfd8e3;
}
.treo-theme-light .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: #cfd8e3;
}
.treo-theme-light .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.treo-theme-light .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: #27303f;
}
.treo-theme-light .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.treo-theme-light .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: #cfd8e3;
}
.treo-theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: #cfd8e3;
  background-color: transparent;
}
.treo-theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .treo-theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: #97a6ba;
}
.treo-theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .treo-theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: #cfd8e3;
}
.treo-theme-light .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.treo-theme-light .mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.treo-theme-light .mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.treo-theme-light .mat-step-header.cdk-keyboard-focused, .treo-theme-light .mat-step-header.cdk-program-focused, .treo-theme-light .mat-step-header:hover {
  background-color: rgba(151, 166, 186, 0.12);
}
@media (hover: none) {
  .treo-theme-light .mat-step-header:hover {
    background: none;
  }
}
.treo-theme-light .mat-step-header .mat-step-label,
.treo-theme-light .mat-step-header .mat-step-optional {
  color: #64748b;
}
.treo-theme-light .mat-step-header .mat-step-icon {
  background-color: #64748b;
  color: #f0f5ff;
}
.treo-theme-light .mat-step-header .mat-step-icon-selected,
.treo-theme-light .mat-step-header .mat-step-icon-state-done,
.treo-theme-light .mat-step-header .mat-step-icon-state-edit {
  background-color: #5850ec;
  color: #f0f5ff;
}
.treo-theme-light .mat-step-header.mat-accent .mat-step-icon {
  color: #fbfdfe;
}
.treo-theme-light .mat-step-header.mat-accent .mat-step-icon-selected,
.treo-theme-light .mat-step-header.mat-accent .mat-step-icon-state-done,
.treo-theme-light .mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #27303f;
  color: #fbfdfe;
}
.treo-theme-light .mat-step-header.mat-warn .mat-step-icon {
  color: #fdf2f2;
}
.treo-theme-light .mat-step-header.mat-warn .mat-step-icon-selected,
.treo-theme-light .mat-step-header.mat-warn .mat-step-icon-state-done,
.treo-theme-light .mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #c81e1e;
  color: #fdf2f2;
}
.treo-theme-light .mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #c81e1e;
}
.treo-theme-light .mat-step-header .mat-step-label.mat-step-label-active {
  color: #27303f;
}
.treo-theme-light .mat-step-header .mat-step-label.mat-step-label-error {
  color: #c81e1e;
}
.treo-theme-light .mat-stepper-horizontal, .treo-theme-light .mat-stepper-vertical {
  background-color: white;
}
.treo-theme-light .mat-stepper-vertical-line::before {
  border-left-color: #e2e8f0;
}
.treo-theme-light .mat-horizontal-stepper-header::before,
.treo-theme-light .mat-horizontal-stepper-header::after,
.treo-theme-light .mat-stepper-horizontal-line {
  border-top-color: #e2e8f0;
}
.treo-theme-light .mat-sort-header-arrow {
  color: #64748b;
}
.treo-theme-light .mat-tab-nav-bar,
.treo-theme-light .mat-tab-header {
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .mat-tab-group-inverted-header .mat-tab-nav-bar,
.treo-theme-light .mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid #e2e8f0;
  border-bottom: none;
}
.treo-theme-light .mat-tab-label, .treo-theme-light .mat-tab-link {
  color: #27303f;
}
.treo-theme-light .mat-tab-label.mat-tab-disabled, .treo-theme-light .mat-tab-link.mat-tab-disabled {
  color: #97a6ba;
}
.treo-theme-light .mat-tab-header-pagination-chevron {
  border-color: #27303f;
}
.treo-theme-light .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: #97a6ba;
}
.treo-theme-light .mat-tab-group[class*=mat-background-] .mat-tab-header,
.treo-theme-light .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.treo-theme-light .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(229, 237, 255, 0.3);
}
.treo-theme-light .mat-tab-group.mat-primary .mat-ink-bar, .treo-theme-light .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #5850ec;
}
.treo-theme-light .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .treo-theme-light .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: #f0f5ff;
}
.treo-theme-light .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(241, 245, 249, 0.3);
}
.treo-theme-light .mat-tab-group.mat-accent .mat-ink-bar, .treo-theme-light .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #27303f;
}
.treo-theme-light .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .treo-theme-light .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: #fbfdfe;
}
.treo-theme-light .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(253, 232, 232, 0.3);
}
.treo-theme-light .mat-tab-group.mat-warn .mat-ink-bar, .treo-theme-light .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #c81e1e;
}
.treo-theme-light .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .treo-theme-light .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: #fdf2f2;
}
.treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(229, 237, 255, 0.3);
}
.treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-header, .treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-links, .treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: #5850ec;
}
.treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-label, .treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-link, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: #f0f5ff;
}
.treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(240, 245, 255, 0.4);
}
.treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: #f0f5ff;
}
.treo-theme-light .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(240, 245, 255, 0.4);
}
.treo-theme-light .mat-tab-group.mat-background-primary .mat-ripple-element, .treo-theme-light .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(240, 245, 255, 0.12);
}
.treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(241, 245, 249, 0.3);
}
.treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-header, .treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-links, .treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #27303f;
}
.treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-label, .treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-link, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: #fbfdfe;
}
.treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(251, 253, 254, 0.4);
}
.treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: #fbfdfe;
}
.treo-theme-light .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(251, 253, 254, 0.4);
}
.treo-theme-light .mat-tab-group.mat-background-accent .mat-ripple-element, .treo-theme-light .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(251, 253, 254, 0.12);
}
.treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(253, 232, 232, 0.3);
}
.treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-header, .treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-links, .treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #c81e1e;
}
.treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-label, .treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-link, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: #fdf2f2;
}
.treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(253, 242, 242, 0.4);
}
.treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: #fdf2f2;
}
.treo-theme-light .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(253, 242, 242, 0.4);
}
.treo-theme-light .mat-tab-group.mat-background-warn .mat-ripple-element, .treo-theme-light .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(253, 242, 242, 0.12);
}
.treo-theme-light .mat-toolbar {
  background: white;
  color: #27303f;
}
.treo-theme-light .mat-toolbar.mat-primary {
  background: #5850ec;
  color: #f0f5ff;
}
.treo-theme-light .mat-toolbar.mat-accent {
  background: #27303f;
  color: #fbfdfe;
}
.treo-theme-light .mat-toolbar.mat-warn {
  background: #c81e1e;
  color: #fdf2f2;
}
.treo-theme-light .mat-toolbar .mat-form-field-underline,
.treo-theme-light .mat-toolbar .mat-form-field-ripple,
.treo-theme-light .mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.treo-theme-light .mat-toolbar .mat-form-field-label,
.treo-theme-light .mat-toolbar .mat-focused .mat-form-field-label,
.treo-theme-light .mat-toolbar .mat-select-value,
.treo-theme-light .mat-toolbar .mat-select-arrow,
.treo-theme-light .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.treo-theme-light .mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.treo-theme-light .mat-tooltip {
  background: rgba(39, 48, 63, 0.9);
}
.treo-theme-light .mat-tree {
  background: white;
}
.treo-theme-light .mat-tree-node,
.treo-theme-light .mat-nested-tree-node {
  color: #27303f;
}
.treo-theme-light .mat-snack-bar-container {
  color: rgba(255, 255, 255, 0.7);
  background: #323232;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.treo-theme-light .mat-simple-snackbar-action {
  color: #27303f;
}
.treo-theme-light .text-primary-100 {
  color: #E5EDFF !important;
}
.treo-theme-light .bg-primary-100 {
  background: #E5EDFF !important;
}
.treo-theme-light .primary-100 {
  background: #E5EDFF !important;
  color: #362F78 !important;
}
.treo-theme-light .primary-100 .mat-icon {
  color: #362F78 !important;
}
.treo-theme-light .primary-100.text-secondary,
.treo-theme-light .primary-100 .text-secondary {
  color: rgba(54, 47, 120, 0.6) !important;
}
.treo-theme-light .primary-100.text-hint,
.treo-theme-light .primary-100 .text-hint {
  color: rgba(54, 47, 120, 0.38) !important;
}
.treo-theme-light .primary-100.text-disabled,
.treo-theme-light .primary-100 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.treo-theme-light .primary-100.divider,
.treo-theme-light .primary-100 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.treo-theme-light .border-primary-100 {
  border-color: #E5EDFF !important;
}
.treo-theme-light .hover\:border-primary-100:hover {
  border-color: #E5EDFF !important;
}
.treo-theme-light .focus\:border-primary-100:focus {
  border-color: #E5EDFF !important;
}
.treo-theme-light .active\:border-primary-100:active {
  border-color: #E5EDFF !important;
}
.treo-theme-light .text-primary-200 {
  color: #CDDBFE !important;
}
.treo-theme-light .bg-primary-200 {
  background: #CDDBFE !important;
}
.treo-theme-light .primary-200 {
  background: #CDDBFE !important;
  color: #362F78 !important;
}
.treo-theme-light .primary-200 .mat-icon {
  color: #362F78 !important;
}
.treo-theme-light .primary-200.text-secondary,
.treo-theme-light .primary-200 .text-secondary {
  color: rgba(54, 47, 120, 0.6) !important;
}
.treo-theme-light .primary-200.text-hint,
.treo-theme-light .primary-200 .text-hint {
  color: rgba(54, 47, 120, 0.38) !important;
}
.treo-theme-light .primary-200.text-disabled,
.treo-theme-light .primary-200 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.treo-theme-light .primary-200.divider,
.treo-theme-light .primary-200 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.treo-theme-light .border-primary-200 {
  border-color: #CDDBFE !important;
}
.treo-theme-light .hover\:border-primary-200:hover {
  border-color: #CDDBFE !important;
}
.treo-theme-light .focus\:border-primary-200:focus {
  border-color: #CDDBFE !important;
}
.treo-theme-light .active\:border-primary-200:active {
  border-color: #CDDBFE !important;
}
.treo-theme-light .text-primary-300 {
  color: #B4C6FC !important;
}
.treo-theme-light .bg-primary-300 {
  background: #B4C6FC !important;
}
.treo-theme-light .primary-300 {
  background: #B4C6FC !important;
  color: #362F78 !important;
}
.treo-theme-light .primary-300 .mat-icon {
  color: #362F78 !important;
}
.treo-theme-light .primary-300.text-secondary,
.treo-theme-light .primary-300 .text-secondary {
  color: rgba(54, 47, 120, 0.6) !important;
}
.treo-theme-light .primary-300.text-hint,
.treo-theme-light .primary-300 .text-hint {
  color: rgba(54, 47, 120, 0.38) !important;
}
.treo-theme-light .primary-300.text-disabled,
.treo-theme-light .primary-300 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.treo-theme-light .primary-300.divider,
.treo-theme-light .primary-300 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.treo-theme-light .border-primary-300 {
  border-color: #B4C6FC !important;
}
.treo-theme-light .hover\:border-primary-300:hover {
  border-color: #B4C6FC !important;
}
.treo-theme-light .focus\:border-primary-300:focus {
  border-color: #B4C6FC !important;
}
.treo-theme-light .active\:border-primary-300:active {
  border-color: #B4C6FC !important;
}
.treo-theme-light .text-primary-400 {
  color: #8DA2FB !important;
}
.treo-theme-light .bg-primary-400 {
  background: #8DA2FB !important;
}
.treo-theme-light .primary-400 {
  background: #8DA2FB !important;
  color: #362F78 !important;
}
.treo-theme-light .primary-400 .mat-icon {
  color: #362F78 !important;
}
.treo-theme-light .primary-400.text-secondary,
.treo-theme-light .primary-400 .text-secondary {
  color: rgba(54, 47, 120, 0.6) !important;
}
.treo-theme-light .primary-400.text-hint,
.treo-theme-light .primary-400 .text-hint {
  color: rgba(54, 47, 120, 0.38) !important;
}
.treo-theme-light .primary-400.text-disabled,
.treo-theme-light .primary-400 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.treo-theme-light .primary-400.divider,
.treo-theme-light .primary-400 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.treo-theme-light .border-primary-400 {
  border-color: #8DA2FB !important;
}
.treo-theme-light .hover\:border-primary-400:hover {
  border-color: #8DA2FB !important;
}
.treo-theme-light .focus\:border-primary-400:focus {
  border-color: #8DA2FB !important;
}
.treo-theme-light .active\:border-primary-400:active {
  border-color: #8DA2FB !important;
}
.treo-theme-light .text-primary-500 {
  color: #6875F5 !important;
}
.treo-theme-light .bg-primary-500 {
  background: #6875F5 !important;
}
.treo-theme-light .primary-500 {
  background: #6875F5 !important;
  color: #F0F5FF !important;
}
.treo-theme-light .primary-500 .mat-icon {
  color: #F0F5FF !important;
}
.treo-theme-light .primary-500.text-secondary,
.treo-theme-light .primary-500 .text-secondary {
  color: rgba(240, 245, 255, 0.6) !important;
}
.treo-theme-light .primary-500.text-hint,
.treo-theme-light .primary-500 .text-hint {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-500.text-disabled,
.treo-theme-light .primary-500 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-500.divider,
.treo-theme-light .primary-500 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.treo-theme-light .border-primary-500 {
  border-color: #6875F5 !important;
}
.treo-theme-light .hover\:border-primary-500:hover {
  border-color: #6875F5 !important;
}
.treo-theme-light .focus\:border-primary-500:focus {
  border-color: #6875F5 !important;
}
.treo-theme-light .active\:border-primary-500:active {
  border-color: #6875F5 !important;
}
.treo-theme-light .text-primary {
  color: #6875F5 !important;
}
.treo-theme-light .bg-primary {
  background: #6875F5 !important;
}
.treo-theme-light .primary {
  background: #6875F5 !important;
  color: #F0F5FF !important;
}
.treo-theme-light .primary .mat-icon {
  color: #F0F5FF !important;
}
.treo-theme-light .primary.text-secondary,
.treo-theme-light .primary .text-secondary {
  color: rgba(240, 245, 255, 0.6) !important;
}
.treo-theme-light .primary.text-hint,
.treo-theme-light .primary .text-hint {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary.text-disabled,
.treo-theme-light .primary .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary.divider,
.treo-theme-light .primary .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.treo-theme-light .border-primary {
  border-color: #6875F5 !important;
}
.treo-theme-light .hover\:border-primary:hover {
  border-color: #6875F5 !important;
}
.treo-theme-light .focus\:border-primary:focus {
  border-color: #6875F5 !important;
}
.treo-theme-light .active\:border-primary:active {
  border-color: #6875F5 !important;
}
.treo-theme-light .text-primary-600 {
  color: #5850EC !important;
}
.treo-theme-light .bg-primary-600 {
  background: #5850EC !important;
}
.treo-theme-light .primary-600 {
  background: #5850EC !important;
  color: #F0F5FF !important;
}
.treo-theme-light .primary-600 .mat-icon {
  color: #F0F5FF !important;
}
.treo-theme-light .primary-600.text-secondary,
.treo-theme-light .primary-600 .text-secondary {
  color: rgba(240, 245, 255, 0.6) !important;
}
.treo-theme-light .primary-600.text-hint,
.treo-theme-light .primary-600 .text-hint {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-600.text-disabled,
.treo-theme-light .primary-600 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-600.divider,
.treo-theme-light .primary-600 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.treo-theme-light .border-primary-600 {
  border-color: #5850EC !important;
}
.treo-theme-light .hover\:border-primary-600:hover {
  border-color: #5850EC !important;
}
.treo-theme-light .focus\:border-primary-600:focus {
  border-color: #5850EC !important;
}
.treo-theme-light .active\:border-primary-600:active {
  border-color: #5850EC !important;
}
.treo-theme-light .text-primary-700 {
  color: #5145CD !important;
}
.treo-theme-light .bg-primary-700 {
  background: #5145CD !important;
}
.treo-theme-light .primary-700 {
  background: #5145CD !important;
  color: #F0F5FF !important;
}
.treo-theme-light .primary-700 .mat-icon {
  color: #F0F5FF !important;
}
.treo-theme-light .primary-700.text-secondary,
.treo-theme-light .primary-700 .text-secondary {
  color: rgba(240, 245, 255, 0.6) !important;
}
.treo-theme-light .primary-700.text-hint,
.treo-theme-light .primary-700 .text-hint {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-700.text-disabled,
.treo-theme-light .primary-700 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-700.divider,
.treo-theme-light .primary-700 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.treo-theme-light .border-primary-700 {
  border-color: #5145CD !important;
}
.treo-theme-light .hover\:border-primary-700:hover {
  border-color: #5145CD !important;
}
.treo-theme-light .focus\:border-primary-700:focus {
  border-color: #5145CD !important;
}
.treo-theme-light .active\:border-primary-700:active {
  border-color: #5145CD !important;
}
.treo-theme-light .text-primary-800 {
  color: #42389D !important;
}
.treo-theme-light .bg-primary-800 {
  background: #42389D !important;
}
.treo-theme-light .primary-800 {
  background: #42389D !important;
  color: #F0F5FF !important;
}
.treo-theme-light .primary-800 .mat-icon {
  color: #F0F5FF !important;
}
.treo-theme-light .primary-800.text-secondary,
.treo-theme-light .primary-800 .text-secondary {
  color: rgba(240, 245, 255, 0.6) !important;
}
.treo-theme-light .primary-800.text-hint,
.treo-theme-light .primary-800 .text-hint {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-800.text-disabled,
.treo-theme-light .primary-800 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-800.divider,
.treo-theme-light .primary-800 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.treo-theme-light .border-primary-800 {
  border-color: #42389D !important;
}
.treo-theme-light .hover\:border-primary-800:hover {
  border-color: #42389D !important;
}
.treo-theme-light .focus\:border-primary-800:focus {
  border-color: #42389D !important;
}
.treo-theme-light .active\:border-primary-800:active {
  border-color: #42389D !important;
}
.treo-theme-light .text-primary-900 {
  color: #362F78 !important;
}
.treo-theme-light .bg-primary-900 {
  background: #362F78 !important;
}
.treo-theme-light .primary-900 {
  background: #362F78 !important;
  color: #F0F5FF !important;
}
.treo-theme-light .primary-900 .mat-icon {
  color: #F0F5FF !important;
}
.treo-theme-light .primary-900.text-secondary,
.treo-theme-light .primary-900 .text-secondary {
  color: rgba(240, 245, 255, 0.6) !important;
}
.treo-theme-light .primary-900.text-hint,
.treo-theme-light .primary-900 .text-hint {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-900.text-disabled,
.treo-theme-light .primary-900 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.treo-theme-light .primary-900.divider,
.treo-theme-light .primary-900 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.treo-theme-light .border-primary-900 {
  border-color: #362F78 !important;
}
.treo-theme-light .hover\:border-primary-900:hover {
  border-color: #362F78 !important;
}
.treo-theme-light .focus\:border-primary-900:focus {
  border-color: #362F78 !important;
}
.treo-theme-light .active\:border-primary-900:active {
  border-color: #362F78 !important;
}
.treo-theme-light .text-accent-100 {
  color: #F1F5F9 !important;
}
.treo-theme-light .bg-accent-100 {
  background: #F1F5F9 !important;
}
.treo-theme-light .accent-100 {
  background: #F1F5F9 !important;
  color: #1A202E !important;
}
.treo-theme-light .accent-100 .mat-icon {
  color: #1A202E !important;
}
.treo-theme-light .accent-100.text-secondary,
.treo-theme-light .accent-100 .text-secondary {
  color: rgba(26, 32, 46, 0.6) !important;
}
.treo-theme-light .accent-100.text-hint,
.treo-theme-light .accent-100 .text-hint {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-100.text-disabled,
.treo-theme-light .accent-100 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-100.divider,
.treo-theme-light .accent-100 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.treo-theme-light .border-accent-100 {
  border-color: #F1F5F9 !important;
}
.treo-theme-light .hover\:border-accent-100:hover {
  border-color: #F1F5F9 !important;
}
.treo-theme-light .focus\:border-accent-100:focus {
  border-color: #F1F5F9 !important;
}
.treo-theme-light .active\:border-accent-100:active {
  border-color: #F1F5F9 !important;
}
.treo-theme-light .text-accent-200 {
  color: #E2E8F0 !important;
}
.treo-theme-light .bg-accent-200 {
  background: #E2E8F0 !important;
}
.treo-theme-light .accent-200 {
  background: #E2E8F0 !important;
  color: #1A202E !important;
}
.treo-theme-light .accent-200 .mat-icon {
  color: #1A202E !important;
}
.treo-theme-light .accent-200.text-secondary,
.treo-theme-light .accent-200 .text-secondary {
  color: rgba(26, 32, 46, 0.6) !important;
}
.treo-theme-light .accent-200.text-hint,
.treo-theme-light .accent-200 .text-hint {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-200.text-disabled,
.treo-theme-light .accent-200 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-200.divider,
.treo-theme-light .accent-200 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.treo-theme-light .border-accent-200 {
  border-color: #E2E8F0 !important;
}
.treo-theme-light .hover\:border-accent-200:hover {
  border-color: #E2E8F0 !important;
}
.treo-theme-light .focus\:border-accent-200:focus {
  border-color: #E2E8F0 !important;
}
.treo-theme-light .active\:border-accent-200:active {
  border-color: #E2E8F0 !important;
}
.treo-theme-light .text-accent-300 {
  color: #CFD8E3 !important;
}
.treo-theme-light .bg-accent-300 {
  background: #CFD8E3 !important;
}
.treo-theme-light .accent-300 {
  background: #CFD8E3 !important;
  color: #1A202E !important;
}
.treo-theme-light .accent-300 .mat-icon {
  color: #1A202E !important;
}
.treo-theme-light .accent-300.text-secondary,
.treo-theme-light .accent-300 .text-secondary {
  color: rgba(26, 32, 46, 0.6) !important;
}
.treo-theme-light .accent-300.text-hint,
.treo-theme-light .accent-300 .text-hint {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-300.text-disabled,
.treo-theme-light .accent-300 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-300.divider,
.treo-theme-light .accent-300 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.treo-theme-light .border-accent-300 {
  border-color: #CFD8E3 !important;
}
.treo-theme-light .hover\:border-accent-300:hover {
  border-color: #CFD8E3 !important;
}
.treo-theme-light .focus\:border-accent-300:focus {
  border-color: #CFD8E3 !important;
}
.treo-theme-light .active\:border-accent-300:active {
  border-color: #CFD8E3 !important;
}
.treo-theme-light .text-accent-400 {
  color: #97A6BA !important;
}
.treo-theme-light .bg-accent-400 {
  background: #97A6BA !important;
}
.treo-theme-light .accent-400 {
  background: #97A6BA !important;
  color: #1A202E !important;
}
.treo-theme-light .accent-400 .mat-icon {
  color: #1A202E !important;
}
.treo-theme-light .accent-400.text-secondary,
.treo-theme-light .accent-400 .text-secondary {
  color: rgba(26, 32, 46, 0.6) !important;
}
.treo-theme-light .accent-400.text-hint,
.treo-theme-light .accent-400 .text-hint {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-400.text-disabled,
.treo-theme-light .accent-400 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-400.divider,
.treo-theme-light .accent-400 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.treo-theme-light .border-accent-400 {
  border-color: #97A6BA !important;
}
.treo-theme-light .hover\:border-accent-400:hover {
  border-color: #97A6BA !important;
}
.treo-theme-light .focus\:border-accent-400:focus {
  border-color: #97A6BA !important;
}
.treo-theme-light .active\:border-accent-400:active {
  border-color: #97A6BA !important;
}
.treo-theme-light .text-accent-500 {
  color: #64748B !important;
}
.treo-theme-light .bg-accent-500 {
  background: #64748B !important;
}
.treo-theme-light .accent-500 {
  background: #64748B !important;
  color: #1A202E !important;
}
.treo-theme-light .accent-500 .mat-icon {
  color: #1A202E !important;
}
.treo-theme-light .accent-500.text-secondary,
.treo-theme-light .accent-500 .text-secondary {
  color: rgba(26, 32, 46, 0.6) !important;
}
.treo-theme-light .accent-500.text-hint,
.treo-theme-light .accent-500 .text-hint {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-500.text-disabled,
.treo-theme-light .accent-500 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent-500.divider,
.treo-theme-light .accent-500 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.treo-theme-light .border-accent-500 {
  border-color: #64748B !important;
}
.treo-theme-light .hover\:border-accent-500:hover {
  border-color: #64748B !important;
}
.treo-theme-light .focus\:border-accent-500:focus {
  border-color: #64748B !important;
}
.treo-theme-light .active\:border-accent-500:active {
  border-color: #64748B !important;
}
.treo-theme-light .text-accent {
  color: #64748B !important;
}
.treo-theme-light .bg-accent {
  background: #64748B !important;
}
.treo-theme-light .accent {
  background: #64748B !important;
  color: #1A202E !important;
}
.treo-theme-light .accent .mat-icon {
  color: #1A202E !important;
}
.treo-theme-light .accent.text-secondary,
.treo-theme-light .accent .text-secondary {
  color: rgba(26, 32, 46, 0.6) !important;
}
.treo-theme-light .accent.text-hint,
.treo-theme-light .accent .text-hint {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent.text-disabled,
.treo-theme-light .accent .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.treo-theme-light .accent.divider,
.treo-theme-light .accent .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.treo-theme-light .border-accent {
  border-color: #64748B !important;
}
.treo-theme-light .hover\:border-accent:hover {
  border-color: #64748B !important;
}
.treo-theme-light .focus\:border-accent:focus {
  border-color: #64748B !important;
}
.treo-theme-light .active\:border-accent:active {
  border-color: #64748B !important;
}
.treo-theme-light .text-accent-600 {
  color: #475569 !important;
}
.treo-theme-light .bg-accent-600 {
  background: #475569 !important;
}
.treo-theme-light .accent-600 {
  background: #475569 !important;
  color: #FBFDFE !important;
}
.treo-theme-light .accent-600 .mat-icon {
  color: #FBFDFE !important;
}
.treo-theme-light .accent-600.text-secondary,
.treo-theme-light .accent-600 .text-secondary {
  color: rgba(251, 253, 254, 0.6) !important;
}
.treo-theme-light .accent-600.text-hint,
.treo-theme-light .accent-600 .text-hint {
  color: rgba(251, 253, 254, 0.38) !important;
}
.treo-theme-light .accent-600.text-disabled,
.treo-theme-light .accent-600 .text-disabled {
  color: rgba(251, 253, 254, 0.38) !important;
}
.treo-theme-light .accent-600.divider,
.treo-theme-light .accent-600 .divider {
  color: rgba(251, 253, 254, 0.12) !important;
}
.treo-theme-light .border-accent-600 {
  border-color: #475569 !important;
}
.treo-theme-light .hover\:border-accent-600:hover {
  border-color: #475569 !important;
}
.treo-theme-light .focus\:border-accent-600:focus {
  border-color: #475569 !important;
}
.treo-theme-light .active\:border-accent-600:active {
  border-color: #475569 !important;
}
.treo-theme-light .text-accent-700 {
  color: #364152 !important;
}
.treo-theme-light .bg-accent-700 {
  background: #364152 !important;
}
.treo-theme-light .accent-700 {
  background: #364152 !important;
  color: #FBFDFE !important;
}
.treo-theme-light .accent-700 .mat-icon {
  color: #FBFDFE !important;
}
.treo-theme-light .accent-700.text-secondary,
.treo-theme-light .accent-700 .text-secondary {
  color: rgba(251, 253, 254, 0.6) !important;
}
.treo-theme-light .accent-700.text-hint,
.treo-theme-light .accent-700 .text-hint {
  color: rgba(251, 253, 254, 0.38) !important;
}
.treo-theme-light .accent-700.text-disabled,
.treo-theme-light .accent-700 .text-disabled {
  color: rgba(251, 253, 254, 0.38) !important;
}
.treo-theme-light .accent-700.divider,
.treo-theme-light .accent-700 .divider {
  color: rgba(251, 253, 254, 0.12) !important;
}
.treo-theme-light .border-accent-700 {
  border-color: #364152 !important;
}
.treo-theme-light .hover\:border-accent-700:hover {
  border-color: #364152 !important;
}
.treo-theme-light .focus\:border-accent-700:focus {
  border-color: #364152 !important;
}
.treo-theme-light .active\:border-accent-700:active {
  border-color: #364152 !important;
}
.treo-theme-light .text-accent-800 {
  color: #27303F !important;
}
.treo-theme-light .bg-accent-800 {
  background: #27303F !important;
}
.treo-theme-light .accent-800 {
  background: #27303F !important;
  color: #FBFDFE !important;
}
.treo-theme-light .accent-800 .mat-icon {
  color: #FBFDFE !important;
}
.treo-theme-light .accent-800.text-secondary,
.treo-theme-light .accent-800 .text-secondary {
  color: rgba(251, 253, 254, 0.6) !important;
}
.treo-theme-light .accent-800.text-hint,
.treo-theme-light .accent-800 .text-hint {
  color: rgba(251, 253, 254, 0.38) !important;
}
.treo-theme-light .accent-800.text-disabled,
.treo-theme-light .accent-800 .text-disabled {
  color: rgba(251, 253, 254, 0.38) !important;
}
.treo-theme-light .accent-800.divider,
.treo-theme-light .accent-800 .divider {
  color: rgba(251, 253, 254, 0.12) !important;
}
.treo-theme-light .border-accent-800 {
  border-color: #27303F !important;
}
.treo-theme-light .hover\:border-accent-800:hover {
  border-color: #27303F !important;
}
.treo-theme-light .focus\:border-accent-800:focus {
  border-color: #27303F !important;
}
.treo-theme-light .active\:border-accent-800:active {
  border-color: #27303F !important;
}
.treo-theme-light .text-accent-900 {
  color: #1A202E !important;
}
.treo-theme-light .bg-accent-900 {
  background: #1A202E !important;
}
.treo-theme-light .accent-900 {
  background: #1A202E !important;
  color: #FBFDFE !important;
}
.treo-theme-light .accent-900 .mat-icon {
  color: #FBFDFE !important;
}
.treo-theme-light .accent-900.text-secondary,
.treo-theme-light .accent-900 .text-secondary {
  color: rgba(251, 253, 254, 0.6) !important;
}
.treo-theme-light .accent-900.text-hint,
.treo-theme-light .accent-900 .text-hint {
  color: rgba(251, 253, 254, 0.38) !important;
}
.treo-theme-light .accent-900.text-disabled,
.treo-theme-light .accent-900 .text-disabled {
  color: rgba(251, 253, 254, 0.38) !important;
}
.treo-theme-light .accent-900.divider,
.treo-theme-light .accent-900 .divider {
  color: rgba(251, 253, 254, 0.12) !important;
}
.treo-theme-light .border-accent-900 {
  border-color: #1A202E !important;
}
.treo-theme-light .hover\:border-accent-900:hover {
  border-color: #1A202E !important;
}
.treo-theme-light .focus\:border-accent-900:focus {
  border-color: #1A202E !important;
}
.treo-theme-light .active\:border-accent-900:active {
  border-color: #1A202E !important;
}
.treo-theme-light .text-warn-100 {
  color: #FDE8E8 !important;
}
.treo-theme-light .bg-warn-100 {
  background: #FDE8E8 !important;
}
.treo-theme-light .warn-100 {
  background: #FDE8E8 !important;
  color: #771D1D !important;
}
.treo-theme-light .warn-100 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-light .warn-100.text-secondary,
.treo-theme-light .warn-100 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-light .warn-100.text-hint,
.treo-theme-light .warn-100 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-100.text-disabled,
.treo-theme-light .warn-100 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-100.divider,
.treo-theme-light .warn-100 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-light .border-warn-100 {
  border-color: #FDE8E8 !important;
}
.treo-theme-light .hover\:border-warn-100:hover {
  border-color: #FDE8E8 !important;
}
.treo-theme-light .focus\:border-warn-100:focus {
  border-color: #FDE8E8 !important;
}
.treo-theme-light .active\:border-warn-100:active {
  border-color: #FDE8E8 !important;
}
.treo-theme-light .text-warn-200 {
  color: #FBD5D5 !important;
}
.treo-theme-light .bg-warn-200 {
  background: #FBD5D5 !important;
}
.treo-theme-light .warn-200 {
  background: #FBD5D5 !important;
  color: #771D1D !important;
}
.treo-theme-light .warn-200 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-light .warn-200.text-secondary,
.treo-theme-light .warn-200 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-light .warn-200.text-hint,
.treo-theme-light .warn-200 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-200.text-disabled,
.treo-theme-light .warn-200 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-200.divider,
.treo-theme-light .warn-200 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-light .border-warn-200 {
  border-color: #FBD5D5 !important;
}
.treo-theme-light .hover\:border-warn-200:hover {
  border-color: #FBD5D5 !important;
}
.treo-theme-light .focus\:border-warn-200:focus {
  border-color: #FBD5D5 !important;
}
.treo-theme-light .active\:border-warn-200:active {
  border-color: #FBD5D5 !important;
}
.treo-theme-light .text-warn-300 {
  color: #F8B4B4 !important;
}
.treo-theme-light .bg-warn-300 {
  background: #F8B4B4 !important;
}
.treo-theme-light .warn-300 {
  background: #F8B4B4 !important;
  color: #771D1D !important;
}
.treo-theme-light .warn-300 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-light .warn-300.text-secondary,
.treo-theme-light .warn-300 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-light .warn-300.text-hint,
.treo-theme-light .warn-300 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-300.text-disabled,
.treo-theme-light .warn-300 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-300.divider,
.treo-theme-light .warn-300 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-light .border-warn-300 {
  border-color: #F8B4B4 !important;
}
.treo-theme-light .hover\:border-warn-300:hover {
  border-color: #F8B4B4 !important;
}
.treo-theme-light .focus\:border-warn-300:focus {
  border-color: #F8B4B4 !important;
}
.treo-theme-light .active\:border-warn-300:active {
  border-color: #F8B4B4 !important;
}
.treo-theme-light .text-warn-400 {
  color: #F98080 !important;
}
.treo-theme-light .bg-warn-400 {
  background: #F98080 !important;
}
.treo-theme-light .warn-400 {
  background: #F98080 !important;
  color: #771D1D !important;
}
.treo-theme-light .warn-400 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-light .warn-400.text-secondary,
.treo-theme-light .warn-400 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-light .warn-400.text-hint,
.treo-theme-light .warn-400 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-400.text-disabled,
.treo-theme-light .warn-400 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-400.divider,
.treo-theme-light .warn-400 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-light .border-warn-400 {
  border-color: #F98080 !important;
}
.treo-theme-light .hover\:border-warn-400:hover {
  border-color: #F98080 !important;
}
.treo-theme-light .focus\:border-warn-400:focus {
  border-color: #F98080 !important;
}
.treo-theme-light .active\:border-warn-400:active {
  border-color: #F98080 !important;
}
.treo-theme-light .text-warn-500 {
  color: #F05252 !important;
}
.treo-theme-light .bg-warn-500 {
  background: #F05252 !important;
}
.treo-theme-light .warn-500 {
  background: #F05252 !important;
  color: #771D1D !important;
}
.treo-theme-light .warn-500 .mat-icon {
  color: #771D1D !important;
}
.treo-theme-light .warn-500.text-secondary,
.treo-theme-light .warn-500 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-light .warn-500.text-hint,
.treo-theme-light .warn-500 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-500.text-disabled,
.treo-theme-light .warn-500 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn-500.divider,
.treo-theme-light .warn-500 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-light .border-warn-500 {
  border-color: #F05252 !important;
}
.treo-theme-light .hover\:border-warn-500:hover {
  border-color: #F05252 !important;
}
.treo-theme-light .focus\:border-warn-500:focus {
  border-color: #F05252 !important;
}
.treo-theme-light .active\:border-warn-500:active {
  border-color: #F05252 !important;
}
.treo-theme-light .text-warn {
  color: #F05252 !important;
}
.treo-theme-light .bg-warn {
  background: #F05252 !important;
}
.treo-theme-light .warn {
  background: #F05252 !important;
  color: #771D1D !important;
}
.treo-theme-light .warn .mat-icon {
  color: #771D1D !important;
}
.treo-theme-light .warn.text-secondary,
.treo-theme-light .warn .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.treo-theme-light .warn.text-hint,
.treo-theme-light .warn .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn.text-disabled,
.treo-theme-light .warn .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.treo-theme-light .warn.divider,
.treo-theme-light .warn .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.treo-theme-light .border-warn {
  border-color: #F05252 !important;
}
.treo-theme-light .hover\:border-warn:hover {
  border-color: #F05252 !important;
}
.treo-theme-light .focus\:border-warn:focus {
  border-color: #F05252 !important;
}
.treo-theme-light .active\:border-warn:active {
  border-color: #F05252 !important;
}
.treo-theme-light .text-warn-600 {
  color: #E02424 !important;
}
.treo-theme-light .bg-warn-600 {
  background: #E02424 !important;
}
.treo-theme-light .warn-600 {
  background: #E02424 !important;
  color: #FDF2F2 !important;
}
.treo-theme-light .warn-600 .mat-icon {
  color: #FDF2F2 !important;
}
.treo-theme-light .warn-600.text-secondary,
.treo-theme-light .warn-600 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.treo-theme-light .warn-600.text-hint,
.treo-theme-light .warn-600 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-light .warn-600.text-disabled,
.treo-theme-light .warn-600 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-light .warn-600.divider,
.treo-theme-light .warn-600 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.treo-theme-light .border-warn-600 {
  border-color: #E02424 !important;
}
.treo-theme-light .hover\:border-warn-600:hover {
  border-color: #E02424 !important;
}
.treo-theme-light .focus\:border-warn-600:focus {
  border-color: #E02424 !important;
}
.treo-theme-light .active\:border-warn-600:active {
  border-color: #E02424 !important;
}
.treo-theme-light .text-warn-700 {
  color: #C81E1E !important;
}
.treo-theme-light .bg-warn-700 {
  background: #C81E1E !important;
}
.treo-theme-light .warn-700 {
  background: #C81E1E !important;
  color: #FDF2F2 !important;
}
.treo-theme-light .warn-700 .mat-icon {
  color: #FDF2F2 !important;
}
.treo-theme-light .warn-700.text-secondary,
.treo-theme-light .warn-700 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.treo-theme-light .warn-700.text-hint,
.treo-theme-light .warn-700 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-light .warn-700.text-disabled,
.treo-theme-light .warn-700 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-light .warn-700.divider,
.treo-theme-light .warn-700 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.treo-theme-light .border-warn-700 {
  border-color: #C81E1E !important;
}
.treo-theme-light .hover\:border-warn-700:hover {
  border-color: #C81E1E !important;
}
.treo-theme-light .focus\:border-warn-700:focus {
  border-color: #C81E1E !important;
}
.treo-theme-light .active\:border-warn-700:active {
  border-color: #C81E1E !important;
}
.treo-theme-light .text-warn-800 {
  color: #9B1C1C !important;
}
.treo-theme-light .bg-warn-800 {
  background: #9B1C1C !important;
}
.treo-theme-light .warn-800 {
  background: #9B1C1C !important;
  color: #FDF2F2 !important;
}
.treo-theme-light .warn-800 .mat-icon {
  color: #FDF2F2 !important;
}
.treo-theme-light .warn-800.text-secondary,
.treo-theme-light .warn-800 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.treo-theme-light .warn-800.text-hint,
.treo-theme-light .warn-800 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-light .warn-800.text-disabled,
.treo-theme-light .warn-800 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-light .warn-800.divider,
.treo-theme-light .warn-800 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.treo-theme-light .border-warn-800 {
  border-color: #9B1C1C !important;
}
.treo-theme-light .hover\:border-warn-800:hover {
  border-color: #9B1C1C !important;
}
.treo-theme-light .focus\:border-warn-800:focus {
  border-color: #9B1C1C !important;
}
.treo-theme-light .active\:border-warn-800:active {
  border-color: #9B1C1C !important;
}
.treo-theme-light .text-warn-900 {
  color: #771D1D !important;
}
.treo-theme-light .bg-warn-900 {
  background: #771D1D !important;
}
.treo-theme-light .warn-900 {
  background: #771D1D !important;
  color: #FDF2F2 !important;
}
.treo-theme-light .warn-900 .mat-icon {
  color: #FDF2F2 !important;
}
.treo-theme-light .warn-900.text-secondary,
.treo-theme-light .warn-900 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.treo-theme-light .warn-900.text-hint,
.treo-theme-light .warn-900 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-light .warn-900.text-disabled,
.treo-theme-light .warn-900 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.treo-theme-light .warn-900.divider,
.treo-theme-light .warn-900 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.treo-theme-light .border-warn-900 {
  border-color: #771D1D !important;
}
.treo-theme-light .hover\:border-warn-900:hover {
  border-color: #771D1D !important;
}
.treo-theme-light .focus\:border-warn-900:focus {
  border-color: #771D1D !important;
}
.treo-theme-light .active\:border-warn-900:active {
  border-color: #771D1D !important;
}
.theme-dark .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .mat-option {
  color: white;
}
.theme-dark .mat-option:hover:not(.mat-option-disabled), .theme-dark .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(255, 255, 255, 0.05);
}
.theme-dark .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(255, 255, 255, 0.05);
}
.theme-dark .mat-option.mat-active {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}
.theme-dark .mat-option.mat-option-disabled {
  color: #64748b;
}
.theme-dark .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: white;
}
.theme-dark .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #252f3f;
}
.theme-dark .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #9b1c1c;
}
.theme-dark .mat-optgroup-label {
  color: #97a6ba;
}
.theme-dark .mat-optgroup-disabled .mat-optgroup-label {
  color: #64748b;
}
.theme-dark .mat-pseudo-checkbox {
  color: #97a6ba;
}
.theme-dark .mat-pseudo-checkbox::after {
  color: #1a202e;
}
.theme-dark .mat-pseudo-checkbox-disabled {
  color: #686868;
}
.theme-dark .mat-primary .mat-pseudo-checkbox-checked,
.theme-dark .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: white;
}
.theme-dark .mat-pseudo-checkbox-checked,
.theme-dark .mat-pseudo-checkbox-indeterminate,
.theme-dark .mat-accent .mat-pseudo-checkbox-checked,
.theme-dark .mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #252f3f;
}
.theme-dark .mat-warn .mat-pseudo-checkbox-checked,
.theme-dark .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #9b1c1c;
}
.theme-dark .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.theme-dark .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #686868;
}
.theme-dark .mat-app-background, .theme-dark.mat-app-background {
  background-color: #1a202e;
  color: white;
}
.theme-dark .mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.mat-theme-loaded-marker {
  display: none;
}
.theme-dark .mat-autocomplete-panel {
  background: #27303f;
  color: white;
}
.theme-dark .mat-autocomplete-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: #27303f;
}
.theme-dark .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: white;
}
.theme-dark .mat-badge-content {
  color: #252f3f;
  background: white;
}
.cdk-high-contrast-active .theme-dark .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.theme-dark .mat-badge-accent .mat-badge-content {
  background: #252f3f;
  color: #f9fafb;
}
.theme-dark .mat-badge-warn .mat-badge-content {
  color: #fdf2f2;
  background: #9b1c1c;
}
.theme-dark .mat-badge {
  position: relative;
}
.theme-dark .mat-badge-hidden .mat-badge-content {
  display: none;
}
.theme-dark .mat-badge-disabled .mat-badge-content {
  background: #27303f;
  color: #475569;
}
.theme-dark .mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
.theme-dark .ng-animate-disabled .mat-badge-content,
.theme-dark .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.theme-dark .mat-badge-content.mat-badge-active {
  transform: none;
}
.theme-dark .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.theme-dark .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.theme-dark .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.theme-dark .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .theme-dark .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.theme-dark .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .theme-dark .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.theme-dark .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.theme-dark .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.theme-dark .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.theme-dark .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .theme-dark .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.theme-dark .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .theme-dark .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.theme-dark .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.theme-dark .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.theme-dark .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.theme-dark .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .theme-dark .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.theme-dark .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .theme-dark .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.theme-dark .mat-bottom-sheet-container {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  background: #27303f;
  color: white;
}
.theme-dark .mat-button, .theme-dark .mat-icon-button, .theme-dark .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.theme-dark .mat-button.mat-primary, .theme-dark .mat-icon-button.mat-primary, .theme-dark .mat-stroked-button.mat-primary {
  color: white;
}
.theme-dark .mat-button.mat-accent, .theme-dark .mat-icon-button.mat-accent, .theme-dark .mat-stroked-button.mat-accent {
  color: #252f3f;
}
.theme-dark .mat-button.mat-warn, .theme-dark .mat-icon-button.mat-warn, .theme-dark .mat-stroked-button.mat-warn {
  color: #9b1c1c;
}
.theme-dark .mat-button.mat-primary.mat-button-disabled, .theme-dark .mat-button.mat-accent.mat-button-disabled, .theme-dark .mat-button.mat-warn.mat-button-disabled, .theme-dark .mat-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-icon-button.mat-primary.mat-button-disabled, .theme-dark .mat-icon-button.mat-accent.mat-button-disabled, .theme-dark .mat-icon-button.mat-warn.mat-button-disabled, .theme-dark .mat-icon-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-stroked-button.mat-primary.mat-button-disabled, .theme-dark .mat-stroked-button.mat-accent.mat-button-disabled, .theme-dark .mat-stroked-button.mat-warn.mat-button-disabled, .theme-dark .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: #27303f;
}
.theme-dark .mat-button.mat-primary .mat-button-focus-overlay, .theme-dark .mat-icon-button.mat-primary .mat-button-focus-overlay, .theme-dark .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: white;
}
.theme-dark .mat-button.mat-accent .mat-button-focus-overlay, .theme-dark .mat-icon-button.mat-accent .mat-button-focus-overlay, .theme-dark .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #252f3f;
}
.theme-dark .mat-button.mat-warn .mat-button-focus-overlay, .theme-dark .mat-icon-button.mat-warn .mat-button-focus-overlay, .theme-dark .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #9b1c1c;
}
.theme-dark .mat-button.mat-button-disabled .mat-button-focus-overlay, .theme-dark .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .theme-dark .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.theme-dark .mat-button .mat-ripple-element, .theme-dark .mat-icon-button .mat-ripple-element, .theme-dark .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.theme-dark .mat-button-focus-overlay {
  background: white;
}
.theme-dark .mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-flat-button, .theme-dark .mat-raised-button, .theme-dark .mat-fab, .theme-dark .mat-mini-fab {
  color: white;
  background-color: #1a202e;
}
.theme-dark .mat-flat-button.mat-primary, .theme-dark .mat-raised-button.mat-primary, .theme-dark .mat-fab.mat-primary, .theme-dark .mat-mini-fab.mat-primary {
  color: #252f3f;
}
.theme-dark .mat-flat-button.mat-accent, .theme-dark .mat-raised-button.mat-accent, .theme-dark .mat-fab.mat-accent, .theme-dark .mat-mini-fab.mat-accent {
  color: #f9fafb;
}
.theme-dark .mat-flat-button.mat-warn, .theme-dark .mat-raised-button.mat-warn, .theme-dark .mat-fab.mat-warn, .theme-dark .mat-mini-fab.mat-warn {
  color: #fdf2f2;
}
.theme-dark .mat-flat-button.mat-primary.mat-button-disabled, .theme-dark .mat-flat-button.mat-accent.mat-button-disabled, .theme-dark .mat-flat-button.mat-warn.mat-button-disabled, .theme-dark .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-raised-button.mat-primary.mat-button-disabled, .theme-dark .mat-raised-button.mat-accent.mat-button-disabled, .theme-dark .mat-raised-button.mat-warn.mat-button-disabled, .theme-dark .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-fab.mat-primary.mat-button-disabled, .theme-dark .mat-fab.mat-accent.mat-button-disabled, .theme-dark .mat-fab.mat-warn.mat-button-disabled, .theme-dark .mat-fab.mat-button-disabled.mat-button-disabled, .theme-dark .mat-mini-fab.mat-primary.mat-button-disabled, .theme-dark .mat-mini-fab.mat-accent.mat-button-disabled, .theme-dark .mat-mini-fab.mat-warn.mat-button-disabled, .theme-dark .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: #27303f;
}
.theme-dark .mat-flat-button.mat-primary, .theme-dark .mat-raised-button.mat-primary, .theme-dark .mat-fab.mat-primary, .theme-dark .mat-mini-fab.mat-primary {
  background-color: white;
}
.theme-dark .mat-flat-button.mat-accent, .theme-dark .mat-raised-button.mat-accent, .theme-dark .mat-fab.mat-accent, .theme-dark .mat-mini-fab.mat-accent {
  background-color: #252f3f;
}
.theme-dark .mat-flat-button.mat-warn, .theme-dark .mat-raised-button.mat-warn, .theme-dark .mat-fab.mat-warn, .theme-dark .mat-mini-fab.mat-warn {
  background-color: #9b1c1c;
}
.theme-dark .mat-flat-button.mat-primary.mat-button-disabled, .theme-dark .mat-flat-button.mat-accent.mat-button-disabled, .theme-dark .mat-flat-button.mat-warn.mat-button-disabled, .theme-dark .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-raised-button.mat-primary.mat-button-disabled, .theme-dark .mat-raised-button.mat-accent.mat-button-disabled, .theme-dark .mat-raised-button.mat-warn.mat-button-disabled, .theme-dark .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-fab.mat-primary.mat-button-disabled, .theme-dark .mat-fab.mat-accent.mat-button-disabled, .theme-dark .mat-fab.mat-warn.mat-button-disabled, .theme-dark .mat-fab.mat-button-disabled.mat-button-disabled, .theme-dark .mat-mini-fab.mat-primary.mat-button-disabled, .theme-dark .mat-mini-fab.mat-accent.mat-button-disabled, .theme-dark .mat-mini-fab.mat-warn.mat-button-disabled, .theme-dark .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(26, 32, 46, 0.38);
}
.theme-dark .mat-flat-button.mat-primary .mat-ripple-element, .theme-dark .mat-raised-button.mat-primary .mat-ripple-element, .theme-dark .mat-fab.mat-primary .mat-ripple-element, .theme-dark .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(37, 47, 63, 0.1);
}
.theme-dark .mat-flat-button.mat-accent .mat-ripple-element, .theme-dark .mat-raised-button.mat-accent .mat-ripple-element, .theme-dark .mat-fab.mat-accent .mat-ripple-element, .theme-dark .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(249, 250, 251, 0.1);
}
.theme-dark .mat-flat-button.mat-warn .mat-ripple-element, .theme-dark .mat-raised-button.mat-warn .mat-ripple-element, .theme-dark .mat-fab.mat-warn .mat-ripple-element, .theme-dark .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(253, 242, 242, 0.1);
}
.theme-dark .mat-stroked-button:not([class*=mat-elevation-z]), .theme-dark .mat-flat-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-raised-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-fab:not([class*=mat-elevation-z]), .theme-dark .mat-mini-fab:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .theme-dark .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .theme-dark .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-button-toggle-standalone,
.theme-dark .mat-button-toggle-group {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-dark .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.theme-dark .mat-button-toggle {
  color: #64748b;
}
.theme-dark .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: #e2e8f0;
}
.theme-dark .mat-button-toggle-appearance-standard {
  color: white;
  background: #27303f;
}
.theme-dark .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: #e2e8f0;
}
.theme-dark .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px rgba(241, 245, 249, 0.12);
}
.theme-dark [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: none;
  border-top: solid 1px rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-button-toggle-checked {
  background-color: rgba(255, 255, 255, 0.05);
  color: #97a6ba;
}
.theme-dark .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: white;
}
.theme-dark .mat-button-toggle-disabled {
  color: #27303f;
  background-color: #1a202e;
}
.theme-dark .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: #27303f;
}
.theme-dark .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #27303f;
}
.theme-dark .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-dark .mat-button-toggle-group-appearance-standard {
  border: solid 1px rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-card {
  background: #27303f;
  color: white;
}
.theme-dark .mat-card:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-card.mat-card-flat:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-card-subtitle {
  color: #97a6ba;
}
.theme-dark .mat-checkbox-frame {
  border-color: #97a6ba;
}
.theme-dark .mat-checkbox-checkmark {
  fill: #1a202e;
}
.theme-dark .mat-checkbox-checkmark-path {
  stroke: #1a202e !important;
}
.theme-dark .mat-checkbox-mixedmark {
  background-color: #1a202e;
}
.theme-dark .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .theme-dark .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: white;
}
.theme-dark .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .theme-dark .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #252f3f;
}
.theme-dark .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .theme-dark .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #9b1c1c;
}
.theme-dark .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .theme-dark .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #686868;
}
.theme-dark .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #686868;
}
.theme-dark .mat-checkbox-disabled .mat-checkbox-label {
  color: #97a6ba;
}
.theme-dark .mat-checkbox .mat-ripple-element {
  background-color: white;
}
.theme-dark .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.theme-dark .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: white;
}
.theme-dark .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.theme-dark .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #252f3f;
}
.theme-dark .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.theme-dark .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #9b1c1c;
}
.theme-dark .mat-chip.mat-standard-chip {
  background-color: #475569;
  color: white;
}
.theme-dark .mat-chip.mat-standard-chip .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.theme-dark .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.theme-dark .mat-chip.mat-standard-chip::after {
  background: white;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: white;
  color: #252f3f;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: #252f3f;
  opacity: 0.4;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(37, 47, 63, 0.1);
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #9b1c1c;
  color: #fdf2f2;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: #fdf2f2;
  opacity: 0.4;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(253, 242, 242, 0.1);
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #252f3f;
  color: #f9fafb;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: #f9fafb;
  opacity: 0.4;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(249, 250, 251, 0.1);
}
.theme-dark .mat-table {
  background: #27303f;
}
.theme-dark .mat-table thead, .theme-dark .mat-table tbody, .theme-dark .mat-table tfoot,
.theme-dark mat-header-row, .theme-dark mat-row, .theme-dark mat-footer-row,
.theme-dark [mat-header-row], .theme-dark [mat-row], .theme-dark [mat-footer-row],
.theme-dark .mat-table-sticky {
  background: inherit;
}
.theme-dark mat-row, .theme-dark mat-header-row, .theme-dark mat-footer-row,
.theme-dark th.mat-header-cell, .theme-dark td.mat-cell, .theme-dark td.mat-footer-cell {
  border-bottom-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-header-cell {
  color: #97a6ba;
}
.theme-dark .mat-cell, .theme-dark .mat-footer-cell {
  color: white;
}
.theme-dark .mat-calendar-arrow {
  border-top-color: #f1f5f9;
}
.theme-dark .mat-datepicker-toggle,
.theme-dark .mat-datepicker-content .mat-calendar-next-button,
.theme-dark .mat-datepicker-content .mat-calendar-previous-button {
  color: #f1f5f9;
}
.theme-dark .mat-calendar-table-header {
  color: #64748b;
}
.theme-dark .mat-calendar-table-header-divider::after {
  background: rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-calendar-body-label {
  color: #97a6ba;
}
.theme-dark .mat-calendar-body-cell-content,
.theme-dark .mat-date-range-input-separator {
  color: white;
  border-color: transparent;
}
.theme-dark .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: #475569;
}
.theme-dark .mat-form-field-disabled .mat-date-range-input-separator {
  color: #475569;
}
.theme-dark .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.theme-dark .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.theme-dark .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(255, 255, 255, 0.05);
}
.theme-dark .mat-calendar-body-in-preview {
  color: rgba(241, 245, 249, 0.24);
}
.theme-dark .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: #64748b;
}
.theme-dark .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(100, 116, 139, 0.8);
}
.theme-dark .mat-calendar-body-in-range::before {
  background: rgba(255, 255, 255, 0.2);
}
.theme-dark .mat-calendar-body-comparison-identical,
.theme-dark .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-dark .mat-calendar-body-comparison-bridge-start::before,
.theme-dark [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-calendar-body-comparison-bridge-end::before,
.theme-dark [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-dark .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-dark .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-dark .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-dark .mat-calendar-body-selected {
  background-color: white;
  color: #252f3f;
}
.theme-dark .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(255, 255, 255, 0.4);
}
.theme-dark .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #252f3f;
}
.theme-dark .mat-datepicker-content {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  background-color: #27303f;
  color: white;
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(37, 47, 63, 0.2);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.theme-dark .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(37, 47, 63, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.theme-dark .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(37, 47, 63, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #252f3f;
  color: #f9fafb;
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(37, 47, 63, 0.4);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #f9fafb;
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(155, 28, 28, 0.2);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.theme-dark .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(155, 28, 28, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.theme-dark .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(155, 28, 28, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #9b1c1c;
  color: #fdf2f2;
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(155, 28, 28, 0.4);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fdf2f2;
}
.theme-dark .mat-datepicker-content-touch {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-datepicker-toggle-active {
  color: white;
}
.theme-dark .mat-datepicker-toggle-active.mat-accent {
  color: #252f3f;
}
.theme-dark .mat-datepicker-toggle-active.mat-warn {
  color: #9b1c1c;
}
.theme-dark .mat-date-range-input-inner[disabled] {
  color: #475569;
}
.theme-dark .mat-dialog-container {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  background: #27303f;
  color: white;
}
.theme-dark .mat-divider {
  border-top-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-divider-vertical {
  border-right-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-expansion-panel {
  background: #27303f;
  color: white;
}
.theme-dark .mat-expansion-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-action-row {
  border-top-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .theme-dark .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .theme-dark .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(255, 255, 255, 0.05);
}
@media (hover: none) {
  .theme-dark .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: #27303f;
  }
}
.theme-dark .mat-expansion-panel-header-title {
  color: white;
}
.theme-dark .mat-expansion-panel-header-description,
.theme-dark .mat-expansion-indicator::after {
  color: #97a6ba;
}
.theme-dark .mat-expansion-panel-header[aria-disabled=true] {
  color: #27303f;
}
.theme-dark .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.theme-dark .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.theme-dark .mat-form-field-label {
  color: rgba(151, 166, 186, 0.7);
}
.theme-dark .mat-hint {
  color: rgba(151, 166, 186, 0.7);
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-label {
  color: white;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #252f3f;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #9b1c1c;
}
.theme-dark .mat-focused .mat-form-field-required-marker {
  color: #252f3f;
}
.theme-dark .mat-form-field-ripple {
  background-color: #f1f5f9;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: white;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #252f3f;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #9b1c1c;
}
.theme-dark .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: white;
}
.theme-dark .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #252f3f;
}
.theme-dark .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #9b1c1c;
}
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #9b1c1c;
}
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #9b1c1c;
}
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #9b1c1c;
}
.theme-dark .mat-error {
  color: #9b1c1c;
}
.theme-dark .mat-form-field-appearance-legacy .mat-form-field-label {
  color: #97a6ba;
}
.theme-dark .mat-form-field-appearance-legacy .mat-hint {
  color: #97a6ba;
}
.theme-dark .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(241, 245, 249, 0.7);
}
.theme-dark .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(241, 245, 249, 0.7) 0%, rgba(241, 245, 249, 0.7) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-dark .mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(241, 245, 249, 0.7);
}
.theme-dark .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(241, 245, 249, 0.7) 0%, rgba(241, 245, 249, 0.7) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-dark .mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(255, 255, 255, 0.05);
}
.theme-dark .mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(241, 245, 249, 0.5);
}
.theme-dark .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: #475569;
}
.theme-dark .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.theme-dark .mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(241, 245, 249, 0.3);
}
.theme-dark .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: #f1f5f9;
}
.theme-dark .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: white;
}
.theme-dark .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #252f3f;
}
.theme-dark .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #9b1c1c;
}
.theme-dark .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #9b1c1c;
}
.theme-dark .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: #475569;
}
.theme-dark .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(241, 245, 249, 0.15);
}
.theme-dark .mat-icon.mat-primary {
  color: white;
}
.theme-dark .mat-icon.mat-accent {
  color: #252f3f;
}
.theme-dark .mat-icon.mat-warn {
  color: #9b1c1c;
}
.theme-dark .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: #97a6ba;
}
.theme-dark .mat-input-element:disabled,
.theme-dark .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: #475569;
}
.theme-dark .mat-input-element {
  caret-color: white;
}
.theme-dark .mat-input-element::-moz-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.theme-dark .mat-input-element:-ms-input-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.theme-dark .mat-input-element::-ms-input-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.theme-dark .mat-input-element::placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.theme-dark .mat-input-element::-moz-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.theme-dark .mat-input-element::-webkit-input-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.theme-dark .mat-input-element:-ms-input-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.theme-dark .mat-input-element option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-input-element option:disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-dark .mat-form-field.mat-accent .mat-input-element {
  caret-color: #252f3f;
}
.theme-dark .mat-form-field.mat-warn .mat-input-element,
.theme-dark .mat-form-field-invalid .mat-input-element {
  caret-color: #9b1c1c;
}
.theme-dark .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #9b1c1c;
}
.theme-dark .mat-list-base .mat-list-item {
  color: white;
}
.theme-dark .mat-list-base .mat-list-option {
  color: white;
}
.theme-dark .mat-list-base .mat-subheader {
  color: #97a6ba;
}
.theme-dark .mat-list-item-disabled {
  background-color: #e2e8f0;
}
.theme-dark .mat-list-option:hover, .theme-dark .mat-list-option:focus,
.theme-dark .mat-nav-list .mat-list-item:hover,
.theme-dark .mat-nav-list .mat-list-item:focus,
.theme-dark .mat-action-list .mat-list-item:hover,
.theme-dark .mat-action-list .mat-list-item:focus {
  background: rgba(255, 255, 255, 0.05);
}
.theme-dark .mat-list-single-selected-option, .theme-dark .mat-list-single-selected-option:hover, .theme-dark .mat-list-single-selected-option:focus {
  background: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-menu-panel {
  background: #27303f;
}
.theme-dark .mat-menu-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-menu-item {
  background: transparent;
  color: white;
}
.theme-dark .mat-menu-item[disabled], .theme-dark .mat-menu-item[disabled]::after {
  color: #475569;
}
.theme-dark .mat-menu-item .mat-icon-no-color,
.theme-dark .mat-menu-item-submenu-trigger::after {
  color: #f1f5f9;
}
.theme-dark .mat-menu-item:hover:not([disabled]),
.theme-dark .mat-menu-item.cdk-program-focused:not([disabled]),
.theme-dark .mat-menu-item.cdk-keyboard-focused:not([disabled]),
.theme-dark .mat-menu-item-highlighted:not([disabled]) {
  background: rgba(255, 255, 255, 0.05);
}
.theme-dark .mat-paginator {
  background: #27303f;
}
.theme-dark .mat-paginator,
.theme-dark .mat-paginator-page-size .mat-select-trigger {
  color: #97a6ba;
}
.theme-dark .mat-paginator-decrement,
.theme-dark .mat-paginator-increment {
  border-top: 2px solid #f1f5f9;
  border-right: 2px solid #f1f5f9;
}
.theme-dark .mat-paginator-first,
.theme-dark .mat-paginator-last {
  border-top: 2px solid #f1f5f9;
}
.theme-dark .mat-icon-button[disabled] .mat-paginator-decrement,
.theme-dark .mat-icon-button[disabled] .mat-paginator-increment,
.theme-dark .mat-icon-button[disabled] .mat-paginator-first,
.theme-dark .mat-icon-button[disabled] .mat-paginator-last {
  border-color: #475569;
}
.theme-dark .mat-progress-bar-background {
  fill: white;
}
.theme-dark .mat-progress-bar-buffer {
  background-color: white;
}
.theme-dark .mat-progress-bar-fill::after {
  background-color: white;
}
.theme-dark .mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #f4f5f7;
}
.theme-dark .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #f4f5f7;
}
.theme-dark .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #252f3f;
}
.theme-dark .mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #fde8e8;
}
.theme-dark .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #fde8e8;
}
.theme-dark .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #9b1c1c;
}
.theme-dark .mat-progress-spinner circle, .theme-dark .mat-spinner circle {
  stroke: white;
}
.theme-dark .mat-progress-spinner.mat-accent circle, .theme-dark .mat-spinner.mat-accent circle {
  stroke: #252f3f;
}
.theme-dark .mat-progress-spinner.mat-warn circle, .theme-dark .mat-spinner.mat-warn circle {
  stroke: #9b1c1c;
}
.theme-dark .mat-radio-outer-circle {
  border-color: #97a6ba;
}
.theme-dark .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: white;
}
.theme-dark .mat-radio-button.mat-primary .mat-radio-inner-circle,
.theme-dark .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-dark .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .theme-dark .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: white;
}
.theme-dark .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #252f3f;
}
.theme-dark .mat-radio-button.mat-accent .mat-radio-inner-circle,
.theme-dark .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-dark .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .theme-dark .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #252f3f;
}
.theme-dark .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #9b1c1c;
}
.theme-dark .mat-radio-button.mat-warn .mat-radio-inner-circle,
.theme-dark .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-dark .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .theme-dark .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #9b1c1c;
}
.theme-dark .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: #475569;
}
.theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: #475569;
}
.theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: #475569;
}
.theme-dark .mat-radio-button .mat-ripple-element {
  background-color: white;
}
.theme-dark .mat-select-value {
  color: white;
}
.theme-dark .mat-select-placeholder {
  color: rgba(151, 166, 186, 0.5);
}
.theme-dark .mat-select-disabled .mat-select-value {
  color: #475569;
}
.theme-dark .mat-select-arrow {
  color: #97a6ba;
}
.theme-dark .mat-select-panel {
  background: #27303f;
}
.theme-dark .mat-select-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: white;
}
.theme-dark .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #252f3f;
}
.theme-dark .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #9b1c1c;
}
.theme-dark .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #9b1c1c;
}
.theme-dark .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: #475569;
}
.theme-dark .mat-drawer-container {
  background-color: #1a202e;
  color: white;
}
.theme-dark .mat-drawer {
  background-color: #27303f;
  color: white;
}
.theme-dark .mat-drawer.mat-drawer-push {
  background-color: #27303f;
}
.theme-dark .mat-drawer:not(.mat-drawer-side) {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-drawer-side {
  border-right: solid 1px rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-drawer-side.mat-drawer-end {
  border-left: solid 1px rgba(241, 245, 249, 0.12);
  border-right: none;
}
.theme-dark [dir=rtl] .mat-drawer-side {
  border-left: solid 1px rgba(241, 245, 249, 0.12);
  border-right: none;
}
.theme-dark [dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(216, 207, 192, 0.6);
}
.theme-dark .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #252f3f;
}
.theme-dark .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(37, 47, 63, 0.54);
}
.theme-dark .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #252f3f;
}
.theme-dark .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: white;
}
.theme-dark .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(255, 255, 255, 0.54);
}
.theme-dark .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: white;
}
.theme-dark .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #9b1c1c;
}
.theme-dark .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(155, 28, 28, 0.54);
}
.theme-dark .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #9b1c1c;
}
.theme-dark .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: white;
}
.theme-dark .mat-slide-toggle-thumb {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  background-color: #bdbdbd;
}
.theme-dark .mat-slide-toggle-bar {
  background-color: #475569;
}
.theme-dark .mat-slider-track-background {
  background-color: #64748b;
}
.theme-dark .mat-primary .mat-slider-track-fill,
.theme-dark .mat-primary .mat-slider-thumb,
.theme-dark .mat-primary .mat-slider-thumb-label {
  background-color: white;
}
.theme-dark .mat-primary .mat-slider-thumb-label-text {
  color: #252f3f;
}
.theme-dark .mat-primary .mat-slider-focus-ring {
  background-color: rgba(255, 255, 255, 0.2);
}
.theme-dark .mat-accent .mat-slider-track-fill,
.theme-dark .mat-accent .mat-slider-thumb,
.theme-dark .mat-accent .mat-slider-thumb-label {
  background-color: #252f3f;
}
.theme-dark .mat-accent .mat-slider-thumb-label-text {
  color: #f9fafb;
}
.theme-dark .mat-accent .mat-slider-focus-ring {
  background-color: rgba(37, 47, 63, 0.2);
}
.theme-dark .mat-warn .mat-slider-track-fill,
.theme-dark .mat-warn .mat-slider-thumb,
.theme-dark .mat-warn .mat-slider-thumb-label {
  background-color: #9b1c1c;
}
.theme-dark .mat-warn .mat-slider-thumb-label-text {
  color: #fdf2f2;
}
.theme-dark .mat-warn .mat-slider-focus-ring {
  background-color: rgba(155, 28, 28, 0.2);
}
.theme-dark .mat-slider:hover .mat-slider-track-background,
.theme-dark .cdk-focused .mat-slider-track-background {
  background-color: #97a6ba;
}
.theme-dark .mat-slider-disabled .mat-slider-track-background,
.theme-dark .mat-slider-disabled .mat-slider-track-fill,
.theme-dark .mat-slider-disabled .mat-slider-thumb {
  background-color: #64748b;
}
.theme-dark .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: #64748b;
}
.theme-dark .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: white;
}
.theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: #64748b;
}
.theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: #64748b;
  background-color: transparent;
}
.theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: #97a6ba;
}
.theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: #64748b;
}
.theme-dark .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);
}
.theme-dark .mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);
}
.theme-dark .mat-step-header.cdk-keyboard-focused, .theme-dark .mat-step-header.cdk-program-focused, .theme-dark .mat-step-header:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
@media (hover: none) {
  .theme-dark .mat-step-header:hover {
    background: none;
  }
}
.theme-dark .mat-step-header .mat-step-label,
.theme-dark .mat-step-header .mat-step-optional {
  color: #97a6ba;
}
.theme-dark .mat-step-header .mat-step-icon {
  background-color: #97a6ba;
  color: #252f3f;
}
.theme-dark .mat-step-header .mat-step-icon-selected,
.theme-dark .mat-step-header .mat-step-icon-state-done,
.theme-dark .mat-step-header .mat-step-icon-state-edit {
  background-color: white;
  color: #252f3f;
}
.theme-dark .mat-step-header.mat-accent .mat-step-icon {
  color: #f9fafb;
}
.theme-dark .mat-step-header.mat-accent .mat-step-icon-selected,
.theme-dark .mat-step-header.mat-accent .mat-step-icon-state-done,
.theme-dark .mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #252f3f;
  color: #f9fafb;
}
.theme-dark .mat-step-header.mat-warn .mat-step-icon {
  color: #fdf2f2;
}
.theme-dark .mat-step-header.mat-warn .mat-step-icon-selected,
.theme-dark .mat-step-header.mat-warn .mat-step-icon-state-done,
.theme-dark .mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #9b1c1c;
  color: #fdf2f2;
}
.theme-dark .mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #9b1c1c;
}
.theme-dark .mat-step-header .mat-step-label.mat-step-label-active {
  color: white;
}
.theme-dark .mat-step-header .mat-step-label.mat-step-label-error {
  color: #9b1c1c;
}
.theme-dark .mat-stepper-horizontal, .theme-dark .mat-stepper-vertical {
  background-color: #27303f;
}
.theme-dark .mat-stepper-vertical-line::before {
  border-left-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-horizontal-stepper-header::before,
.theme-dark .mat-horizontal-stepper-header::after,
.theme-dark .mat-stepper-horizontal-line {
  border-top-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-sort-header-arrow {
  color: #97a6ba;
}
.theme-dark .mat-tab-nav-bar,
.theme-dark .mat-tab-header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .mat-tab-group-inverted-header .mat-tab-nav-bar,
.theme-dark .mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(241, 245, 249, 0.12);
  border-bottom: none;
}
.theme-dark .mat-tab-label, .theme-dark .mat-tab-link {
  color: white;
}
.theme-dark .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-link.mat-tab-disabled {
  color: #475569;
}
.theme-dark .mat-tab-header-pagination-chevron {
  border-color: white;
}
.theme-dark .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: #475569;
}
.theme-dark .mat-tab-group[class*=mat-background-] .mat-tab-header,
.theme-dark .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.theme-dark .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-tab-group.mat-primary .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: white;
}
.theme-dark .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: #252f3f;
}
.theme-dark .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(244, 245, 247, 0.3);
}
.theme-dark .mat-tab-group.mat-accent .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #252f3f;
}
.theme-dark .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: #f9fafb;
}
.theme-dark .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(253, 232, 232, 0.3);
}
.theme-dark .mat-tab-group.mat-warn .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #9b1c1c;
}
.theme-dark .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: #fdf2f2;
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-header, .theme-dark .mat-tab-group.mat-background-primary .mat-tab-links, .theme-dark .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: white;
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-label, .theme-dark .mat-tab-group.mat-background-primary .mat-tab-link, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: #252f3f;
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(37, 47, 63, 0.4);
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: #252f3f;
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(37, 47, 63, 0.4);
}
.theme-dark .mat-tab-group.mat-background-primary .mat-ripple-element, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(37, 47, 63, 0.12);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(244, 245, 247, 0.3);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-header, .theme-dark .mat-tab-group.mat-background-accent .mat-tab-links, .theme-dark .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #252f3f;
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-label, .theme-dark .mat-tab-group.mat-background-accent .mat-tab-link, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: #f9fafb;
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(249, 250, 251, 0.4);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: #f9fafb;
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(249, 250, 251, 0.4);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-ripple-element, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(249, 250, 251, 0.12);
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(253, 232, 232, 0.3);
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-header, .theme-dark .mat-tab-group.mat-background-warn .mat-tab-links, .theme-dark .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #9b1c1c;
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-label, .theme-dark .mat-tab-group.mat-background-warn .mat-tab-link, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: #fdf2f2;
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(253, 242, 242, 0.4);
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: #fdf2f2;
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(253, 242, 242, 0.4);
}
.theme-dark .mat-tab-group.mat-background-warn .mat-ripple-element, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(253, 242, 242, 0.12);
}
.theme-dark .mat-toolbar {
  background: #1a202e;
  color: white;
}
.theme-dark .mat-toolbar.mat-primary {
  background: white;
  color: #252f3f;
}
.theme-dark .mat-toolbar.mat-accent {
  background: #252f3f;
  color: #f9fafb;
}
.theme-dark .mat-toolbar.mat-warn {
  background: #9b1c1c;
  color: #fdf2f2;
}
.theme-dark .mat-toolbar .mat-form-field-underline,
.theme-dark .mat-toolbar .mat-form-field-ripple,
.theme-dark .mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.theme-dark .mat-toolbar .mat-form-field-label,
.theme-dark .mat-toolbar .mat-focused .mat-form-field-label,
.theme-dark .mat-toolbar .mat-select-value,
.theme-dark .mat-toolbar .mat-select-arrow,
.theme-dark .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.theme-dark .mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.theme-dark .mat-tooltip {
  background: rgba(100, 116, 139, 0.9);
}
.theme-dark .mat-tree {
  background: #27303f;
}
.theme-dark .mat-tree-node,
.theme-dark .mat-nested-tree-node {
  color: white;
}
.theme-dark .mat-snack-bar-container {
  color: rgba(0, 0, 0, 0.87);
  background: #fafafa;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-simple-snackbar-action {
  color: inherit;
}
.theme-dark .text-primary-100 {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary-100 {
  background: #FFFFFF !important;
}
.theme-dark .primary-100 {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary-100 .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary-100.text-secondary,
.theme-dark .primary-100 .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary-100.text-hint,
.theme-dark .primary-100 .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-100.text-disabled,
.theme-dark .primary-100 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-100.divider,
.theme-dark .primary-100 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary-100 {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary-100:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary-100:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary-100:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-primary-200 {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary-200 {
  background: #FFFFFF !important;
}
.theme-dark .primary-200 {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary-200 .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary-200.text-secondary,
.theme-dark .primary-200 .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary-200.text-hint,
.theme-dark .primary-200 .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-200.text-disabled,
.theme-dark .primary-200 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-200.divider,
.theme-dark .primary-200 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary-200 {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary-200:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary-200:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary-200:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-primary-300 {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary-300 {
  background: #FFFFFF !important;
}
.theme-dark .primary-300 {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary-300 .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary-300.text-secondary,
.theme-dark .primary-300 .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary-300.text-hint,
.theme-dark .primary-300 .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-300.text-disabled,
.theme-dark .primary-300 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-300.divider,
.theme-dark .primary-300 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary-300 {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary-300:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary-300:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary-300:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-primary-400 {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary-400 {
  background: #FFFFFF !important;
}
.theme-dark .primary-400 {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary-400 .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary-400.text-secondary,
.theme-dark .primary-400 .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary-400.text-hint,
.theme-dark .primary-400 .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-400.text-disabled,
.theme-dark .primary-400 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-400.divider,
.theme-dark .primary-400 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary-400 {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary-400:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary-400:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary-400:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-primary-500 {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary-500 {
  background: #FFFFFF !important;
}
.theme-dark .primary-500 {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary-500 .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary-500.text-secondary,
.theme-dark .primary-500 .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary-500.text-hint,
.theme-dark .primary-500 .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-500.text-disabled,
.theme-dark .primary-500 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-500.divider,
.theme-dark .primary-500 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary-500 {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary-500:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary-500:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary-500:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-primary {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary {
  background: #FFFFFF !important;
}
.theme-dark .primary {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary.text-secondary,
.theme-dark .primary .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary.text-hint,
.theme-dark .primary .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary.text-disabled,
.theme-dark .primary .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary.divider,
.theme-dark .primary .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-primary-600 {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary-600 {
  background: #FFFFFF !important;
}
.theme-dark .primary-600 {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary-600 .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary-600.text-secondary,
.theme-dark .primary-600 .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary-600.text-hint,
.theme-dark .primary-600 .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-600.text-disabled,
.theme-dark .primary-600 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-600.divider,
.theme-dark .primary-600 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary-600 {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary-600:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary-600:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary-600:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-primary-700 {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary-700 {
  background: #FFFFFF !important;
}
.theme-dark .primary-700 {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary-700 .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary-700.text-secondary,
.theme-dark .primary-700 .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary-700.text-hint,
.theme-dark .primary-700 .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-700.text-disabled,
.theme-dark .primary-700 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-700.divider,
.theme-dark .primary-700 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary-700 {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary-700:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary-700:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary-700:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-primary-800 {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary-800 {
  background: #FFFFFF !important;
}
.theme-dark .primary-800 {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary-800 .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary-800.text-secondary,
.theme-dark .primary-800 .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary-800.text-hint,
.theme-dark .primary-800 .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-800.text-disabled,
.theme-dark .primary-800 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-800.divider,
.theme-dark .primary-800 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary-800 {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary-800:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary-800:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary-800:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-primary-900 {
  color: #FFFFFF !important;
}
.theme-dark .bg-primary-900 {
  background: #FFFFFF !important;
}
.theme-dark .primary-900 {
  background: #FFFFFF !important;
  color: #252F3F !important;
}
.theme-dark .primary-900 .mat-icon {
  color: #252F3F !important;
}
.theme-dark .primary-900.text-secondary,
.theme-dark .primary-900 .text-secondary {
  color: rgba(37, 47, 63, 0.6) !important;
}
.theme-dark .primary-900.text-hint,
.theme-dark .primary-900 .text-hint {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-900.text-disabled,
.theme-dark .primary-900 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.theme-dark .primary-900.divider,
.theme-dark .primary-900 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.theme-dark .border-primary-900 {
  border-color: #FFFFFF !important;
}
.theme-dark .hover\:border-primary-900:hover {
  border-color: #FFFFFF !important;
}
.theme-dark .focus\:border-primary-900:focus {
  border-color: #FFFFFF !important;
}
.theme-dark .active\:border-primary-900:active {
  border-color: #FFFFFF !important;
}
.theme-dark .text-accent-100 {
  color: #F4F5F7 !important;
}
.theme-dark .bg-accent-100 {
  background: #F4F5F7 !important;
}
.theme-dark .accent-100 {
  background: #F4F5F7 !important;
  color: #161E2E !important;
}
.theme-dark .accent-100 .mat-icon {
  color: #161E2E !important;
}
.theme-dark .accent-100.text-secondary,
.theme-dark .accent-100 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-dark .accent-100.text-hint,
.theme-dark .accent-100 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-100.text-disabled,
.theme-dark .accent-100 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-100.divider,
.theme-dark .accent-100 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-dark .border-accent-100 {
  border-color: #F4F5F7 !important;
}
.theme-dark .hover\:border-accent-100:hover {
  border-color: #F4F5F7 !important;
}
.theme-dark .focus\:border-accent-100:focus {
  border-color: #F4F5F7 !important;
}
.theme-dark .active\:border-accent-100:active {
  border-color: #F4F5F7 !important;
}
.theme-dark .text-accent-200 {
  color: #E5E7EB !important;
}
.theme-dark .bg-accent-200 {
  background: #E5E7EB !important;
}
.theme-dark .accent-200 {
  background: #E5E7EB !important;
  color: #161E2E !important;
}
.theme-dark .accent-200 .mat-icon {
  color: #161E2E !important;
}
.theme-dark .accent-200.text-secondary,
.theme-dark .accent-200 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-dark .accent-200.text-hint,
.theme-dark .accent-200 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-200.text-disabled,
.theme-dark .accent-200 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-200.divider,
.theme-dark .accent-200 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-dark .border-accent-200 {
  border-color: #E5E7EB !important;
}
.theme-dark .hover\:border-accent-200:hover {
  border-color: #E5E7EB !important;
}
.theme-dark .focus\:border-accent-200:focus {
  border-color: #E5E7EB !important;
}
.theme-dark .active\:border-accent-200:active {
  border-color: #E5E7EB !important;
}
.theme-dark .text-accent-300 {
  color: #D2D6DC !important;
}
.theme-dark .bg-accent-300 {
  background: #D2D6DC !important;
}
.theme-dark .accent-300 {
  background: #D2D6DC !important;
  color: #161E2E !important;
}
.theme-dark .accent-300 .mat-icon {
  color: #161E2E !important;
}
.theme-dark .accent-300.text-secondary,
.theme-dark .accent-300 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-dark .accent-300.text-hint,
.theme-dark .accent-300 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-300.text-disabled,
.theme-dark .accent-300 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-300.divider,
.theme-dark .accent-300 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-dark .border-accent-300 {
  border-color: #D2D6DC !important;
}
.theme-dark .hover\:border-accent-300:hover {
  border-color: #D2D6DC !important;
}
.theme-dark .focus\:border-accent-300:focus {
  border-color: #D2D6DC !important;
}
.theme-dark .active\:border-accent-300:active {
  border-color: #D2D6DC !important;
}
.theme-dark .text-accent-400 {
  color: #9FA6B2 !important;
}
.theme-dark .bg-accent-400 {
  background: #9FA6B2 !important;
}
.theme-dark .accent-400 {
  background: #9FA6B2 !important;
  color: #161E2E !important;
}
.theme-dark .accent-400 .mat-icon {
  color: #161E2E !important;
}
.theme-dark .accent-400.text-secondary,
.theme-dark .accent-400 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-dark .accent-400.text-hint,
.theme-dark .accent-400 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-400.text-disabled,
.theme-dark .accent-400 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-400.divider,
.theme-dark .accent-400 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-dark .border-accent-400 {
  border-color: #9FA6B2 !important;
}
.theme-dark .hover\:border-accent-400:hover {
  border-color: #9FA6B2 !important;
}
.theme-dark .focus\:border-accent-400:focus {
  border-color: #9FA6B2 !important;
}
.theme-dark .active\:border-accent-400:active {
  border-color: #9FA6B2 !important;
}
.theme-dark .text-accent-500 {
  color: #6B7280 !important;
}
.theme-dark .bg-accent-500 {
  background: #6B7280 !important;
}
.theme-dark .accent-500 {
  background: #6B7280 !important;
  color: #161E2E !important;
}
.theme-dark .accent-500 .mat-icon {
  color: #161E2E !important;
}
.theme-dark .accent-500.text-secondary,
.theme-dark .accent-500 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-dark .accent-500.text-hint,
.theme-dark .accent-500 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-500.text-disabled,
.theme-dark .accent-500 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent-500.divider,
.theme-dark .accent-500 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-dark .border-accent-500 {
  border-color: #6B7280 !important;
}
.theme-dark .hover\:border-accent-500:hover {
  border-color: #6B7280 !important;
}
.theme-dark .focus\:border-accent-500:focus {
  border-color: #6B7280 !important;
}
.theme-dark .active\:border-accent-500:active {
  border-color: #6B7280 !important;
}
.theme-dark .text-accent {
  color: #6B7280 !important;
}
.theme-dark .bg-accent {
  background: #6B7280 !important;
}
.theme-dark .accent {
  background: #6B7280 !important;
  color: #161E2E !important;
}
.theme-dark .accent .mat-icon {
  color: #161E2E !important;
}
.theme-dark .accent.text-secondary,
.theme-dark .accent .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-dark .accent.text-hint,
.theme-dark .accent .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent.text-disabled,
.theme-dark .accent .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-dark .accent.divider,
.theme-dark .accent .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-dark .border-accent {
  border-color: #6B7280 !important;
}
.theme-dark .hover\:border-accent:hover {
  border-color: #6B7280 !important;
}
.theme-dark .focus\:border-accent:focus {
  border-color: #6B7280 !important;
}
.theme-dark .active\:border-accent:active {
  border-color: #6B7280 !important;
}
.theme-dark .text-accent-600 {
  color: #4B5563 !important;
}
.theme-dark .bg-accent-600 {
  background: #4B5563 !important;
}
.theme-dark .accent-600 {
  background: #4B5563 !important;
  color: #F9FAFB !important;
}
.theme-dark .accent-600 .mat-icon {
  color: #F9FAFB !important;
}
.theme-dark .accent-600.text-secondary,
.theme-dark .accent-600 .text-secondary {
  color: rgba(249, 250, 251, 0.6) !important;
}
.theme-dark .accent-600.text-hint,
.theme-dark .accent-600 .text-hint {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-dark .accent-600.text-disabled,
.theme-dark .accent-600 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-dark .accent-600.divider,
.theme-dark .accent-600 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.theme-dark .border-accent-600 {
  border-color: #4B5563 !important;
}
.theme-dark .hover\:border-accent-600:hover {
  border-color: #4B5563 !important;
}
.theme-dark .focus\:border-accent-600:focus {
  border-color: #4B5563 !important;
}
.theme-dark .active\:border-accent-600:active {
  border-color: #4B5563 !important;
}
.theme-dark .text-accent-700 {
  color: #374151 !important;
}
.theme-dark .bg-accent-700 {
  background: #374151 !important;
}
.theme-dark .accent-700 {
  background: #374151 !important;
  color: #F9FAFB !important;
}
.theme-dark .accent-700 .mat-icon {
  color: #F9FAFB !important;
}
.theme-dark .accent-700.text-secondary,
.theme-dark .accent-700 .text-secondary {
  color: rgba(249, 250, 251, 0.6) !important;
}
.theme-dark .accent-700.text-hint,
.theme-dark .accent-700 .text-hint {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-dark .accent-700.text-disabled,
.theme-dark .accent-700 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-dark .accent-700.divider,
.theme-dark .accent-700 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.theme-dark .border-accent-700 {
  border-color: #374151 !important;
}
.theme-dark .hover\:border-accent-700:hover {
  border-color: #374151 !important;
}
.theme-dark .focus\:border-accent-700:focus {
  border-color: #374151 !important;
}
.theme-dark .active\:border-accent-700:active {
  border-color: #374151 !important;
}
.theme-dark .text-accent-800 {
  color: #252F3F !important;
}
.theme-dark .bg-accent-800 {
  background: #252F3F !important;
}
.theme-dark .accent-800 {
  background: #252F3F !important;
  color: #F9FAFB !important;
}
.theme-dark .accent-800 .mat-icon {
  color: #F9FAFB !important;
}
.theme-dark .accent-800.text-secondary,
.theme-dark .accent-800 .text-secondary {
  color: rgba(249, 250, 251, 0.6) !important;
}
.theme-dark .accent-800.text-hint,
.theme-dark .accent-800 .text-hint {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-dark .accent-800.text-disabled,
.theme-dark .accent-800 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-dark .accent-800.divider,
.theme-dark .accent-800 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.theme-dark .border-accent-800 {
  border-color: #252F3F !important;
}
.theme-dark .hover\:border-accent-800:hover {
  border-color: #252F3F !important;
}
.theme-dark .focus\:border-accent-800:focus {
  border-color: #252F3F !important;
}
.theme-dark .active\:border-accent-800:active {
  border-color: #252F3F !important;
}
.theme-dark .text-accent-900 {
  color: #161E2E !important;
}
.theme-dark .bg-accent-900 {
  background: #161E2E !important;
}
.theme-dark .accent-900 {
  background: #161E2E !important;
  color: #F9FAFB !important;
}
.theme-dark .accent-900 .mat-icon {
  color: #F9FAFB !important;
}
.theme-dark .accent-900.text-secondary,
.theme-dark .accent-900 .text-secondary {
  color: rgba(249, 250, 251, 0.6) !important;
}
.theme-dark .accent-900.text-hint,
.theme-dark .accent-900 .text-hint {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-dark .accent-900.text-disabled,
.theme-dark .accent-900 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-dark .accent-900.divider,
.theme-dark .accent-900 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.theme-dark .border-accent-900 {
  border-color: #161E2E !important;
}
.theme-dark .hover\:border-accent-900:hover {
  border-color: #161E2E !important;
}
.theme-dark .focus\:border-accent-900:focus {
  border-color: #161E2E !important;
}
.theme-dark .active\:border-accent-900:active {
  border-color: #161E2E !important;
}
.theme-dark .text-warn-100 {
  color: #FDE8E8 !important;
}
.theme-dark .bg-warn-100 {
  background: #FDE8E8 !important;
}
.theme-dark .warn-100 {
  background: #FDE8E8 !important;
  color: #771D1D !important;
}
.theme-dark .warn-100 .mat-icon {
  color: #771D1D !important;
}
.theme-dark .warn-100.text-secondary,
.theme-dark .warn-100 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-dark .warn-100.text-hint,
.theme-dark .warn-100 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-100.text-disabled,
.theme-dark .warn-100 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-100.divider,
.theme-dark .warn-100 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-dark .border-warn-100 {
  border-color: #FDE8E8 !important;
}
.theme-dark .hover\:border-warn-100:hover {
  border-color: #FDE8E8 !important;
}
.theme-dark .focus\:border-warn-100:focus {
  border-color: #FDE8E8 !important;
}
.theme-dark .active\:border-warn-100:active {
  border-color: #FDE8E8 !important;
}
.theme-dark .text-warn-200 {
  color: #FBD5D5 !important;
}
.theme-dark .bg-warn-200 {
  background: #FBD5D5 !important;
}
.theme-dark .warn-200 {
  background: #FBD5D5 !important;
  color: #771D1D !important;
}
.theme-dark .warn-200 .mat-icon {
  color: #771D1D !important;
}
.theme-dark .warn-200.text-secondary,
.theme-dark .warn-200 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-dark .warn-200.text-hint,
.theme-dark .warn-200 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-200.text-disabled,
.theme-dark .warn-200 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-200.divider,
.theme-dark .warn-200 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-dark .border-warn-200 {
  border-color: #FBD5D5 !important;
}
.theme-dark .hover\:border-warn-200:hover {
  border-color: #FBD5D5 !important;
}
.theme-dark .focus\:border-warn-200:focus {
  border-color: #FBD5D5 !important;
}
.theme-dark .active\:border-warn-200:active {
  border-color: #FBD5D5 !important;
}
.theme-dark .text-warn-300 {
  color: #F8B4B4 !important;
}
.theme-dark .bg-warn-300 {
  background: #F8B4B4 !important;
}
.theme-dark .warn-300 {
  background: #F8B4B4 !important;
  color: #771D1D !important;
}
.theme-dark .warn-300 .mat-icon {
  color: #771D1D !important;
}
.theme-dark .warn-300.text-secondary,
.theme-dark .warn-300 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-dark .warn-300.text-hint,
.theme-dark .warn-300 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-300.text-disabled,
.theme-dark .warn-300 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-300.divider,
.theme-dark .warn-300 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-dark .border-warn-300 {
  border-color: #F8B4B4 !important;
}
.theme-dark .hover\:border-warn-300:hover {
  border-color: #F8B4B4 !important;
}
.theme-dark .focus\:border-warn-300:focus {
  border-color: #F8B4B4 !important;
}
.theme-dark .active\:border-warn-300:active {
  border-color: #F8B4B4 !important;
}
.theme-dark .text-warn-400 {
  color: #F98080 !important;
}
.theme-dark .bg-warn-400 {
  background: #F98080 !important;
}
.theme-dark .warn-400 {
  background: #F98080 !important;
  color: #771D1D !important;
}
.theme-dark .warn-400 .mat-icon {
  color: #771D1D !important;
}
.theme-dark .warn-400.text-secondary,
.theme-dark .warn-400 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-dark .warn-400.text-hint,
.theme-dark .warn-400 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-400.text-disabled,
.theme-dark .warn-400 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-400.divider,
.theme-dark .warn-400 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-dark .border-warn-400 {
  border-color: #F98080 !important;
}
.theme-dark .hover\:border-warn-400:hover {
  border-color: #F98080 !important;
}
.theme-dark .focus\:border-warn-400:focus {
  border-color: #F98080 !important;
}
.theme-dark .active\:border-warn-400:active {
  border-color: #F98080 !important;
}
.theme-dark .text-warn-500 {
  color: #F05252 !important;
}
.theme-dark .bg-warn-500 {
  background: #F05252 !important;
}
.theme-dark .warn-500 {
  background: #F05252 !important;
  color: #771D1D !important;
}
.theme-dark .warn-500 .mat-icon {
  color: #771D1D !important;
}
.theme-dark .warn-500.text-secondary,
.theme-dark .warn-500 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-dark .warn-500.text-hint,
.theme-dark .warn-500 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-500.text-disabled,
.theme-dark .warn-500 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn-500.divider,
.theme-dark .warn-500 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-dark .border-warn-500 {
  border-color: #F05252 !important;
}
.theme-dark .hover\:border-warn-500:hover {
  border-color: #F05252 !important;
}
.theme-dark .focus\:border-warn-500:focus {
  border-color: #F05252 !important;
}
.theme-dark .active\:border-warn-500:active {
  border-color: #F05252 !important;
}
.theme-dark .text-warn {
  color: #F05252 !important;
}
.theme-dark .bg-warn {
  background: #F05252 !important;
}
.theme-dark .warn {
  background: #F05252 !important;
  color: #771D1D !important;
}
.theme-dark .warn .mat-icon {
  color: #771D1D !important;
}
.theme-dark .warn.text-secondary,
.theme-dark .warn .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-dark .warn.text-hint,
.theme-dark .warn .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn.text-disabled,
.theme-dark .warn .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-dark .warn.divider,
.theme-dark .warn .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-dark .border-warn {
  border-color: #F05252 !important;
}
.theme-dark .hover\:border-warn:hover {
  border-color: #F05252 !important;
}
.theme-dark .focus\:border-warn:focus {
  border-color: #F05252 !important;
}
.theme-dark .active\:border-warn:active {
  border-color: #F05252 !important;
}
.theme-dark .text-warn-600 {
  color: #E02424 !important;
}
.theme-dark .bg-warn-600 {
  background: #E02424 !important;
}
.theme-dark .warn-600 {
  background: #E02424 !important;
  color: #FDF2F2 !important;
}
.theme-dark .warn-600 .mat-icon {
  color: #FDF2F2 !important;
}
.theme-dark .warn-600.text-secondary,
.theme-dark .warn-600 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.theme-dark .warn-600.text-hint,
.theme-dark .warn-600 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-dark .warn-600.text-disabled,
.theme-dark .warn-600 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-dark .warn-600.divider,
.theme-dark .warn-600 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.theme-dark .border-warn-600 {
  border-color: #E02424 !important;
}
.theme-dark .hover\:border-warn-600:hover {
  border-color: #E02424 !important;
}
.theme-dark .focus\:border-warn-600:focus {
  border-color: #E02424 !important;
}
.theme-dark .active\:border-warn-600:active {
  border-color: #E02424 !important;
}
.theme-dark .text-warn-700 {
  color: #C81E1E !important;
}
.theme-dark .bg-warn-700 {
  background: #C81E1E !important;
}
.theme-dark .warn-700 {
  background: #C81E1E !important;
  color: #FDF2F2 !important;
}
.theme-dark .warn-700 .mat-icon {
  color: #FDF2F2 !important;
}
.theme-dark .warn-700.text-secondary,
.theme-dark .warn-700 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.theme-dark .warn-700.text-hint,
.theme-dark .warn-700 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-dark .warn-700.text-disabled,
.theme-dark .warn-700 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-dark .warn-700.divider,
.theme-dark .warn-700 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.theme-dark .border-warn-700 {
  border-color: #C81E1E !important;
}
.theme-dark .hover\:border-warn-700:hover {
  border-color: #C81E1E !important;
}
.theme-dark .focus\:border-warn-700:focus {
  border-color: #C81E1E !important;
}
.theme-dark .active\:border-warn-700:active {
  border-color: #C81E1E !important;
}
.theme-dark .text-warn-800 {
  color: #9B1C1C !important;
}
.theme-dark .bg-warn-800 {
  background: #9B1C1C !important;
}
.theme-dark .warn-800 {
  background: #9B1C1C !important;
  color: #FDF2F2 !important;
}
.theme-dark .warn-800 .mat-icon {
  color: #FDF2F2 !important;
}
.theme-dark .warn-800.text-secondary,
.theme-dark .warn-800 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.theme-dark .warn-800.text-hint,
.theme-dark .warn-800 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-dark .warn-800.text-disabled,
.theme-dark .warn-800 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-dark .warn-800.divider,
.theme-dark .warn-800 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.theme-dark .border-warn-800 {
  border-color: #9B1C1C !important;
}
.theme-dark .hover\:border-warn-800:hover {
  border-color: #9B1C1C !important;
}
.theme-dark .focus\:border-warn-800:focus {
  border-color: #9B1C1C !important;
}
.theme-dark .active\:border-warn-800:active {
  border-color: #9B1C1C !important;
}
.theme-dark .text-warn-900 {
  color: #771D1D !important;
}
.theme-dark .bg-warn-900 {
  background: #771D1D !important;
}
.theme-dark .warn-900 {
  background: #771D1D !important;
  color: #FDF2F2 !important;
}
.theme-dark .warn-900 .mat-icon {
  color: #FDF2F2 !important;
}
.theme-dark .warn-900.text-secondary,
.theme-dark .warn-900 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.theme-dark .warn-900.text-hint,
.theme-dark .warn-900 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-dark .warn-900.text-disabled,
.theme-dark .warn-900 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-dark .warn-900.divider,
.theme-dark .warn-900 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.theme-dark .border-warn-900 {
  border-color: #771D1D !important;
}
.theme-dark .hover\:border-warn-900:hover {
  border-color: #771D1D !important;
}
.theme-dark .focus\:border-warn-900:focus {
  border-color: #771D1D !important;
}
.theme-dark .active\:border-warn-900:active {
  border-color: #771D1D !important;
}
.theme-light .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-light .mat-option {
  color: #27303f;
}
.theme-light .mat-option:hover:not(.mat-option-disabled), .theme-light .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(151, 166, 186, 0.12);
}
.theme-light .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(151, 166, 186, 0.12);
}
.theme-light .mat-option.mat-active {
  background: rgba(151, 166, 186, 0.12);
  color: #27303f;
}
.theme-light .mat-option.mat-option-disabled {
  color: #97a6ba;
}
.theme-light .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: black;
}
.theme-light .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #252f3f;
}
.theme-light .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #9b1c1c;
}
.theme-light .mat-optgroup-label {
  color: #64748b;
}
.theme-light .mat-optgroup-disabled .mat-optgroup-label {
  color: #97a6ba;
}
.theme-light .mat-pseudo-checkbox {
  color: #64748b;
}
.theme-light .mat-pseudo-checkbox::after {
  color: #f1f5f9;
}
.theme-light .mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}
.theme-light .mat-primary .mat-pseudo-checkbox-checked,
.theme-light .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: black;
}
.theme-light .mat-pseudo-checkbox-checked,
.theme-light .mat-pseudo-checkbox-indeterminate,
.theme-light .mat-accent .mat-pseudo-checkbox-checked,
.theme-light .mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #252f3f;
}
.theme-light .mat-warn .mat-pseudo-checkbox-checked,
.theme-light .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #9b1c1c;
}
.theme-light .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.theme-light .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}
.theme-light .mat-app-background, .theme-light.mat-app-background {
  background-color: #f1f5f9;
  color: #27303f;
}
.theme-light .mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.mat-theme-loaded-marker {
  display: none;
}
.theme-light .mat-autocomplete-panel {
  background: white;
  color: #27303f;
}
.theme-light .mat-autocomplete-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: white;
}
.theme-light .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: #27303f;
}
.theme-light .mat-badge-content {
  color: white;
  background: black;
}
.cdk-high-contrast-active .theme-light .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.theme-light .mat-badge-accent .mat-badge-content {
  background: #252f3f;
  color: #f9fafb;
}
.theme-light .mat-badge-warn .mat-badge-content {
  color: #fdf2f2;
  background: #9b1c1c;
}
.theme-light .mat-badge {
  position: relative;
}
.theme-light .mat-badge-hidden .mat-badge-content {
  display: none;
}
.theme-light .mat-badge-disabled .mat-badge-content {
  background: #97a6ba;
  color: #97a6ba;
}
.theme-light .mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
.theme-light .ng-animate-disabled .mat-badge-content,
.theme-light .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.theme-light .mat-badge-content.mat-badge-active {
  transform: none;
}
.theme-light .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.theme-light .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.theme-light .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.theme-light .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .theme-light .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.theme-light .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .theme-light .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.theme-light .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .theme-light .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.theme-light .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .theme-light .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.theme-light .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.theme-light .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.theme-light .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.theme-light .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .theme-light .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.theme-light .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .theme-light .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.theme-light .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.theme-light .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.theme-light .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.theme-light .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .theme-light .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.theme-light .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .theme-light .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.theme-light .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .theme-light .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.theme-light .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .theme-light .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.theme-light .mat-bottom-sheet-container {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  background: white;
  color: #27303f;
}
.theme-light .mat-button, .theme-light .mat-icon-button, .theme-light .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.theme-light .mat-button.mat-primary, .theme-light .mat-icon-button.mat-primary, .theme-light .mat-stroked-button.mat-primary {
  color: black;
}
.theme-light .mat-button.mat-accent, .theme-light .mat-icon-button.mat-accent, .theme-light .mat-stroked-button.mat-accent {
  color: #252f3f;
}
.theme-light .mat-button.mat-warn, .theme-light .mat-icon-button.mat-warn, .theme-light .mat-stroked-button.mat-warn {
  color: #9b1c1c;
}
.theme-light .mat-button.mat-primary.mat-button-disabled, .theme-light .mat-button.mat-accent.mat-button-disabled, .theme-light .mat-button.mat-warn.mat-button-disabled, .theme-light .mat-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-icon-button.mat-primary.mat-button-disabled, .theme-light .mat-icon-button.mat-accent.mat-button-disabled, .theme-light .mat-icon-button.mat-warn.mat-button-disabled, .theme-light .mat-icon-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-stroked-button.mat-primary.mat-button-disabled, .theme-light .mat-stroked-button.mat-accent.mat-button-disabled, .theme-light .mat-stroked-button.mat-warn.mat-button-disabled, .theme-light .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: #97a6ba;
}
.theme-light .mat-button.mat-primary .mat-button-focus-overlay, .theme-light .mat-icon-button.mat-primary .mat-button-focus-overlay, .theme-light .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: black;
}
.theme-light .mat-button.mat-accent .mat-button-focus-overlay, .theme-light .mat-icon-button.mat-accent .mat-button-focus-overlay, .theme-light .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #252f3f;
}
.theme-light .mat-button.mat-warn .mat-button-focus-overlay, .theme-light .mat-icon-button.mat-warn .mat-button-focus-overlay, .theme-light .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #9b1c1c;
}
.theme-light .mat-button.mat-button-disabled .mat-button-focus-overlay, .theme-light .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .theme-light .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.theme-light .mat-button .mat-ripple-element, .theme-light .mat-icon-button .mat-ripple-element, .theme-light .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.theme-light .mat-button-focus-overlay {
  background: black;
}
.theme-light .mat-stroked-button:not(.mat-button-disabled) {
  border-color: #e2e8f0;
}
.theme-light .mat-flat-button, .theme-light .mat-raised-button, .theme-light .mat-fab, .theme-light .mat-mini-fab {
  color: #27303f;
  background-color: white;
}
.theme-light .mat-flat-button.mat-primary, .theme-light .mat-raised-button.mat-primary, .theme-light .mat-fab.mat-primary, .theme-light .mat-mini-fab.mat-primary {
  color: white;
}
.theme-light .mat-flat-button.mat-accent, .theme-light .mat-raised-button.mat-accent, .theme-light .mat-fab.mat-accent, .theme-light .mat-mini-fab.mat-accent {
  color: #f9fafb;
}
.theme-light .mat-flat-button.mat-warn, .theme-light .mat-raised-button.mat-warn, .theme-light .mat-fab.mat-warn, .theme-light .mat-mini-fab.mat-warn {
  color: #fdf2f2;
}
.theme-light .mat-flat-button.mat-primary.mat-button-disabled, .theme-light .mat-flat-button.mat-accent.mat-button-disabled, .theme-light .mat-flat-button.mat-warn.mat-button-disabled, .theme-light .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-raised-button.mat-primary.mat-button-disabled, .theme-light .mat-raised-button.mat-accent.mat-button-disabled, .theme-light .mat-raised-button.mat-warn.mat-button-disabled, .theme-light .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-fab.mat-primary.mat-button-disabled, .theme-light .mat-fab.mat-accent.mat-button-disabled, .theme-light .mat-fab.mat-warn.mat-button-disabled, .theme-light .mat-fab.mat-button-disabled.mat-button-disabled, .theme-light .mat-mini-fab.mat-primary.mat-button-disabled, .theme-light .mat-mini-fab.mat-accent.mat-button-disabled, .theme-light .mat-mini-fab.mat-warn.mat-button-disabled, .theme-light .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: #97a6ba;
}
.theme-light .mat-flat-button.mat-primary, .theme-light .mat-raised-button.mat-primary, .theme-light .mat-fab.mat-primary, .theme-light .mat-mini-fab.mat-primary {
  background-color: black;
}
.theme-light .mat-flat-button.mat-accent, .theme-light .mat-raised-button.mat-accent, .theme-light .mat-fab.mat-accent, .theme-light .mat-mini-fab.mat-accent {
  background-color: #252f3f;
}
.theme-light .mat-flat-button.mat-warn, .theme-light .mat-raised-button.mat-warn, .theme-light .mat-fab.mat-warn, .theme-light .mat-mini-fab.mat-warn {
  background-color: #9b1c1c;
}
.theme-light .mat-flat-button.mat-primary.mat-button-disabled, .theme-light .mat-flat-button.mat-accent.mat-button-disabled, .theme-light .mat-flat-button.mat-warn.mat-button-disabled, .theme-light .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-raised-button.mat-primary.mat-button-disabled, .theme-light .mat-raised-button.mat-accent.mat-button-disabled, .theme-light .mat-raised-button.mat-warn.mat-button-disabled, .theme-light .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-fab.mat-primary.mat-button-disabled, .theme-light .mat-fab.mat-accent.mat-button-disabled, .theme-light .mat-fab.mat-warn.mat-button-disabled, .theme-light .mat-fab.mat-button-disabled.mat-button-disabled, .theme-light .mat-mini-fab.mat-primary.mat-button-disabled, .theme-light .mat-mini-fab.mat-accent.mat-button-disabled, .theme-light .mat-mini-fab.mat-warn.mat-button-disabled, .theme-light .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(151, 166, 186, 0.38);
}
.theme-light .mat-flat-button.mat-primary .mat-ripple-element, .theme-light .mat-raised-button.mat-primary .mat-ripple-element, .theme-light .mat-fab.mat-primary .mat-ripple-element, .theme-light .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-light .mat-flat-button.mat-accent .mat-ripple-element, .theme-light .mat-raised-button.mat-accent .mat-ripple-element, .theme-light .mat-fab.mat-accent .mat-ripple-element, .theme-light .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(249, 250, 251, 0.1);
}
.theme-light .mat-flat-button.mat-warn .mat-ripple-element, .theme-light .mat-raised-button.mat-warn .mat-ripple-element, .theme-light .mat-fab.mat-warn .mat-ripple-element, .theme-light .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(253, 242, 242, 0.1);
}
.theme-light .mat-stroked-button:not([class*=mat-elevation-z]), .theme-light .mat-flat-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-raised-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-fab:not([class*=mat-elevation-z]), .theme-light .mat-mini-fab:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .theme-light .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .theme-light .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-button-toggle-standalone,
.theme-light .mat-button-toggle-group {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-light .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.theme-light .mat-button-toggle {
  color: #97a6ba;
}
.theme-light .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: #64748b;
}
.theme-light .mat-button-toggle-appearance-standard {
  color: #27303f;
  background: white;
}
.theme-light .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: #64748b;
}
.theme-light .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px #e2e8f0;
}
.theme-light [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px #e2e8f0;
}
.theme-light .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: none;
  border-top: solid 1px #e2e8f0;
}
.theme-light .mat-button-toggle-checked {
  background-color: #e2e8f0;
  color: #64748b;
}
.theme-light .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: #27303f;
}
.theme-light .mat-button-toggle-disabled {
  color: #97a6ba;
  background-color: #cfd8e3;
}
.theme-light .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: white;
}
.theme-light .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #e2e8f0;
}
.theme-light .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-light .mat-button-toggle-group-appearance-standard {
  border: solid 1px #e2e8f0;
}
.theme-light .mat-card {
  background: white;
  color: #27303f;
}
.theme-light .mat-card:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-card.mat-card-flat:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-card-subtitle {
  color: #64748b;
}
.theme-light .mat-checkbox-frame {
  border-color: #64748b;
}
.theme-light .mat-checkbox-checkmark {
  fill: #f1f5f9;
}
.theme-light .mat-checkbox-checkmark-path {
  stroke: #f1f5f9 !important;
}
.theme-light .mat-checkbox-mixedmark {
  background-color: #f1f5f9;
}
.theme-light .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .theme-light .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: black;
}
.theme-light .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .theme-light .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #252f3f;
}
.theme-light .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .theme-light .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #9b1c1c;
}
.theme-light .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .theme-light .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0;
}
.theme-light .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0;
}
.theme-light .mat-checkbox-disabled .mat-checkbox-label {
  color: #64748b;
}
.theme-light .mat-checkbox .mat-ripple-element {
  background-color: black;
}
.theme-light .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.theme-light .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: black;
}
.theme-light .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.theme-light .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #252f3f;
}
.theme-light .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.theme-light .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #9b1c1c;
}
.theme-light .mat-chip.mat-standard-chip {
  background-color: #e2e8f0;
  color: #27303f;
}
.theme-light .mat-chip.mat-standard-chip .mat-chip-remove {
  color: #27303f;
  opacity: 0.4;
}
.theme-light .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.theme-light .mat-chip.mat-standard-chip::after {
  background: black;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: black;
  color: white;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #9b1c1c;
  color: #fdf2f2;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: #fdf2f2;
  opacity: 0.4;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(253, 242, 242, 0.1);
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #252f3f;
  color: #f9fafb;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: #f9fafb;
  opacity: 0.4;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(249, 250, 251, 0.1);
}
.theme-light .mat-table {
  background: white;
}
.theme-light .mat-table thead, .theme-light .mat-table tbody, .theme-light .mat-table tfoot,
.theme-light mat-header-row, .theme-light mat-row, .theme-light mat-footer-row,
.theme-light [mat-header-row], .theme-light [mat-row], .theme-light [mat-footer-row],
.theme-light .mat-table-sticky {
  background: inherit;
}
.theme-light mat-row, .theme-light mat-header-row, .theme-light mat-footer-row,
.theme-light th.mat-header-cell, .theme-light td.mat-cell, .theme-light td.mat-footer-cell {
  border-bottom-color: #e2e8f0;
}
.theme-light .mat-header-cell {
  color: #64748b;
}
.theme-light .mat-cell, .theme-light .mat-footer-cell {
  color: #27303f;
}
.theme-light .mat-calendar-arrow {
  border-top-color: #64748b;
}
.theme-light .mat-datepicker-toggle,
.theme-light .mat-datepicker-content .mat-calendar-next-button,
.theme-light .mat-datepicker-content .mat-calendar-previous-button {
  color: #64748b;
}
.theme-light .mat-calendar-table-header {
  color: #97a6ba;
}
.theme-light .mat-calendar-table-header-divider::after {
  background: #e2e8f0;
}
.theme-light .mat-calendar-body-label {
  color: #64748b;
}
.theme-light .mat-calendar-body-cell-content,
.theme-light .mat-date-range-input-separator {
  color: #27303f;
  border-color: transparent;
}
.theme-light .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: #97a6ba;
}
.theme-light .mat-form-field-disabled .mat-date-range-input-separator {
  color: #97a6ba;
}
.theme-light .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.theme-light .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.theme-light .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(151, 166, 186, 0.12);
}
.theme-light .mat-calendar-body-in-preview {
  color: #e2e8f0;
}
.theme-light .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: #97a6ba;
}
.theme-light .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(151, 166, 186, 0.8);
}
.theme-light .mat-calendar-body-in-range::before {
  background: rgba(0, 0, 0, 0.2);
}
.theme-light .mat-calendar-body-comparison-identical,
.theme-light .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-light .mat-calendar-body-comparison-bridge-start::before,
.theme-light [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-calendar-body-comparison-bridge-end::before,
.theme-light [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-light .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-light .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-light .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-light .mat-calendar-body-selected {
  background-color: black;
  color: white;
}
.theme-light .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(0, 0, 0, 0.4);
}
.theme-light .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.theme-light .mat-datepicker-content {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  background-color: white;
  color: #27303f;
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(37, 47, 63, 0.2);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.theme-light .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(37, 47, 63, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.theme-light .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(37, 47, 63, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #252f3f;
  color: #f9fafb;
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(37, 47, 63, 0.4);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #f9fafb;
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(155, 28, 28, 0.2);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.theme-light .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(155, 28, 28, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.theme-light .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(155, 28, 28, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #9b1c1c;
  color: #fdf2f2;
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(155, 28, 28, 0.4);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fdf2f2;
}
.theme-light .mat-datepicker-content-touch {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-datepicker-toggle-active {
  color: black;
}
.theme-light .mat-datepicker-toggle-active.mat-accent {
  color: #252f3f;
}
.theme-light .mat-datepicker-toggle-active.mat-warn {
  color: #9b1c1c;
}
.theme-light .mat-date-range-input-inner[disabled] {
  color: #97a6ba;
}
.theme-light .mat-dialog-container {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  background: white;
  color: #27303f;
}
.theme-light .mat-divider {
  border-top-color: #e2e8f0;
}
.theme-light .mat-divider-vertical {
  border-right-color: #e2e8f0;
}
.theme-light .mat-expansion-panel {
  background: white;
  color: #27303f;
}
.theme-light .mat-expansion-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-action-row {
  border-top-color: #e2e8f0;
}
.theme-light .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .theme-light .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .theme-light .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(151, 166, 186, 0.12);
}
@media (hover: none) {
  .theme-light .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: white;
  }
}
.theme-light .mat-expansion-panel-header-title {
  color: #27303f;
}
.theme-light .mat-expansion-panel-header-description,
.theme-light .mat-expansion-indicator::after {
  color: #64748b;
}
.theme-light .mat-expansion-panel-header[aria-disabled=true] {
  color: #97a6ba;
}
.theme-light .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.theme-light .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.theme-light .mat-form-field-label {
  color: rgba(100, 116, 139, 0.6);
}
.theme-light .mat-hint {
  color: rgba(100, 116, 139, 0.6);
}
.theme-light .mat-form-field.mat-focused .mat-form-field-label {
  color: black;
}
.theme-light .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #252f3f;
}
.theme-light .mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #9b1c1c;
}
.theme-light .mat-focused .mat-form-field-required-marker {
  color: #252f3f;
}
.theme-light .mat-form-field-ripple {
  background-color: rgba(226, 232, 240, 0.87);
}
.theme-light .mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: black;
}
.theme-light .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #252f3f;
}
.theme-light .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #9b1c1c;
}
.theme-light .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: black;
}
.theme-light .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #252f3f;
}
.theme-light .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #9b1c1c;
}
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #9b1c1c;
}
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #9b1c1c;
}
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #9b1c1c;
}
.theme-light .mat-error {
  color: #9b1c1c;
}
.theme-light .mat-form-field-appearance-legacy .mat-form-field-label {
  color: #64748b;
}
.theme-light .mat-form-field-appearance-legacy .mat-hint {
  color: #64748b;
}
.theme-light .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(226, 232, 240, 0.42);
}
.theme-light .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(226, 232, 240, 0.42) 0%, rgba(226, 232, 240, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-light .mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(226, 232, 240, 0.42);
}
.theme-light .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(226, 232, 240, 0.42) 0%, rgba(226, 232, 240, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-light .mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04);
}
.theme-light .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}
.theme-light .mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(226, 232, 240, 0.42);
}
.theme-light .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: #97a6ba;
}
.theme-light .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.theme-light .mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(226, 232, 240, 0.12);
}
.theme-light .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(226, 232, 240, 0.87);
}
.theme-light .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: black;
}
.theme-light .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #252f3f;
}
.theme-light .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #9b1c1c;
}
.theme-light .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #9b1c1c;
}
.theme-light .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: #97a6ba;
}
.theme-light .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(226, 232, 240, 0.06);
}
.theme-light .mat-icon.mat-primary {
  color: black;
}
.theme-light .mat-icon.mat-accent {
  color: #252f3f;
}
.theme-light .mat-icon.mat-warn {
  color: #9b1c1c;
}
.theme-light .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: #64748b;
}
.theme-light .mat-input-element:disabled,
.theme-light .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: #97a6ba;
}
.theme-light .mat-input-element {
  caret-color: black;
}
.theme-light .mat-input-element::-moz-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.theme-light .mat-input-element:-ms-input-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.theme-light .mat-input-element::-ms-input-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.theme-light .mat-input-element::placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.theme-light .mat-input-element::-moz-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.theme-light .mat-input-element::-webkit-input-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.theme-light .mat-input-element:-ms-input-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.theme-light .mat-form-field.mat-accent .mat-input-element {
  caret-color: #252f3f;
}
.theme-light .mat-form-field.mat-warn .mat-input-element,
.theme-light .mat-form-field-invalid .mat-input-element {
  caret-color: #9b1c1c;
}
.theme-light .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #9b1c1c;
}
.theme-light .mat-list-base .mat-list-item {
  color: #27303f;
}
.theme-light .mat-list-base .mat-list-option {
  color: #27303f;
}
.theme-light .mat-list-base .mat-subheader {
  color: #64748b;
}
.theme-light .mat-list-item-disabled {
  background-color: #cfd8e3;
}
.theme-light .mat-list-option:hover, .theme-light .mat-list-option:focus,
.theme-light .mat-nav-list .mat-list-item:hover,
.theme-light .mat-nav-list .mat-list-item:focus,
.theme-light .mat-action-list .mat-list-item:hover,
.theme-light .mat-action-list .mat-list-item:focus {
  background: rgba(151, 166, 186, 0.12);
}
.theme-light .mat-list-single-selected-option, .theme-light .mat-list-single-selected-option:hover, .theme-light .mat-list-single-selected-option:focus {
  background: rgba(151, 166, 186, 0.12);
}
.theme-light .mat-menu-panel {
  background: white;
}
.theme-light .mat-menu-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-menu-item {
  background: transparent;
  color: #27303f;
}
.theme-light .mat-menu-item[disabled], .theme-light .mat-menu-item[disabled]::after {
  color: #97a6ba;
}
.theme-light .mat-menu-item .mat-icon-no-color,
.theme-light .mat-menu-item-submenu-trigger::after {
  color: #64748b;
}
.theme-light .mat-menu-item:hover:not([disabled]),
.theme-light .mat-menu-item.cdk-program-focused:not([disabled]),
.theme-light .mat-menu-item.cdk-keyboard-focused:not([disabled]),
.theme-light .mat-menu-item-highlighted:not([disabled]) {
  background: rgba(151, 166, 186, 0.12);
}
.theme-light .mat-paginator {
  background: white;
}
.theme-light .mat-paginator,
.theme-light .mat-paginator-page-size .mat-select-trigger {
  color: #64748b;
}
.theme-light .mat-paginator-decrement,
.theme-light .mat-paginator-increment {
  border-top: 2px solid #64748b;
  border-right: 2px solid #64748b;
}
.theme-light .mat-paginator-first,
.theme-light .mat-paginator-last {
  border-top: 2px solid #64748b;
}
.theme-light .mat-icon-button[disabled] .mat-paginator-decrement,
.theme-light .mat-icon-button[disabled] .mat-paginator-increment,
.theme-light .mat-icon-button[disabled] .mat-paginator-first,
.theme-light .mat-icon-button[disabled] .mat-paginator-last {
  border-color: #97a6ba;
}
.theme-light .mat-progress-bar-background {
  fill: black;
}
.theme-light .mat-progress-bar-buffer {
  background-color: black;
}
.theme-light .mat-progress-bar-fill::after {
  background-color: black;
}
.theme-light .mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #f4f5f7;
}
.theme-light .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #f4f5f7;
}
.theme-light .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #252f3f;
}
.theme-light .mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #fde8e8;
}
.theme-light .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #fde8e8;
}
.theme-light .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #9b1c1c;
}
.theme-light .mat-progress-spinner circle, .theme-light .mat-spinner circle {
  stroke: black;
}
.theme-light .mat-progress-spinner.mat-accent circle, .theme-light .mat-spinner.mat-accent circle {
  stroke: #252f3f;
}
.theme-light .mat-progress-spinner.mat-warn circle, .theme-light .mat-spinner.mat-warn circle {
  stroke: #9b1c1c;
}
.theme-light .mat-radio-outer-circle {
  border-color: #64748b;
}
.theme-light .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: black;
}
.theme-light .mat-radio-button.mat-primary .mat-radio-inner-circle,
.theme-light .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-light .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .theme-light .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: black;
}
.theme-light .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #252f3f;
}
.theme-light .mat-radio-button.mat-accent .mat-radio-inner-circle,
.theme-light .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-light .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .theme-light .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #252f3f;
}
.theme-light .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #9b1c1c;
}
.theme-light .mat-radio-button.mat-warn .mat-radio-inner-circle,
.theme-light .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-light .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .theme-light .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #9b1c1c;
}
.theme-light .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.theme-light .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: #97a6ba;
}
.theme-light .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.theme-light .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: #97a6ba;
}
.theme-light .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: #97a6ba;
}
.theme-light .mat-radio-button .mat-ripple-element {
  background-color: black;
}
.theme-light .mat-select-value {
  color: #27303f;
}
.theme-light .mat-select-placeholder {
  color: rgba(100, 116, 139, 0.42);
}
.theme-light .mat-select-disabled .mat-select-value {
  color: #97a6ba;
}
.theme-light .mat-select-arrow {
  color: #64748b;
}
.theme-light .mat-select-panel {
  background: white;
}
.theme-light .mat-select-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(151, 166, 186, 0.12);
}
.theme-light .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: black;
}
.theme-light .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #252f3f;
}
.theme-light .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #9b1c1c;
}
.theme-light .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #9b1c1c;
}
.theme-light .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: #97a6ba;
}
.theme-light .mat-drawer-container {
  background-color: #f1f5f9;
  color: #27303f;
}
.theme-light .mat-drawer {
  background-color: white;
  color: #27303f;
}
.theme-light .mat-drawer.mat-drawer-push {
  background-color: white;
}
.theme-light .mat-drawer:not(.mat-drawer-side) {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-drawer-side {
  border-right: solid 1px #e2e8f0;
}
.theme-light .mat-drawer-side.mat-drawer-end {
  border-left: solid 1px #e2e8f0;
  border-right: none;
}
.theme-light [dir=rtl] .mat-drawer-side {
  border-left: solid 1px #e2e8f0;
  border-right: none;
}
.theme-light [dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px #e2e8f0;
}
.theme-light .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.theme-light .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #252f3f;
}
.theme-light .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(37, 47, 63, 0.54);
}
.theme-light .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #252f3f;
}
.theme-light .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: black;
}
.theme-light .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: black;
}
.theme-light .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #9b1c1c;
}
.theme-light .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(155, 28, 28, 0.54);
}
.theme-light .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #9b1c1c;
}
.theme-light .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: black;
}
.theme-light .mat-slide-toggle-thumb {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  background-color: #fafafa;
}
.theme-light .mat-slide-toggle-bar {
  background-color: #97a6ba;
}
.theme-light .mat-slider-track-background {
  background-color: #cfd8e3;
}
.theme-light .mat-primary .mat-slider-track-fill,
.theme-light .mat-primary .mat-slider-thumb,
.theme-light .mat-primary .mat-slider-thumb-label {
  background-color: black;
}
.theme-light .mat-primary .mat-slider-thumb-label-text {
  color: white;
}
.theme-light .mat-primary .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.2);
}
.theme-light .mat-accent .mat-slider-track-fill,
.theme-light .mat-accent .mat-slider-thumb,
.theme-light .mat-accent .mat-slider-thumb-label {
  background-color: #252f3f;
}
.theme-light .mat-accent .mat-slider-thumb-label-text {
  color: #f9fafb;
}
.theme-light .mat-accent .mat-slider-focus-ring {
  background-color: rgba(37, 47, 63, 0.2);
}
.theme-light .mat-warn .mat-slider-track-fill,
.theme-light .mat-warn .mat-slider-thumb,
.theme-light .mat-warn .mat-slider-thumb-label {
  background-color: #9b1c1c;
}
.theme-light .mat-warn .mat-slider-thumb-label-text {
  color: #fdf2f2;
}
.theme-light .mat-warn .mat-slider-focus-ring {
  background-color: rgba(155, 28, 28, 0.2);
}
.theme-light .mat-slider:hover .mat-slider-track-background,
.theme-light .cdk-focused .mat-slider-track-background {
  background-color: #97a6ba;
}
.theme-light .mat-slider-disabled .mat-slider-track-background,
.theme-light .mat-slider-disabled .mat-slider-track-fill,
.theme-light .mat-slider-disabled .mat-slider-thumb {
  background-color: #cfd8e3;
}
.theme-light .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: #cfd8e3;
}
.theme-light .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.theme-light .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: #27303f;
}
.theme-light .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.theme-light .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: #cfd8e3;
}
.theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: #cfd8e3;
  background-color: transparent;
}
.theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: #97a6ba;
}
.theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: #cfd8e3;
}
.theme-light .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.theme-light .mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-light .mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-light .mat-step-header.cdk-keyboard-focused, .theme-light .mat-step-header.cdk-program-focused, .theme-light .mat-step-header:hover {
  background-color: rgba(151, 166, 186, 0.12);
}
@media (hover: none) {
  .theme-light .mat-step-header:hover {
    background: none;
  }
}
.theme-light .mat-step-header .mat-step-label,
.theme-light .mat-step-header .mat-step-optional {
  color: #64748b;
}
.theme-light .mat-step-header .mat-step-icon {
  background-color: #64748b;
  color: white;
}
.theme-light .mat-step-header .mat-step-icon-selected,
.theme-light .mat-step-header .mat-step-icon-state-done,
.theme-light .mat-step-header .mat-step-icon-state-edit {
  background-color: black;
  color: white;
}
.theme-light .mat-step-header.mat-accent .mat-step-icon {
  color: #f9fafb;
}
.theme-light .mat-step-header.mat-accent .mat-step-icon-selected,
.theme-light .mat-step-header.mat-accent .mat-step-icon-state-done,
.theme-light .mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #252f3f;
  color: #f9fafb;
}
.theme-light .mat-step-header.mat-warn .mat-step-icon {
  color: #fdf2f2;
}
.theme-light .mat-step-header.mat-warn .mat-step-icon-selected,
.theme-light .mat-step-header.mat-warn .mat-step-icon-state-done,
.theme-light .mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #9b1c1c;
  color: #fdf2f2;
}
.theme-light .mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #9b1c1c;
}
.theme-light .mat-step-header .mat-step-label.mat-step-label-active {
  color: #27303f;
}
.theme-light .mat-step-header .mat-step-label.mat-step-label-error {
  color: #9b1c1c;
}
.theme-light .mat-stepper-horizontal, .theme-light .mat-stepper-vertical {
  background-color: white;
}
.theme-light .mat-stepper-vertical-line::before {
  border-left-color: #e2e8f0;
}
.theme-light .mat-horizontal-stepper-header::before,
.theme-light .mat-horizontal-stepper-header::after,
.theme-light .mat-stepper-horizontal-line {
  border-top-color: #e2e8f0;
}
.theme-light .mat-sort-header-arrow {
  color: #64748b;
}
.theme-light .mat-tab-nav-bar,
.theme-light .mat-tab-header {
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .mat-tab-group-inverted-header .mat-tab-nav-bar,
.theme-light .mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid #e2e8f0;
  border-bottom: none;
}
.theme-light .mat-tab-label, .theme-light .mat-tab-link {
  color: #27303f;
}
.theme-light .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-link.mat-tab-disabled {
  color: #97a6ba;
}
.theme-light .mat-tab-header-pagination-chevron {
  border-color: #27303f;
}
.theme-light .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: #97a6ba;
}
.theme-light .mat-tab-group[class*=mat-background-] .mat-tab-header,
.theme-light .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.theme-light .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(0, 0, 0, 0.3);
}
.theme-light .mat-tab-group.mat-primary .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: black;
}
.theme-light .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: white;
}
.theme-light .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(244, 245, 247, 0.3);
}
.theme-light .mat-tab-group.mat-accent .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #252f3f;
}
.theme-light .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: #f9fafb;
}
.theme-light .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(253, 232, 232, 0.3);
}
.theme-light .mat-tab-group.mat-warn .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #9b1c1c;
}
.theme-light .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: #fdf2f2;
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(0, 0, 0, 0.3);
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-header, .theme-light .mat-tab-group.mat-background-primary .mat-tab-links, .theme-light .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: black;
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-label, .theme-light .mat-tab-group.mat-background-primary .mat-tab-link, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: white;
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: white;
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.theme-light .mat-tab-group.mat-background-primary .mat-ripple-element, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(244, 245, 247, 0.3);
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-header, .theme-light .mat-tab-group.mat-background-accent .mat-tab-links, .theme-light .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #252f3f;
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-label, .theme-light .mat-tab-group.mat-background-accent .mat-tab-link, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: #f9fafb;
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(249, 250, 251, 0.4);
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: #f9fafb;
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(249, 250, 251, 0.4);
}
.theme-light .mat-tab-group.mat-background-accent .mat-ripple-element, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(249, 250, 251, 0.12);
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(253, 232, 232, 0.3);
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-header, .theme-light .mat-tab-group.mat-background-warn .mat-tab-links, .theme-light .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #9b1c1c;
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-label, .theme-light .mat-tab-group.mat-background-warn .mat-tab-link, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: #fdf2f2;
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(253, 242, 242, 0.4);
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: #fdf2f2;
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(253, 242, 242, 0.4);
}
.theme-light .mat-tab-group.mat-background-warn .mat-ripple-element, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(253, 242, 242, 0.12);
}
.theme-light .mat-toolbar {
  background: white;
  color: #27303f;
}
.theme-light .mat-toolbar.mat-primary {
  background: black;
  color: white;
}
.theme-light .mat-toolbar.mat-accent {
  background: #252f3f;
  color: #f9fafb;
}
.theme-light .mat-toolbar.mat-warn {
  background: #9b1c1c;
  color: #fdf2f2;
}
.theme-light .mat-toolbar .mat-form-field-underline,
.theme-light .mat-toolbar .mat-form-field-ripple,
.theme-light .mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.theme-light .mat-toolbar .mat-form-field-label,
.theme-light .mat-toolbar .mat-focused .mat-form-field-label,
.theme-light .mat-toolbar .mat-select-value,
.theme-light .mat-toolbar .mat-select-arrow,
.theme-light .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.theme-light .mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.theme-light .mat-tooltip {
  background: rgba(39, 48, 63, 0.9);
}
.theme-light .mat-tree {
  background: white;
}
.theme-light .mat-tree-node,
.theme-light .mat-nested-tree-node {
  color: #27303f;
}
.theme-light .mat-snack-bar-container {
  color: rgba(255, 255, 255, 0.7);
  background: #323232;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-simple-snackbar-action {
  color: #252f3f;
}
.theme-light .text-primary-100 {
  color: #000000 !important;
}
.theme-light .bg-primary-100 {
  background: #000000 !important;
}
.theme-light .primary-100 {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary-100 .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary-100.text-secondary,
.theme-light .primary-100 .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary-100.text-hint,
.theme-light .primary-100 .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-100.text-disabled,
.theme-light .primary-100 .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-100.divider,
.theme-light .primary-100 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary-100 {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary-100:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary-100:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary-100:active {
  border-color: #000000 !important;
}
.theme-light .text-primary-200 {
  color: #000000 !important;
}
.theme-light .bg-primary-200 {
  background: #000000 !important;
}
.theme-light .primary-200 {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary-200 .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary-200.text-secondary,
.theme-light .primary-200 .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary-200.text-hint,
.theme-light .primary-200 .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-200.text-disabled,
.theme-light .primary-200 .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-200.divider,
.theme-light .primary-200 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary-200 {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary-200:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary-200:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary-200:active {
  border-color: #000000 !important;
}
.theme-light .text-primary-300 {
  color: #000000 !important;
}
.theme-light .bg-primary-300 {
  background: #000000 !important;
}
.theme-light .primary-300 {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary-300 .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary-300.text-secondary,
.theme-light .primary-300 .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary-300.text-hint,
.theme-light .primary-300 .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-300.text-disabled,
.theme-light .primary-300 .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-300.divider,
.theme-light .primary-300 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary-300 {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary-300:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary-300:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary-300:active {
  border-color: #000000 !important;
}
.theme-light .text-primary-400 {
  color: #000000 !important;
}
.theme-light .bg-primary-400 {
  background: #000000 !important;
}
.theme-light .primary-400 {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary-400 .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary-400.text-secondary,
.theme-light .primary-400 .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary-400.text-hint,
.theme-light .primary-400 .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-400.text-disabled,
.theme-light .primary-400 .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-400.divider,
.theme-light .primary-400 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary-400 {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary-400:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary-400:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary-400:active {
  border-color: #000000 !important;
}
.theme-light .text-primary-500 {
  color: #000000 !important;
}
.theme-light .bg-primary-500 {
  background: #000000 !important;
}
.theme-light .primary-500 {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary-500 .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary-500.text-secondary,
.theme-light .primary-500 .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary-500.text-hint,
.theme-light .primary-500 .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-500.text-disabled,
.theme-light .primary-500 .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-500.divider,
.theme-light .primary-500 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary-500 {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary-500:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary-500:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary-500:active {
  border-color: #000000 !important;
}
.theme-light .text-primary {
  color: #000000 !important;
}
.theme-light .bg-primary {
  background: #000000 !important;
}
.theme-light .primary {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary.text-secondary,
.theme-light .primary .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary.text-hint,
.theme-light .primary .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary.text-disabled,
.theme-light .primary .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary.divider,
.theme-light .primary .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary:active {
  border-color: #000000 !important;
}
.theme-light .text-primary-600 {
  color: #000000 !important;
}
.theme-light .bg-primary-600 {
  background: #000000 !important;
}
.theme-light .primary-600 {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary-600 .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary-600.text-secondary,
.theme-light .primary-600 .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary-600.text-hint,
.theme-light .primary-600 .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-600.text-disabled,
.theme-light .primary-600 .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-600.divider,
.theme-light .primary-600 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary-600 {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary-600:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary-600:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary-600:active {
  border-color: #000000 !important;
}
.theme-light .text-primary-700 {
  color: #000000 !important;
}
.theme-light .bg-primary-700 {
  background: #000000 !important;
}
.theme-light .primary-700 {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary-700 .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary-700.text-secondary,
.theme-light .primary-700 .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary-700.text-hint,
.theme-light .primary-700 .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-700.text-disabled,
.theme-light .primary-700 .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-700.divider,
.theme-light .primary-700 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary-700 {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary-700:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary-700:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary-700:active {
  border-color: #000000 !important;
}
.theme-light .text-primary-800 {
  color: #000000 !important;
}
.theme-light .bg-primary-800 {
  background: #000000 !important;
}
.theme-light .primary-800 {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary-800 .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary-800.text-secondary,
.theme-light .primary-800 .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary-800.text-hint,
.theme-light .primary-800 .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-800.text-disabled,
.theme-light .primary-800 .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-800.divider,
.theme-light .primary-800 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary-800 {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary-800:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary-800:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary-800:active {
  border-color: #000000 !important;
}
.theme-light .text-primary-900 {
  color: #000000 !important;
}
.theme-light .bg-primary-900 {
  background: #000000 !important;
}
.theme-light .primary-900 {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.theme-light .primary-900 .mat-icon {
  color: #FFFFFF !important;
}
.theme-light .primary-900.text-secondary,
.theme-light .primary-900 .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-light .primary-900.text-hint,
.theme-light .primary-900 .text-hint {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-900.text-disabled,
.theme-light .primary-900 .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.theme-light .primary-900.divider,
.theme-light .primary-900 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-light .border-primary-900 {
  border-color: #000000 !important;
}
.theme-light .hover\:border-primary-900:hover {
  border-color: #000000 !important;
}
.theme-light .focus\:border-primary-900:focus {
  border-color: #000000 !important;
}
.theme-light .active\:border-primary-900:active {
  border-color: #000000 !important;
}
.theme-light .text-accent-100 {
  color: #F4F5F7 !important;
}
.theme-light .bg-accent-100 {
  background: #F4F5F7 !important;
}
.theme-light .accent-100 {
  background: #F4F5F7 !important;
  color: #161E2E !important;
}
.theme-light .accent-100 .mat-icon {
  color: #161E2E !important;
}
.theme-light .accent-100.text-secondary,
.theme-light .accent-100 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-light .accent-100.text-hint,
.theme-light .accent-100 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-100.text-disabled,
.theme-light .accent-100 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-100.divider,
.theme-light .accent-100 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-light .border-accent-100 {
  border-color: #F4F5F7 !important;
}
.theme-light .hover\:border-accent-100:hover {
  border-color: #F4F5F7 !important;
}
.theme-light .focus\:border-accent-100:focus {
  border-color: #F4F5F7 !important;
}
.theme-light .active\:border-accent-100:active {
  border-color: #F4F5F7 !important;
}
.theme-light .text-accent-200 {
  color: #E5E7EB !important;
}
.theme-light .bg-accent-200 {
  background: #E5E7EB !important;
}
.theme-light .accent-200 {
  background: #E5E7EB !important;
  color: #161E2E !important;
}
.theme-light .accent-200 .mat-icon {
  color: #161E2E !important;
}
.theme-light .accent-200.text-secondary,
.theme-light .accent-200 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-light .accent-200.text-hint,
.theme-light .accent-200 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-200.text-disabled,
.theme-light .accent-200 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-200.divider,
.theme-light .accent-200 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-light .border-accent-200 {
  border-color: #E5E7EB !important;
}
.theme-light .hover\:border-accent-200:hover {
  border-color: #E5E7EB !important;
}
.theme-light .focus\:border-accent-200:focus {
  border-color: #E5E7EB !important;
}
.theme-light .active\:border-accent-200:active {
  border-color: #E5E7EB !important;
}
.theme-light .text-accent-300 {
  color: #D2D6DC !important;
}
.theme-light .bg-accent-300 {
  background: #D2D6DC !important;
}
.theme-light .accent-300 {
  background: #D2D6DC !important;
  color: #161E2E !important;
}
.theme-light .accent-300 .mat-icon {
  color: #161E2E !important;
}
.theme-light .accent-300.text-secondary,
.theme-light .accent-300 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-light .accent-300.text-hint,
.theme-light .accent-300 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-300.text-disabled,
.theme-light .accent-300 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-300.divider,
.theme-light .accent-300 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-light .border-accent-300 {
  border-color: #D2D6DC !important;
}
.theme-light .hover\:border-accent-300:hover {
  border-color: #D2D6DC !important;
}
.theme-light .focus\:border-accent-300:focus {
  border-color: #D2D6DC !important;
}
.theme-light .active\:border-accent-300:active {
  border-color: #D2D6DC !important;
}
.theme-light .text-accent-400 {
  color: #9FA6B2 !important;
}
.theme-light .bg-accent-400 {
  background: #9FA6B2 !important;
}
.theme-light .accent-400 {
  background: #9FA6B2 !important;
  color: #161E2E !important;
}
.theme-light .accent-400 .mat-icon {
  color: #161E2E !important;
}
.theme-light .accent-400.text-secondary,
.theme-light .accent-400 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-light .accent-400.text-hint,
.theme-light .accent-400 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-400.text-disabled,
.theme-light .accent-400 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-400.divider,
.theme-light .accent-400 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-light .border-accent-400 {
  border-color: #9FA6B2 !important;
}
.theme-light .hover\:border-accent-400:hover {
  border-color: #9FA6B2 !important;
}
.theme-light .focus\:border-accent-400:focus {
  border-color: #9FA6B2 !important;
}
.theme-light .active\:border-accent-400:active {
  border-color: #9FA6B2 !important;
}
.theme-light .text-accent-500 {
  color: #6B7280 !important;
}
.theme-light .bg-accent-500 {
  background: #6B7280 !important;
}
.theme-light .accent-500 {
  background: #6B7280 !important;
  color: #161E2E !important;
}
.theme-light .accent-500 .mat-icon {
  color: #161E2E !important;
}
.theme-light .accent-500.text-secondary,
.theme-light .accent-500 .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-light .accent-500.text-hint,
.theme-light .accent-500 .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-500.text-disabled,
.theme-light .accent-500 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent-500.divider,
.theme-light .accent-500 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-light .border-accent-500 {
  border-color: #6B7280 !important;
}
.theme-light .hover\:border-accent-500:hover {
  border-color: #6B7280 !important;
}
.theme-light .focus\:border-accent-500:focus {
  border-color: #6B7280 !important;
}
.theme-light .active\:border-accent-500:active {
  border-color: #6B7280 !important;
}
.theme-light .text-accent {
  color: #6B7280 !important;
}
.theme-light .bg-accent {
  background: #6B7280 !important;
}
.theme-light .accent {
  background: #6B7280 !important;
  color: #161E2E !important;
}
.theme-light .accent .mat-icon {
  color: #161E2E !important;
}
.theme-light .accent.text-secondary,
.theme-light .accent .text-secondary {
  color: rgba(22, 30, 46, 0.6) !important;
}
.theme-light .accent.text-hint,
.theme-light .accent .text-hint {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent.text-disabled,
.theme-light .accent .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.theme-light .accent.divider,
.theme-light .accent .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.theme-light .border-accent {
  border-color: #6B7280 !important;
}
.theme-light .hover\:border-accent:hover {
  border-color: #6B7280 !important;
}
.theme-light .focus\:border-accent:focus {
  border-color: #6B7280 !important;
}
.theme-light .active\:border-accent:active {
  border-color: #6B7280 !important;
}
.theme-light .text-accent-600 {
  color: #4B5563 !important;
}
.theme-light .bg-accent-600 {
  background: #4B5563 !important;
}
.theme-light .accent-600 {
  background: #4B5563 !important;
  color: #F9FAFB !important;
}
.theme-light .accent-600 .mat-icon {
  color: #F9FAFB !important;
}
.theme-light .accent-600.text-secondary,
.theme-light .accent-600 .text-secondary {
  color: rgba(249, 250, 251, 0.6) !important;
}
.theme-light .accent-600.text-hint,
.theme-light .accent-600 .text-hint {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-light .accent-600.text-disabled,
.theme-light .accent-600 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-light .accent-600.divider,
.theme-light .accent-600 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.theme-light .border-accent-600 {
  border-color: #4B5563 !important;
}
.theme-light .hover\:border-accent-600:hover {
  border-color: #4B5563 !important;
}
.theme-light .focus\:border-accent-600:focus {
  border-color: #4B5563 !important;
}
.theme-light .active\:border-accent-600:active {
  border-color: #4B5563 !important;
}
.theme-light .text-accent-700 {
  color: #374151 !important;
}
.theme-light .bg-accent-700 {
  background: #374151 !important;
}
.theme-light .accent-700 {
  background: #374151 !important;
  color: #F9FAFB !important;
}
.theme-light .accent-700 .mat-icon {
  color: #F9FAFB !important;
}
.theme-light .accent-700.text-secondary,
.theme-light .accent-700 .text-secondary {
  color: rgba(249, 250, 251, 0.6) !important;
}
.theme-light .accent-700.text-hint,
.theme-light .accent-700 .text-hint {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-light .accent-700.text-disabled,
.theme-light .accent-700 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-light .accent-700.divider,
.theme-light .accent-700 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.theme-light .border-accent-700 {
  border-color: #374151 !important;
}
.theme-light .hover\:border-accent-700:hover {
  border-color: #374151 !important;
}
.theme-light .focus\:border-accent-700:focus {
  border-color: #374151 !important;
}
.theme-light .active\:border-accent-700:active {
  border-color: #374151 !important;
}
.theme-light .text-accent-800 {
  color: #252F3F !important;
}
.theme-light .bg-accent-800 {
  background: #252F3F !important;
}
.theme-light .accent-800 {
  background: #252F3F !important;
  color: #F9FAFB !important;
}
.theme-light .accent-800 .mat-icon {
  color: #F9FAFB !important;
}
.theme-light .accent-800.text-secondary,
.theme-light .accent-800 .text-secondary {
  color: rgba(249, 250, 251, 0.6) !important;
}
.theme-light .accent-800.text-hint,
.theme-light .accent-800 .text-hint {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-light .accent-800.text-disabled,
.theme-light .accent-800 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-light .accent-800.divider,
.theme-light .accent-800 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.theme-light .border-accent-800 {
  border-color: #252F3F !important;
}
.theme-light .hover\:border-accent-800:hover {
  border-color: #252F3F !important;
}
.theme-light .focus\:border-accent-800:focus {
  border-color: #252F3F !important;
}
.theme-light .active\:border-accent-800:active {
  border-color: #252F3F !important;
}
.theme-light .text-accent-900 {
  color: #161E2E !important;
}
.theme-light .bg-accent-900 {
  background: #161E2E !important;
}
.theme-light .accent-900 {
  background: #161E2E !important;
  color: #F9FAFB !important;
}
.theme-light .accent-900 .mat-icon {
  color: #F9FAFB !important;
}
.theme-light .accent-900.text-secondary,
.theme-light .accent-900 .text-secondary {
  color: rgba(249, 250, 251, 0.6) !important;
}
.theme-light .accent-900.text-hint,
.theme-light .accent-900 .text-hint {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-light .accent-900.text-disabled,
.theme-light .accent-900 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.theme-light .accent-900.divider,
.theme-light .accent-900 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.theme-light .border-accent-900 {
  border-color: #161E2E !important;
}
.theme-light .hover\:border-accent-900:hover {
  border-color: #161E2E !important;
}
.theme-light .focus\:border-accent-900:focus {
  border-color: #161E2E !important;
}
.theme-light .active\:border-accent-900:active {
  border-color: #161E2E !important;
}
.theme-light .text-warn-100 {
  color: #FDE8E8 !important;
}
.theme-light .bg-warn-100 {
  background: #FDE8E8 !important;
}
.theme-light .warn-100 {
  background: #FDE8E8 !important;
  color: #771D1D !important;
}
.theme-light .warn-100 .mat-icon {
  color: #771D1D !important;
}
.theme-light .warn-100.text-secondary,
.theme-light .warn-100 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-light .warn-100.text-hint,
.theme-light .warn-100 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-100.text-disabled,
.theme-light .warn-100 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-100.divider,
.theme-light .warn-100 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-light .border-warn-100 {
  border-color: #FDE8E8 !important;
}
.theme-light .hover\:border-warn-100:hover {
  border-color: #FDE8E8 !important;
}
.theme-light .focus\:border-warn-100:focus {
  border-color: #FDE8E8 !important;
}
.theme-light .active\:border-warn-100:active {
  border-color: #FDE8E8 !important;
}
.theme-light .text-warn-200 {
  color: #FBD5D5 !important;
}
.theme-light .bg-warn-200 {
  background: #FBD5D5 !important;
}
.theme-light .warn-200 {
  background: #FBD5D5 !important;
  color: #771D1D !important;
}
.theme-light .warn-200 .mat-icon {
  color: #771D1D !important;
}
.theme-light .warn-200.text-secondary,
.theme-light .warn-200 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-light .warn-200.text-hint,
.theme-light .warn-200 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-200.text-disabled,
.theme-light .warn-200 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-200.divider,
.theme-light .warn-200 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-light .border-warn-200 {
  border-color: #FBD5D5 !important;
}
.theme-light .hover\:border-warn-200:hover {
  border-color: #FBD5D5 !important;
}
.theme-light .focus\:border-warn-200:focus {
  border-color: #FBD5D5 !important;
}
.theme-light .active\:border-warn-200:active {
  border-color: #FBD5D5 !important;
}
.theme-light .text-warn-300 {
  color: #F8B4B4 !important;
}
.theme-light .bg-warn-300 {
  background: #F8B4B4 !important;
}
.theme-light .warn-300 {
  background: #F8B4B4 !important;
  color: #771D1D !important;
}
.theme-light .warn-300 .mat-icon {
  color: #771D1D !important;
}
.theme-light .warn-300.text-secondary,
.theme-light .warn-300 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-light .warn-300.text-hint,
.theme-light .warn-300 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-300.text-disabled,
.theme-light .warn-300 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-300.divider,
.theme-light .warn-300 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-light .border-warn-300 {
  border-color: #F8B4B4 !important;
}
.theme-light .hover\:border-warn-300:hover {
  border-color: #F8B4B4 !important;
}
.theme-light .focus\:border-warn-300:focus {
  border-color: #F8B4B4 !important;
}
.theme-light .active\:border-warn-300:active {
  border-color: #F8B4B4 !important;
}
.theme-light .text-warn-400 {
  color: #F98080 !important;
}
.theme-light .bg-warn-400 {
  background: #F98080 !important;
}
.theme-light .warn-400 {
  background: #F98080 !important;
  color: #771D1D !important;
}
.theme-light .warn-400 .mat-icon {
  color: #771D1D !important;
}
.theme-light .warn-400.text-secondary,
.theme-light .warn-400 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-light .warn-400.text-hint,
.theme-light .warn-400 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-400.text-disabled,
.theme-light .warn-400 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-400.divider,
.theme-light .warn-400 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-light .border-warn-400 {
  border-color: #F98080 !important;
}
.theme-light .hover\:border-warn-400:hover {
  border-color: #F98080 !important;
}
.theme-light .focus\:border-warn-400:focus {
  border-color: #F98080 !important;
}
.theme-light .active\:border-warn-400:active {
  border-color: #F98080 !important;
}
.theme-light .text-warn-500 {
  color: #F05252 !important;
}
.theme-light .bg-warn-500 {
  background: #F05252 !important;
}
.theme-light .warn-500 {
  background: #F05252 !important;
  color: #771D1D !important;
}
.theme-light .warn-500 .mat-icon {
  color: #771D1D !important;
}
.theme-light .warn-500.text-secondary,
.theme-light .warn-500 .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-light .warn-500.text-hint,
.theme-light .warn-500 .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-500.text-disabled,
.theme-light .warn-500 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn-500.divider,
.theme-light .warn-500 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-light .border-warn-500 {
  border-color: #F05252 !important;
}
.theme-light .hover\:border-warn-500:hover {
  border-color: #F05252 !important;
}
.theme-light .focus\:border-warn-500:focus {
  border-color: #F05252 !important;
}
.theme-light .active\:border-warn-500:active {
  border-color: #F05252 !important;
}
.theme-light .text-warn {
  color: #F05252 !important;
}
.theme-light .bg-warn {
  background: #F05252 !important;
}
.theme-light .warn {
  background: #F05252 !important;
  color: #771D1D !important;
}
.theme-light .warn .mat-icon {
  color: #771D1D !important;
}
.theme-light .warn.text-secondary,
.theme-light .warn .text-secondary {
  color: rgba(119, 29, 29, 0.6) !important;
}
.theme-light .warn.text-hint,
.theme-light .warn .text-hint {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn.text-disabled,
.theme-light .warn .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.theme-light .warn.divider,
.theme-light .warn .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.theme-light .border-warn {
  border-color: #F05252 !important;
}
.theme-light .hover\:border-warn:hover {
  border-color: #F05252 !important;
}
.theme-light .focus\:border-warn:focus {
  border-color: #F05252 !important;
}
.theme-light .active\:border-warn:active {
  border-color: #F05252 !important;
}
.theme-light .text-warn-600 {
  color: #E02424 !important;
}
.theme-light .bg-warn-600 {
  background: #E02424 !important;
}
.theme-light .warn-600 {
  background: #E02424 !important;
  color: #FDF2F2 !important;
}
.theme-light .warn-600 .mat-icon {
  color: #FDF2F2 !important;
}
.theme-light .warn-600.text-secondary,
.theme-light .warn-600 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.theme-light .warn-600.text-hint,
.theme-light .warn-600 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-light .warn-600.text-disabled,
.theme-light .warn-600 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-light .warn-600.divider,
.theme-light .warn-600 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.theme-light .border-warn-600 {
  border-color: #E02424 !important;
}
.theme-light .hover\:border-warn-600:hover {
  border-color: #E02424 !important;
}
.theme-light .focus\:border-warn-600:focus {
  border-color: #E02424 !important;
}
.theme-light .active\:border-warn-600:active {
  border-color: #E02424 !important;
}
.theme-light .text-warn-700 {
  color: #C81E1E !important;
}
.theme-light .bg-warn-700 {
  background: #C81E1E !important;
}
.theme-light .warn-700 {
  background: #C81E1E !important;
  color: #FDF2F2 !important;
}
.theme-light .warn-700 .mat-icon {
  color: #FDF2F2 !important;
}
.theme-light .warn-700.text-secondary,
.theme-light .warn-700 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.theme-light .warn-700.text-hint,
.theme-light .warn-700 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-light .warn-700.text-disabled,
.theme-light .warn-700 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-light .warn-700.divider,
.theme-light .warn-700 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.theme-light .border-warn-700 {
  border-color: #C81E1E !important;
}
.theme-light .hover\:border-warn-700:hover {
  border-color: #C81E1E !important;
}
.theme-light .focus\:border-warn-700:focus {
  border-color: #C81E1E !important;
}
.theme-light .active\:border-warn-700:active {
  border-color: #C81E1E !important;
}
.theme-light .text-warn-800 {
  color: #9B1C1C !important;
}
.theme-light .bg-warn-800 {
  background: #9B1C1C !important;
}
.theme-light .warn-800 {
  background: #9B1C1C !important;
  color: #FDF2F2 !important;
}
.theme-light .warn-800 .mat-icon {
  color: #FDF2F2 !important;
}
.theme-light .warn-800.text-secondary,
.theme-light .warn-800 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.theme-light .warn-800.text-hint,
.theme-light .warn-800 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-light .warn-800.text-disabled,
.theme-light .warn-800 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-light .warn-800.divider,
.theme-light .warn-800 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.theme-light .border-warn-800 {
  border-color: #9B1C1C !important;
}
.theme-light .hover\:border-warn-800:hover {
  border-color: #9B1C1C !important;
}
.theme-light .focus\:border-warn-800:focus {
  border-color: #9B1C1C !important;
}
.theme-light .active\:border-warn-800:active {
  border-color: #9B1C1C !important;
}
.theme-light .text-warn-900 {
  color: #771D1D !important;
}
.theme-light .bg-warn-900 {
  background: #771D1D !important;
}
.theme-light .warn-900 {
  background: #771D1D !important;
  color: #FDF2F2 !important;
}
.theme-light .warn-900 .mat-icon {
  color: #FDF2F2 !important;
}
.theme-light .warn-900.text-secondary,
.theme-light .warn-900 .text-secondary {
  color: rgba(253, 242, 242, 0.6) !important;
}
.theme-light .warn-900.text-hint,
.theme-light .warn-900 .text-hint {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-light .warn-900.text-disabled,
.theme-light .warn-900 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.theme-light .warn-900.divider,
.theme-light .warn-900 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.theme-light .border-warn-900 {
  border-color: #771D1D !important;
}
.theme-light .hover\:border-warn-900:hover {
  border-color: #771D1D !important;
}
.theme-light .focus\:border-warn-900:focus {
  border-color: #771D1D !important;
}
.theme-light .active\:border-warn-900:active {
  border-color: #771D1D !important;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header, .content-layout.right-sidebar-content-tabs-inner-scroll > .header, .content-layout.right-sidebar-content-tabs-content-scroll > .header, .content-layout.right-sidebar-content-tabs-normal-scroll > .header, .content-layout.right-sidebar-content-standard-inner-scroll > .header, .content-layout.right-sidebar-content-standard-content-scroll > .header, .content-layout.right-sidebar-content-standard-normal-scroll > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header, .content-layout.left-sidebar-content-tabs-inner-scroll > .header, .content-layout.left-sidebar-content-tabs-content-scroll > .header, .content-layout.left-sidebar-content-tabs-normal-scroll > .header, .content-layout.left-sidebar-content-standard-inner-scroll > .header, .content-layout.left-sidebar-content-standard-content-scroll > .header, .content-layout.left-sidebar-content-standard-normal-scroll > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header, .content-layout.fullwidth-tabs-navigation-content-scroll > .header, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header, .content-layout.fullwidth-tabs-inner-scroll > .header, .content-layout.fullwidth-tabs-content-scroll > .header, .content-layout.fullwidth-tabs-normal-scroll > .header, .content-layout.fullwidth-standard-inner-scroll > .header, .content-layout.fullwidth-standard-content-scroll > .header, .content-layout.fullwidth-standard-normal-scroll > .header {
  display: flex;
  padding: 40px;
}
@media (max-width: 959px) {
  .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header, .content-layout.right-sidebar-content-tabs-inner-scroll > .header, .content-layout.right-sidebar-content-tabs-content-scroll > .header, .content-layout.right-sidebar-content-tabs-normal-scroll > .header, .content-layout.right-sidebar-content-standard-inner-scroll > .header, .content-layout.right-sidebar-content-standard-content-scroll > .header, .content-layout.right-sidebar-content-standard-normal-scroll > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header, .content-layout.left-sidebar-content-tabs-inner-scroll > .header, .content-layout.left-sidebar-content-tabs-content-scroll > .header, .content-layout.left-sidebar-content-tabs-normal-scroll > .header, .content-layout.left-sidebar-content-standard-inner-scroll > .header, .content-layout.left-sidebar-content-standard-content-scroll > .header, .content-layout.left-sidebar-content-standard-normal-scroll > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header, .content-layout.fullwidth-tabs-navigation-content-scroll > .header, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header, .content-layout.fullwidth-tabs-inner-scroll > .header, .content-layout.fullwidth-tabs-content-scroll > .header, .content-layout.fullwidth-tabs-normal-scroll > .header, .content-layout.fullwidth-standard-inner-scroll > .header, .content-layout.fullwidth-standard-content-scroll > .header, .content-layout.fullwidth-standard-normal-scroll > .header {
    flex-direction: column;
  }
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header, .content-layout.right-sidebar-content-tabs-inner-scroll > .header, .content-layout.right-sidebar-content-tabs-content-scroll > .header, .content-layout.right-sidebar-content-tabs-normal-scroll > .header, .content-layout.right-sidebar-content-standard-inner-scroll > .header, .content-layout.right-sidebar-content-standard-content-scroll > .header, .content-layout.right-sidebar-content-standard-normal-scroll > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header, .content-layout.left-sidebar-content-tabs-inner-scroll > .header, .content-layout.left-sidebar-content-tabs-content-scroll > .header, .content-layout.left-sidebar-content-tabs-normal-scroll > .header, .content-layout.left-sidebar-content-standard-inner-scroll > .header, .content-layout.left-sidebar-content-standard-content-scroll > .header, .content-layout.left-sidebar-content-standard-normal-scroll > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header, .content-layout.fullwidth-tabs-navigation-content-scroll > .header, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header, .content-layout.fullwidth-tabs-inner-scroll > .header, .content-layout.fullwidth-tabs-content-scroll > .header, .content-layout.fullwidth-tabs-normal-scroll > .header, .content-layout.fullwidth-standard-inner-scroll > .header, .content-layout.fullwidth-standard-content-scroll > .header, .content-layout.fullwidth-standard-normal-scroll > .header {
    padding: 32px 24px;
  }
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header .breadcrumb, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header .breadcrumb, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header .breadcrumb, .content-layout.right-sidebar-content-tabs-inner-scroll > .header .breadcrumb, .content-layout.right-sidebar-content-tabs-content-scroll > .header .breadcrumb, .content-layout.right-sidebar-content-tabs-normal-scroll > .header .breadcrumb, .content-layout.right-sidebar-content-standard-inner-scroll > .header .breadcrumb, .content-layout.right-sidebar-content-standard-content-scroll > .header .breadcrumb, .content-layout.right-sidebar-content-standard-normal-scroll > .header .breadcrumb, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header .breadcrumb, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header .breadcrumb, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header .breadcrumb, .content-layout.left-sidebar-content-tabs-inner-scroll > .header .breadcrumb, .content-layout.left-sidebar-content-tabs-content-scroll > .header .breadcrumb, .content-layout.left-sidebar-content-tabs-normal-scroll > .header .breadcrumb, .content-layout.left-sidebar-content-standard-inner-scroll > .header .breadcrumb, .content-layout.left-sidebar-content-standard-content-scroll > .header .breadcrumb, .content-layout.left-sidebar-content-standard-normal-scroll > .header .breadcrumb, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .breadcrumb, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header .breadcrumb, .content-layout.fullwidth-tabs-navigation-content-scroll > .header .breadcrumb, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header .breadcrumb, .content-layout.fullwidth-tabs-inner-scroll > .header .breadcrumb, .content-layout.fullwidth-tabs-content-scroll > .header .breadcrumb, .content-layout.fullwidth-tabs-normal-scroll > .header .breadcrumb, .content-layout.fullwidth-standard-inner-scroll > .header .breadcrumb, .content-layout.fullwidth-standard-content-scroll > .header .breadcrumb, .content-layout.fullwidth-standard-normal-scroll > .header .breadcrumb {
  margin-bottom: 8px;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header h1, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header h1, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header h1, .content-layout.right-sidebar-content-tabs-inner-scroll > .header h1, .content-layout.right-sidebar-content-tabs-content-scroll > .header h1, .content-layout.right-sidebar-content-tabs-normal-scroll > .header h1, .content-layout.right-sidebar-content-standard-inner-scroll > .header h1, .content-layout.right-sidebar-content-standard-content-scroll > .header h1, .content-layout.right-sidebar-content-standard-normal-scroll > .header h1, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header h1, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header h1, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header h1, .content-layout.left-sidebar-content-tabs-inner-scroll > .header h1, .content-layout.left-sidebar-content-tabs-content-scroll > .header h1, .content-layout.left-sidebar-content-tabs-normal-scroll > .header h1, .content-layout.left-sidebar-content-standard-inner-scroll > .header h1, .content-layout.left-sidebar-content-standard-content-scroll > .header h1, .content-layout.left-sidebar-content-standard-normal-scroll > .header h1, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h1, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header h1, .content-layout.fullwidth-tabs-navigation-content-scroll > .header h1, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header h1, .content-layout.fullwidth-tabs-inner-scroll > .header h1, .content-layout.fullwidth-tabs-content-scroll > .header h1, .content-layout.fullwidth-tabs-normal-scroll > .header h1, .content-layout.fullwidth-standard-inner-scroll > .header h1, .content-layout.fullwidth-standard-content-scroll > .header h1, .content-layout.fullwidth-standard-normal-scroll > .header h1, .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header h2, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header h2, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header h2, .content-layout.right-sidebar-content-tabs-inner-scroll > .header h2, .content-layout.right-sidebar-content-tabs-content-scroll > .header h2, .content-layout.right-sidebar-content-tabs-normal-scroll > .header h2, .content-layout.right-sidebar-content-standard-inner-scroll > .header h2, .content-layout.right-sidebar-content-standard-content-scroll > .header h2, .content-layout.right-sidebar-content-standard-normal-scroll > .header h2, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header h2, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header h2, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header h2, .content-layout.left-sidebar-content-tabs-inner-scroll > .header h2, .content-layout.left-sidebar-content-tabs-content-scroll > .header h2, .content-layout.left-sidebar-content-tabs-normal-scroll > .header h2, .content-layout.left-sidebar-content-standard-inner-scroll > .header h2, .content-layout.left-sidebar-content-standard-content-scroll > .header h2, .content-layout.left-sidebar-content-standard-normal-scroll > .header h2, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h2, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header h2, .content-layout.fullwidth-tabs-navigation-content-scroll > .header h2, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header h2, .content-layout.fullwidth-tabs-inner-scroll > .header h2, .content-layout.fullwidth-tabs-content-scroll > .header h2, .content-layout.fullwidth-tabs-normal-scroll > .header h2, .content-layout.fullwidth-standard-inner-scroll > .header h2, .content-layout.fullwidth-standard-content-scroll > .header h2, .content-layout.fullwidth-standard-normal-scroll > .header h2, .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header h3, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header h3, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header h3, .content-layout.right-sidebar-content-tabs-inner-scroll > .header h3, .content-layout.right-sidebar-content-tabs-content-scroll > .header h3, .content-layout.right-sidebar-content-tabs-normal-scroll > .header h3, .content-layout.right-sidebar-content-standard-inner-scroll > .header h3, .content-layout.right-sidebar-content-standard-content-scroll > .header h3, .content-layout.right-sidebar-content-standard-normal-scroll > .header h3, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header h3, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header h3, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header h3, .content-layout.left-sidebar-content-tabs-inner-scroll > .header h3, .content-layout.left-sidebar-content-tabs-content-scroll > .header h3, .content-layout.left-sidebar-content-tabs-normal-scroll > .header h3, .content-layout.left-sidebar-content-standard-inner-scroll > .header h3, .content-layout.left-sidebar-content-standard-content-scroll > .header h3, .content-layout.left-sidebar-content-standard-normal-scroll > .header h3, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h3, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header h3, .content-layout.fullwidth-tabs-navigation-content-scroll > .header h3, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header h3, .content-layout.fullwidth-tabs-inner-scroll > .header h3, .content-layout.fullwidth-tabs-content-scroll > .header h3, .content-layout.fullwidth-tabs-normal-scroll > .header h3, .content-layout.fullwidth-standard-inner-scroll > .header h3, .content-layout.fullwidth-standard-content-scroll > .header h3, .content-layout.fullwidth-standard-normal-scroll > .header h3, .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header h4, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header h4, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header h4, .content-layout.right-sidebar-content-tabs-inner-scroll > .header h4, .content-layout.right-sidebar-content-tabs-content-scroll > .header h4, .content-layout.right-sidebar-content-tabs-normal-scroll > .header h4, .content-layout.right-sidebar-content-standard-inner-scroll > .header h4, .content-layout.right-sidebar-content-standard-content-scroll > .header h4, .content-layout.right-sidebar-content-standard-normal-scroll > .header h4, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header h4, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header h4, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header h4, .content-layout.left-sidebar-content-tabs-inner-scroll > .header h4, .content-layout.left-sidebar-content-tabs-content-scroll > .header h4, .content-layout.left-sidebar-content-tabs-normal-scroll > .header h4, .content-layout.left-sidebar-content-standard-inner-scroll > .header h4, .content-layout.left-sidebar-content-standard-content-scroll > .header h4, .content-layout.left-sidebar-content-standard-normal-scroll > .header h4, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h4, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header h4, .content-layout.fullwidth-tabs-navigation-content-scroll > .header h4, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header h4, .content-layout.fullwidth-tabs-inner-scroll > .header h4, .content-layout.fullwidth-tabs-content-scroll > .header h4, .content-layout.fullwidth-tabs-normal-scroll > .header h4, .content-layout.fullwidth-standard-inner-scroll > .header h4, .content-layout.fullwidth-standard-content-scroll > .header h4, .content-layout.fullwidth-standard-normal-scroll > .header h4, .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header h5, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header h5, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header h5, .content-layout.right-sidebar-content-tabs-inner-scroll > .header h5, .content-layout.right-sidebar-content-tabs-content-scroll > .header h5, .content-layout.right-sidebar-content-tabs-normal-scroll > .header h5, .content-layout.right-sidebar-content-standard-inner-scroll > .header h5, .content-layout.right-sidebar-content-standard-content-scroll > .header h5, .content-layout.right-sidebar-content-standard-normal-scroll > .header h5, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header h5, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header h5, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header h5, .content-layout.left-sidebar-content-tabs-inner-scroll > .header h5, .content-layout.left-sidebar-content-tabs-content-scroll > .header h5, .content-layout.left-sidebar-content-tabs-normal-scroll > .header h5, .content-layout.left-sidebar-content-standard-inner-scroll > .header h5, .content-layout.left-sidebar-content-standard-content-scroll > .header h5, .content-layout.left-sidebar-content-standard-normal-scroll > .header h5, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h5, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header h5, .content-layout.fullwidth-tabs-navigation-content-scroll > .header h5, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header h5, .content-layout.fullwidth-tabs-inner-scroll > .header h5, .content-layout.fullwidth-tabs-content-scroll > .header h5, .content-layout.fullwidth-tabs-normal-scroll > .header h5, .content-layout.fullwidth-standard-inner-scroll > .header h5, .content-layout.fullwidth-standard-content-scroll > .header h5, .content-layout.fullwidth-standard-normal-scroll > .header h5, .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header h6, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header h6, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header h6, .content-layout.right-sidebar-content-tabs-inner-scroll > .header h6, .content-layout.right-sidebar-content-tabs-content-scroll > .header h6, .content-layout.right-sidebar-content-tabs-normal-scroll > .header h6, .content-layout.right-sidebar-content-standard-inner-scroll > .header h6, .content-layout.right-sidebar-content-standard-content-scroll > .header h6, .content-layout.right-sidebar-content-standard-normal-scroll > .header h6, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header h6, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header h6, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header h6, .content-layout.left-sidebar-content-tabs-inner-scroll > .header h6, .content-layout.left-sidebar-content-tabs-content-scroll > .header h6, .content-layout.left-sidebar-content-tabs-normal-scroll > .header h6, .content-layout.left-sidebar-content-standard-inner-scroll > .header h6, .content-layout.left-sidebar-content-standard-content-scroll > .header h6, .content-layout.left-sidebar-content-standard-normal-scroll > .header h6, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header h6, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header h6, .content-layout.fullwidth-tabs-navigation-content-scroll > .header h6, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header h6, .content-layout.fullwidth-tabs-inner-scroll > .header h6, .content-layout.fullwidth-tabs-content-scroll > .header h6, .content-layout.fullwidth-tabs-normal-scroll > .header h6, .content-layout.fullwidth-standard-inner-scroll > .header h6, .content-layout.fullwidth-standard-content-scroll > .header h6, .content-layout.fullwidth-standard-normal-scroll > .header h6 {
  margin: 0;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header .left, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header .left, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header .left, .content-layout.right-sidebar-content-tabs-inner-scroll > .header .left, .content-layout.right-sidebar-content-tabs-content-scroll > .header .left, .content-layout.right-sidebar-content-tabs-normal-scroll > .header .left, .content-layout.right-sidebar-content-standard-inner-scroll > .header .left, .content-layout.right-sidebar-content-standard-content-scroll > .header .left, .content-layout.right-sidebar-content-standard-normal-scroll > .header .left, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header .left, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header .left, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header .left, .content-layout.left-sidebar-content-tabs-inner-scroll > .header .left, .content-layout.left-sidebar-content-tabs-content-scroll > .header .left, .content-layout.left-sidebar-content-tabs-normal-scroll > .header .left, .content-layout.left-sidebar-content-standard-inner-scroll > .header .left, .content-layout.left-sidebar-content-standard-content-scroll > .header .left, .content-layout.left-sidebar-content-standard-normal-scroll > .header .left, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header .left, .content-layout.fullwidth-tabs-navigation-content-scroll > .header .left, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header .left, .content-layout.fullwidth-tabs-inner-scroll > .header .left, .content-layout.fullwidth-tabs-content-scroll > .header .left, .content-layout.fullwidth-tabs-normal-scroll > .header .left, .content-layout.fullwidth-standard-inner-scroll > .header .left, .content-layout.fullwidth-standard-content-scroll > .header .left, .content-layout.fullwidth-standard-normal-scroll > .header .left {
  align-self: center;
  margin-right: 24px;
}
@media (max-width: 959px) {
  .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header .left, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header .left, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header .left, .content-layout.right-sidebar-content-tabs-inner-scroll > .header .left, .content-layout.right-sidebar-content-tabs-content-scroll > .header .left, .content-layout.right-sidebar-content-tabs-normal-scroll > .header .left, .content-layout.right-sidebar-content-standard-inner-scroll > .header .left, .content-layout.right-sidebar-content-standard-content-scroll > .header .left, .content-layout.right-sidebar-content-standard-normal-scroll > .header .left, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header .left, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header .left, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header .left, .content-layout.left-sidebar-content-tabs-inner-scroll > .header .left, .content-layout.left-sidebar-content-tabs-content-scroll > .header .left, .content-layout.left-sidebar-content-tabs-normal-scroll > .header .left, .content-layout.left-sidebar-content-standard-inner-scroll > .header .left, .content-layout.left-sidebar-content-standard-content-scroll > .header .left, .content-layout.left-sidebar-content-standard-normal-scroll > .header .left, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .left, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header .left, .content-layout.fullwidth-tabs-navigation-content-scroll > .header .left, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header .left, .content-layout.fullwidth-tabs-inner-scroll > .header .left, .content-layout.fullwidth-tabs-content-scroll > .header .left, .content-layout.fullwidth-tabs-normal-scroll > .header .left, .content-layout.fullwidth-standard-inner-scroll > .header .left, .content-layout.fullwidth-standard-content-scroll > .header .left, .content-layout.fullwidth-standard-normal-scroll > .header .left {
    align-self: flex-start;
    justify-self: center;
  }
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header .right, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header .right, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header .right, .content-layout.right-sidebar-content-tabs-inner-scroll > .header .right, .content-layout.right-sidebar-content-tabs-content-scroll > .header .right, .content-layout.right-sidebar-content-tabs-normal-scroll > .header .right, .content-layout.right-sidebar-content-standard-inner-scroll > .header .right, .content-layout.right-sidebar-content-standard-content-scroll > .header .right, .content-layout.right-sidebar-content-standard-normal-scroll > .header .right, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header .right, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header .right, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header .right, .content-layout.left-sidebar-content-tabs-inner-scroll > .header .right, .content-layout.left-sidebar-content-tabs-content-scroll > .header .right, .content-layout.left-sidebar-content-tabs-normal-scroll > .header .right, .content-layout.left-sidebar-content-standard-inner-scroll > .header .right, .content-layout.left-sidebar-content-standard-content-scroll > .header .right, .content-layout.left-sidebar-content-standard-normal-scroll > .header .right, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header .right, .content-layout.fullwidth-tabs-navigation-content-scroll > .header .right, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header .right, .content-layout.fullwidth-tabs-inner-scroll > .header .right, .content-layout.fullwidth-tabs-content-scroll > .header .right, .content-layout.fullwidth-tabs-normal-scroll > .header .right, .content-layout.fullwidth-standard-inner-scroll > .header .right, .content-layout.fullwidth-standard-content-scroll > .header .right, .content-layout.fullwidth-standard-normal-scroll > .header .right {
  display: flex;
  align-items: center;
  align-self: center;
  margin-left: auto;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header .right, .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header .right, .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header .right, .content-layout.right-sidebar-content-tabs-inner-scroll > .header .right, .content-layout.right-sidebar-content-tabs-content-scroll > .header .right, .content-layout.right-sidebar-content-tabs-normal-scroll > .header .right, .content-layout.right-sidebar-content-standard-inner-scroll > .header .right, .content-layout.right-sidebar-content-standard-content-scroll > .header .right, .content-layout.right-sidebar-content-standard-normal-scroll > .header .right, .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header .right, .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header .right, .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header .right, .content-layout.left-sidebar-content-tabs-inner-scroll > .header .right, .content-layout.left-sidebar-content-tabs-content-scroll > .header .right, .content-layout.left-sidebar-content-tabs-normal-scroll > .header .right, .content-layout.left-sidebar-content-standard-inner-scroll > .header .right, .content-layout.left-sidebar-content-standard-content-scroll > .header .right, .content-layout.left-sidebar-content-standard-normal-scroll > .header .right, .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header .right, .content-layout.fullwidth-tabs-navigation-inner-scroll > .header .right, .content-layout.fullwidth-tabs-navigation-content-scroll > .header .right, .content-layout.fullwidth-tabs-navigation-normal-scroll > .header .right, .content-layout.fullwidth-tabs-inner-scroll > .header .right, .content-layout.fullwidth-tabs-content-scroll > .header .right, .content-layout.fullwidth-tabs-normal-scroll > .header .right, .content-layout.fullwidth-standard-inner-scroll > .header .right, .content-layout.fullwidth-standard-content-scroll > .header .right, .content-layout.fullwidth-standard-normal-scroll > .header .right {
    align-self: flex-start;
    justify-self: center;
    margin-top: 24px;
    margin-left: 0;
  }
}
.content-layout {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.content-layout.fullwidth-basic-normal-scroll > .main {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-basic-normal-scroll > .main {
    padding: 24px;
  }
}
.content-layout.fullwidth-basic-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.fullwidth-basic-content-scroll > .main {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-basic-content-scroll > .main {
    padding: 24px;
  }
}
.content-layout.fullwidth-standard-normal-scroll > .main {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-standard-normal-scroll > .main {
    padding: 24px;
  }
}
.content-layout.fullwidth-standard-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.fullwidth-standard-content-scroll > .main {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-standard-content-scroll > .main {
    padding: 24px;
  }
}
.content-layout.fullwidth-standard-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.fullwidth-standard-inner-scroll > .main {
  flex: 1 1 auto;
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-standard-inner-scroll > .main {
    padding: 24px;
  }
}
.content-layout.fullwidth-tabs-normal-scroll > .header {
  padding-bottom: 24px;
}
.content-layout.fullwidth-tabs-normal-scroll > .main {
  flex: 1 1 auto;
}
.content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.fullwidth-tabs-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.fullwidth-tabs-content-scroll > .header {
  padding-bottom: 24px;
}
.content-layout.fullwidth-tabs-content-scroll > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.fullwidth-tabs-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.fullwidth-tabs-inner-scroll > .header {
  padding-bottom: 24px;
}
.content-layout.fullwidth-tabs-inner-scroll > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group {
  overflow: hidden;
}
.content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.fullwidth-tabs-navigation-normal-scroll > .header {
  padding-bottom: 24px;
}
.content-layout.fullwidth-tabs-navigation-normal-scroll > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.fullwidth-tabs-navigation-normal-scroll > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-navigation-normal-scroll > .main nav {
    padding: 0 24px;
  }
}
.content-layout.fullwidth-tabs-navigation-normal-scroll > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.fullwidth-tabs-navigation-normal-scroll > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-navigation-normal-scroll > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.fullwidth-tabs-navigation-normal-scroll > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.fullwidth-tabs-navigation-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.fullwidth-tabs-navigation-content-scroll > .header {
  padding-bottom: 24px;
}
.content-layout.fullwidth-tabs-navigation-content-scroll > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.fullwidth-tabs-navigation-content-scroll > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-navigation-content-scroll > .main nav {
    padding: 0 24px;
  }
}
.content-layout.fullwidth-tabs-navigation-content-scroll > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.fullwidth-tabs-navigation-content-scroll > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-navigation-content-scroll > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.fullwidth-tabs-navigation-content-scroll > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.fullwidth-tabs-navigation-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.fullwidth-tabs-navigation-inner-scroll > .header {
  padding-bottom: 24px;
}
.content-layout.fullwidth-tabs-navigation-inner-scroll > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.fullwidth-tabs-navigation-inner-scroll > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-navigation-inner-scroll > .main nav {
    padding: 0 24px;
  }
}
.content-layout.fullwidth-tabs-navigation-inner-scroll > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.fullwidth-tabs-navigation-inner-scroll > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.fullwidth-tabs-navigation-inner-scroll > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.fullwidth-tabs-navigation-inner-scroll > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.left-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-basic-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.left-sidebar-fullheight-basic-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.left-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-basic-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.left-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-standard-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-standard-drawer-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-standard-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group {
  height: 100%;
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.left-sidebar-content-standard-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-content-standard-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.left-sidebar-content-standard-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.left-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-content-standard-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-content-standard-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.left-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.left-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
  height: 56px;
}
.content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.left-sidebar-content-tabs-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
  height: 56px;
}
.content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.left-sidebar-content-tabs-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group {
  height: 100%;
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
  height: 56px;
}
.content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
  height: 56px;
}
.content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.left-sidebar-content-tabs-navigation-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
  height: 56px;
}
.content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.left-sidebar-content-tabs-navigation-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
  height: 56px;
}
.content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.right-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-basic-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.right-sidebar-fullheight-basic-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.right-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-basic-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.right-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-standard-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-standard-drawer-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-standard-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group {
  height: 100%;
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
}
.content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  padding-bottom: 24px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.right-sidebar-content-standard-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-content-standard-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.right-sidebar-content-standard-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.right-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-content-standard-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-content-standard-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.right-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.right-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
    padding: 24px;
  }
}
.content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
  height: 56px;
}
.content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.right-sidebar-content-tabs-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
  height: 56px;
}
.content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.right-sidebar-content-tabs-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group {
  height: 100%;
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
  padding: 0 32px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header.mat-tab-header-pagination-controls-enabled {
    padding: 0;
  }
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-header-pagination {
  padding: 0;
  box-shadow: none;
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header .mat-tab-label {
  min-width: 128px;
  height: 56px;
}
.content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
  padding: 40px;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-body-wrapper .mat-tab-body .mat-tab-body-content {
    padding: 24px;
  }
}
.content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container {
  flex: 1 1 auto;
}
.content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
  height: 56px;
}
.content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.right-sidebar-content-tabs-navigation-content-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  overflow: visible;
}
.content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
  height: 56px;
}
.content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container {
  flex: 1 1 auto;
  height: 100%;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  min-width: 288px;
  max-width: 288px;
  width: 288px;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav {
    padding: 0 24px;
  }
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main nav .mat-tab-link {
  min-width: 128px;
  height: 56px;
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
  flex: 1 1 auto;
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 0) and (max-width: 599px) {
  .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner {
    padding: 24px;
  }
}
.content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .main-inner > *:not(router-outlet) {
  display: block;
}
.treo-theme-dark .content-layout.fullwidth-standard-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.fullwidth-standard-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.fullwidth-standard-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.fullwidth-tabs-inner-scroll > .header {
  background: #27303f;
}
.treo-theme-dark .content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header {
  background: #27303f;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-content-standard-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-content-standard-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-content-standard-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-content-standard-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-content-standard-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-content-standard-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.treo-theme-light .content-layout.fullwidth-standard-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.fullwidth-standard-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.fullwidth-standard-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.fullwidth-tabs-normal-scroll > .header {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-content-scroll > .header {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-inner-scroll > .header {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-navigation-normal-scroll > .header {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-navigation-normal-scroll > .main nav {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-navigation-content-scroll > .header {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-navigation-content-scroll > .main nav {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-navigation-inner-scroll > .header {
  background: white;
}
.treo-theme-light .content-layout.fullwidth-tabs-navigation-inner-scroll > .main nav {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-content-standard-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-content-standard-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-content-standard-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-content-standard-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-content-standard-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-content-standard-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.treo-theme-light .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-dark .content-layout.fullwidth-standard-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.fullwidth-standard-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.fullwidth-standard-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.fullwidth-tabs-inner-scroll > .header {
  background: #27303f;
}
.theme-dark .content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header {
  background: #27303f;
}
.theme-dark .content-layout.left-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-content-standard-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-content-standard-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-content-standard-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-content-tabs-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-content-tabs-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-content-tabs-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-basic-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-basic-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-basic-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-content-standard-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-content-standard-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-content-standard-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-content-standard-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-content-standard-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-content-standard-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-content-tabs-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-content-tabs-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-content-tabs-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-dark .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header {
  border-bottom: 1px solid rgba(241, 245, 249, 0.12);
}
.theme-dark .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer {
  background: #1a202e;
}
.theme-light .content-layout.fullwidth-standard-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.fullwidth-standard-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.fullwidth-standard-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.fullwidth-tabs-normal-scroll > .header {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-normal-scroll > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-content-scroll > .header {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-content-scroll > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-inner-scroll > .header {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-inner-scroll > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-navigation-normal-scroll > .header {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-navigation-normal-scroll > .main nav {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-navigation-content-scroll > .header {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-navigation-content-scroll > .main nav {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-navigation-inner-scroll > .header {
  background: white;
}
.theme-light .content-layout.fullwidth-tabs-navigation-inner-scroll > .main nav {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.left-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-content-standard-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-content-standard-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-content-standard-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-content-tabs-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-content-tabs-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-content-tabs-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.left-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-standard-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-fullheight-standard-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-fullheight-standard-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-fullheight-standard-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-drawer-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .header {
  background: white;
}
.theme-light .content-layout.right-sidebar-fullheight-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-content-standard-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-content-standard-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-content-standard-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-content-tabs-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-content-tabs-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-content-tabs-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-content-tabs-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-content-tabs-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-content-tabs-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-group .mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-content-tabs-navigation-normal-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-content-tabs-navigation-content-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
.theme-light .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
.theme-light .content-layout.right-sidebar-content-tabs-navigation-inner-scroll > .mat-drawer-container .mat-drawer-content > .main .mat-tab-nav-bar.mat-tab-header {
  background: white;
}
/* Colors for the ripple elements.*/
/* stylelint-disable-next-line material/theme-mixin-api */
/* stylelint-disable-next-line material/theme-mixin-api */
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * This file is being used by injecting custom TailwindCSS variants.
 *
 * These variants are different because these will not generate any
 * CSS rules, but they will generate SCSS variables from your Tailwind
 * config file.
 *
 * The generated output will be used by Treo.
 * Do NOT modify or use this file to generate your own variants.
 */
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.example-viewer {
  display: flex;
  flex-direction: column;
  margin: 32px 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.example-viewer .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  min-height: 88px;
  max-height: 88px;
  padding: 0 40px;
}
.example-viewer .title h6 {
  font-weight: 700;
}
.example-viewer .title .controls {
  display: flex;
  align-items: center;
}
.example-viewer .title .controls > * + * {
  margin-left: 8px;
}
.example-viewer mat-tab-group .mat-tab-header {
  border-top: 1px solid;
}
.example-viewer mat-tab-group .mat-tab-body-content {
  padding: 40px;
}
.example-viewer mat-tab-group .mat-tab-body-content .treo-highlight {
  margin: 0;
}
.example-viewer mat-tab-group .mat-tab-body-content .treo-highlight pre {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.treo-theme-dark .example-viewer {
  background: #27303f;
}
.treo-theme-dark .example-viewer mat-tab-group .mat-tab-header {
  border-color: rgba(241, 245, 249, 0.12);
  background: #27303f;
}
.treo-theme-dark .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight pre[class*=language-] {
  border: none;
}
.treo-theme-dark .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight code[class*=language-],
.treo-theme-dark .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight pre[class*=language-] {
  background: none;
}
.treo-theme-light .example-viewer {
  background: white;
}
.treo-theme-light .example-viewer mat-tab-group .mat-tab-header {
  border-color: #e2e8f0;
  background: #fbfdfe;
}
.treo-theme-light .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight pre[class*=language-] {
  border: none;
}
.treo-theme-light .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight code[class*=language-],
.treo-theme-light .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight pre[class*=language-] {
  background: none;
}
.theme-dark .example-viewer {
  background: #27303f;
}
.theme-dark .example-viewer mat-tab-group .mat-tab-header {
  border-color: rgba(241, 245, 249, 0.12);
  background: #27303f;
}
.theme-dark .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight pre[class*=language-] {
  border: none;
}
.theme-dark .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight code[class*=language-],
.theme-dark .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight pre[class*=language-] {
  background: none;
}
.theme-light .example-viewer {
  background: white;
}
.theme-light .example-viewer mat-tab-group .mat-tab-header {
  border-color: #e2e8f0;
  background: #fbfdfe;
}
.theme-light .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight pre[class*=language-] {
  border: none;
}
.theme-light .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight code[class*=language-],
.theme-light .example-viewer mat-tab-group .mat-tab-body-content .treo-highlight pre[class*=language-] {
  background: none;
}
treo-card.auth-card {
  margin: 8px;
}
@media (min-width: 0) and (max-width: 599px) {
  treo-card.auth-card {
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
  }
}
treo-card.auth-card.classic .content-container {
  display: none !important;
}
treo-card.auth-card.modern, treo-card.auth-card.modern-alt {
  max-width: 1200px;
  width: calc(100% - 16px);
}
@media (max-width: 959px) {
  treo-card.auth-card.modern, treo-card.auth-card.modern-alt {
    width: auto;
  }
}
@media (min-width: 960px) {
  treo-card.auth-card.modern .form-container, treo-card.auth-card.modern-alt .form-container {
    padding: 64px;
  }
}
treo-card.auth-card.modern-alt .form-container {
  order: 2;
}
treo-card.auth-card.modern-alt .content-container {
  order: 1;
}
treo-card.auth-card.fullscreen, treo-card.auth-card.fullscreen-alt {
  width: 100%;
  height: 100%;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 959px) {
  treo-card.auth-card.fullscreen, treo-card.auth-card.fullscreen-alt {
    justify-content: center;
  }
}
treo-card.auth-card.fullscreen .form-container, treo-card.auth-card.fullscreen-alt .form-container {
  width: 45%;
}
@media (max-width: 959px) {
  treo-card.auth-card.fullscreen .form-container, treo-card.auth-card.fullscreen-alt .form-container {
    width: auto;
    padding: 40px;
  }
}
treo-card.auth-card.fullscreen .form-container .form, treo-card.auth-card.fullscreen-alt .form-container .form {
  margin: auto 32px auto auto;
}
@media (max-width: 959px) {
  treo-card.auth-card.fullscreen .form-container .form, treo-card.auth-card.fullscreen-alt .form-container .form {
    margin: 0;
  }
}
treo-card.auth-card.fullscreen-alt .form-container {
  order: 2;
}
treo-card.auth-card.fullscreen-alt .form-container .form {
  margin: auto auto auto 32px;
}
@media (max-width: 959px) {
  treo-card.auth-card.fullscreen-alt .form-container .form {
    margin: 0;
  }
}
treo-card.auth-card.fullscreen-alt .content-container {
  order: 1;
}
treo-card.auth-card .form-container {
  display: flex;
  flex-direction: column;
  order: 1;
  padding: 48px;
}
@media (min-width: 0) and (max-width: 599px) {
  treo-card.auth-card .form-container {
    padding: 40px;
  }
}
treo-card.auth-card .form-container .form {
  width: 100%;
  min-width: 320px;
  max-width: 320px;
}
@media (min-width: 0) and (max-width: 599px) {
  treo-card.auth-card .form-container .form {
    max-width: 0;
  }
}
treo-card.auth-card .form-container .form .logo {
  width: 48px;
}
treo-card.auth-card .form-container .form .title {
  margin: 32px 0 0 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.25;
}
treo-card.auth-card .form-container .form .subtitle {
  display: flex;
  align-items: baseline;
  margin-top: 2px;
  font-weight: 500;
}
treo-card.auth-card .form-container .form .subtitle .link {
  margin-left: 4px;
}
treo-card.auth-card .form-container .form treo-message {
  margin-top: 32px;
  margin-bottom: -16px;
}
treo-card.auth-card .form-container .form form {
  margin-top: 32px;
}
treo-card.auth-card .form-container .form form .mat-form-field {
  width: 100%;
}
treo-card.auth-card .form-container .form .field-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 6px 0 12px 0;
}
treo-card.auth-card .form-container .form .field-footer .link {
  font-size: 13px;
  font-weight: 500;
}
treo-card.auth-card .form-container .form .submit-button {
  width: 100%;
  margin-top: 12px;
}
treo-card.auth-card .form-container .form .sso {
  display: flex;
  flex-direction: column;
}
treo-card.auth-card .form-container .form .sso .separator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin: 32px 0;
}
treo-card.auth-card .form-container .form .sso .separator:before, treo-card.auth-card .form-container .form .sso .separator:after {
  content: "";
  display: flex;
  flex: 1 1 auto;
  height: 1px;
}
treo-card.auth-card .form-container .form .sso .separator:before {
  margin-right: 8px;
}
treo-card.auth-card .form-container .form .sso .separator:after {
  margin-left: 8px;
}
treo-card.auth-card .form-container .form .sso .buttons {
  display: flex;
  align-items: center;
}
treo-card.auth-card .form-container .form .sso .buttons button {
  flex: 1 1 auto;
  margin-right: 8px;
}
treo-card.auth-card .form-container .form .sso .buttons button:last-child {
  margin-right: 0;
}
treo-card.auth-card .form-container .form .sso .buttons button .mat-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  font-size: 20px;
  line-height: 20px;
}
treo-card.auth-card .form-container .form .sso .buttons button .mat-icon svg {
  width: 20px;
  height: 20px;
}
treo-card.auth-card .form-container .form .form-footer {
  width: 100%;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 500;
}
treo-card.auth-card .form-container .form .form-footer .link {
  margin-left: 4px;
}
treo-card.auth-card .content-container {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  order: 2;
  overflow: hidden;
}
@media (max-width: 959px) {
  treo-card.auth-card .content-container {
    display: none;
  }
}
treo-card.auth-card .content-container .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 900px;
  pointer-events: none;
}
treo-card.auth-card .content-container .background path {
  opacity: 0.1;
}
treo-card.auth-card .content-container .content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  width: 100%;
  margin: 64px;
}
treo-card.auth-card .content-container .content .title {
  display: flex;
  flex-direction: column;
}
treo-card.auth-card .content-container .content .title span {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
treo-card.auth-card .content-container .content .description {
  margin-top: 12px;
  font-size: 15px;
}
treo-card.auth-card .content-container .content .learn-more-button {
  width: 160px;
  margin-top: 40px;
}
@media (min-width: 0) and (max-width: 599px) {
  .treo-theme-dark treo-card.auth-card {
    background: transparent;
  }
}
@media (max-width: 959px) {
  .treo-theme-dark treo-card.auth-card.fullscreen, .treo-theme-dark treo-card.auth-card.fullscreen-alt {
    background: transparent;
  }
}
.treo-theme-dark treo-card.auth-card .form-container .form .form-footer span {
  color: #97a6ba;
}
.treo-theme-dark treo-card.auth-card .form-container .form .sso .separator {
  color: #97a6ba;
}
.treo-theme-dark treo-card.auth-card .form-container .form .sso .separator:before, .treo-theme-dark treo-card.auth-card .form-container .form .sso .separator:after {
  background: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark treo-card.auth-card .content-container {
  background: #364152;
  color: white;
}
.treo-theme-dark treo-card.auth-card .content-container .background path {
  fill: #1a202e;
}
.treo-theme-dark treo-card.auth-card .content-container .content .description {
  opacity: 0.7;
}
@media (min-width: 0) and (max-width: 599px) {
  .treo-theme-light treo-card.auth-card {
    background: transparent;
  }
}
@media (max-width: 959px) {
  .treo-theme-light treo-card.auth-card.fullscreen, .treo-theme-light treo-card.auth-card.fullscreen-alt {
    background: transparent;
  }
}
.treo-theme-light treo-card.auth-card .form-container .form .form-footer span {
  color: #64748b;
}
.treo-theme-light treo-card.auth-card .form-container .form .sso .separator {
  color: #64748b;
}
.treo-theme-light treo-card.auth-card .form-container .form .sso .separator:before, .treo-theme-light treo-card.auth-card .form-container .form .sso .separator:after {
  background: #e2e8f0;
}
.treo-theme-light treo-card.auth-card .content-container {
  background: #5145cd;
  color: white;
}
.treo-theme-light treo-card.auth-card .content-container .background path {
  fill: #e5edff;
}
.treo-theme-light treo-card.auth-card .content-container .content .description {
  opacity: 0.7;
}
@media (min-width: 0) and (max-width: 599px) {
  .theme-dark treo-card.auth-card {
    background: transparent;
  }
}
@media (max-width: 959px) {
  .theme-dark treo-card.auth-card.fullscreen, .theme-dark treo-card.auth-card.fullscreen-alt {
    background: transparent;
  }
}
.theme-dark treo-card.auth-card .form-container .form .form-footer span {
  color: #97a6ba;
}
.theme-dark treo-card.auth-card .form-container .form .sso .separator {
  color: #97a6ba;
}
.theme-dark treo-card.auth-card .form-container .form .sso .separator:before, .theme-dark treo-card.auth-card .form-container .form .sso .separator:after {
  background: rgba(241, 245, 249, 0.12);
}
.theme-dark treo-card.auth-card .content-container {
  background: #364152;
  color: white;
}
.theme-dark treo-card.auth-card .content-container .background path {
  fill: #1a202e;
}
.theme-dark treo-card.auth-card .content-container .content .description {
  opacity: 0.7;
}
@media (min-width: 0) and (max-width: 599px) {
  .theme-light treo-card.auth-card {
    background: transparent;
  }
}
@media (max-width: 959px) {
  .theme-light treo-card.auth-card.fullscreen, .theme-light treo-card.auth-card.fullscreen-alt {
    background: transparent;
  }
}
.theme-light treo-card.auth-card .form-container .form .form-footer span {
  color: #64748b;
}
.theme-light treo-card.auth-card .form-container .form .sso .separator {
  color: #64748b;
}
.theme-light treo-card.auth-card .form-container .form .sso .separator:before, .theme-light treo-card.auth-card .form-container .form .sso .separator:after {
  background: #e2e8f0;
}
.theme-light treo-card.auth-card .content-container {
  background: #5145cd;
  color: white;
}
.theme-light treo-card.auth-card .content-container .background path {
  fill: #e5edff;
}
.theme-light treo-card.auth-card .content-container .content .description {
  opacity: 0.7;
}
.treo-theme-dark input,
.treo-theme-dark textarea {
  background: transparent;
}
.treo-theme-dark input::-moz-placeholder, .treo-theme-dark textarea::-moz-placeholder {
  color: #64748b;
}
.treo-theme-dark input:-ms-input-placeholder, .treo-theme-dark textarea:-ms-input-placeholder {
  color: #64748b;
}
.treo-theme-dark input::-ms-input-placeholder, .treo-theme-dark textarea::-ms-input-placeholder {
  color: #64748b;
}
.treo-theme-dark input::placeholder,
.treo-theme-dark textarea::placeholder {
  color: #64748b;
}
.treo-theme-dark input::-moz-placeholder,
.treo-theme-dark textarea::-moz-placeholder {
  color: #64748b;
}
.treo-theme-dark input::-webkit-input-placeholder,
.treo-theme-dark textarea::-webkit-input-placeholder {
  color: #64748b;
}
.treo-theme-dark input:-ms-input-placeholder,
.treo-theme-dark textarea:-ms-input-placeholder {
  color: #64748b;
}
.treo-theme-dark input:-webkit-autofill,
.treo-theme-dark textarea:-webkit-autofill {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.treo-theme-dark input:-webkit-autofill:hover,
.treo-theme-dark textarea:-webkit-autofill:hover {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.treo-theme-dark input:-webkit-autofill:focus,
.treo-theme-dark textarea:-webkit-autofill:focus {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.treo-theme-dark input:-webkit-autofill:active,
.treo-theme-dark textarea:-webkit-autofill:active {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.treo-theme-light input,
.treo-theme-light textarea {
  background: transparent;
}
.treo-theme-light input::-moz-placeholder, .treo-theme-light textarea::-moz-placeholder {
  color: #97a6ba;
}
.treo-theme-light input:-ms-input-placeholder, .treo-theme-light textarea:-ms-input-placeholder {
  color: #97a6ba;
}
.treo-theme-light input::-ms-input-placeholder, .treo-theme-light textarea::-ms-input-placeholder {
  color: #97a6ba;
}
.treo-theme-light input::placeholder,
.treo-theme-light textarea::placeholder {
  color: #97a6ba;
}
.treo-theme-light input::-moz-placeholder,
.treo-theme-light textarea::-moz-placeholder {
  color: #97a6ba;
}
.treo-theme-light input::-webkit-input-placeholder,
.treo-theme-light textarea::-webkit-input-placeholder {
  color: #97a6ba;
}
.treo-theme-light input:-ms-input-placeholder,
.treo-theme-light textarea:-ms-input-placeholder {
  color: #97a6ba;
}
.treo-theme-light input:-webkit-autofill,
.treo-theme-light textarea:-webkit-autofill {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.treo-theme-light input:-webkit-autofill:hover,
.treo-theme-light textarea:-webkit-autofill:hover {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.treo-theme-light input:-webkit-autofill:focus,
.treo-theme-light textarea:-webkit-autofill:focus {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.treo-theme-light input:-webkit-autofill:active,
.treo-theme-light textarea:-webkit-autofill:active {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.theme-dark input,
.theme-dark textarea {
  background: transparent;
}
.theme-dark input::-moz-placeholder, .theme-dark textarea::-moz-placeholder {
  color: #64748b;
}
.theme-dark input:-ms-input-placeholder, .theme-dark textarea:-ms-input-placeholder {
  color: #64748b;
}
.theme-dark input::-ms-input-placeholder, .theme-dark textarea::-ms-input-placeholder {
  color: #64748b;
}
.theme-dark input::placeholder,
.theme-dark textarea::placeholder {
  color: #64748b;
}
.theme-dark input::-moz-placeholder,
.theme-dark textarea::-moz-placeholder {
  color: #64748b;
}
.theme-dark input::-webkit-input-placeholder,
.theme-dark textarea::-webkit-input-placeholder {
  color: #64748b;
}
.theme-dark input:-ms-input-placeholder,
.theme-dark textarea:-ms-input-placeholder {
  color: #64748b;
}
.theme-dark input:-webkit-autofill,
.theme-dark textarea:-webkit-autofill {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.theme-dark input:-webkit-autofill:hover,
.theme-dark textarea:-webkit-autofill:hover {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.theme-dark input:-webkit-autofill:focus,
.theme-dark textarea:-webkit-autofill:focus {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.theme-dark input:-webkit-autofill:active,
.theme-dark textarea:-webkit-autofill:active {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.theme-light input,
.theme-light textarea {
  background: transparent;
}
.theme-light input::-moz-placeholder, .theme-light textarea::-moz-placeholder {
  color: #97a6ba;
}
.theme-light input:-ms-input-placeholder, .theme-light textarea:-ms-input-placeholder {
  color: #97a6ba;
}
.theme-light input::-ms-input-placeholder, .theme-light textarea::-ms-input-placeholder {
  color: #97a6ba;
}
.theme-light input::placeholder,
.theme-light textarea::placeholder {
  color: #97a6ba;
}
.theme-light input::-moz-placeholder,
.theme-light textarea::-moz-placeholder {
  color: #97a6ba;
}
.theme-light input::-webkit-input-placeholder,
.theme-light textarea::-webkit-input-placeholder {
  color: #97a6ba;
}
.theme-light input:-ms-input-placeholder,
.theme-light textarea:-ms-input-placeholder {
  color: #97a6ba;
}
.theme-light input:-webkit-autofill,
.theme-light textarea:-webkit-autofill {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.theme-light input:-webkit-autofill:hover,
.theme-light textarea:-webkit-autofill:hover {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.theme-light input:-webkit-autofill:focus,
.theme-light textarea:-webkit-autofill:focus {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.theme-light input:-webkit-autofill:active,
.theme-light textarea:-webkit-autofill:active {
  -webkit-transition: "background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}
.mat-accordion .mat-expansion-panel {
  margin-bottom: 24px;
  border-radius: 8px !important;
  transition: box-shadow 225ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}
.mat-accordion .mat-expansion-panel:last-child {
  margin-bottom: 0;
}
.mat-accordion .mat-expansion-panel.mat-expanded, .mat-accordion .mat-expansion-panel:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header {
  font-size: 14px;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  margin-right: 28px;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header .mat-expansion-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header .mat-expansion-indicator:after {
  border-color: currentColor !important;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-body {
  line-height: 1.7;
}
.mat-button,
.mat-fab,
.mat-flat-button,
.mat-icon-button,
.mat-mini-fab,
.mat-raised-button,
.mat-stroked-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  line-height: 1 !important;
}
.mat-button .mat-button-wrapper,
.mat-fab .mat-button-wrapper,
.mat-flat-button .mat-button-wrapper,
.mat-icon-button .mat-button-wrapper,
.mat-mini-fab .mat-button-wrapper,
.mat-raised-button .mat-button-wrapper,
.mat-stroked-button .mat-button-wrapper {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.mat-button.treo-mat-button-large,
.mat-fab.treo-mat-button-large,
.mat-flat-button.treo-mat-button-large,
.mat-icon-button.treo-mat-button-large,
.mat-mini-fab.treo-mat-button-large,
.mat-raised-button.treo-mat-button-large,
.mat-stroked-button.treo-mat-button-large {
  height: 48px;
  min-height: 48px;
  max-height: 48px;
}
.mat-fab {
  max-height: 56px;
}
.mat-button .mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle,
.mat-fab .mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle,
.mat-flat-button .mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle,
.mat-icon-button .mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle,
.mat-fab .mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle,
.mat-mini-fab .mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle,
.mat-raised-button .mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle,
.mat-stroked-button .mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle {
  stroke: currentColor;
  -webkit-animation-duration: 6000ms;
          animation-duration: 6000ms;
}
.mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  background-clip: padding-box;
}
.mat-checkbox {
  display: inline-flex;
}
.mat-checkbox .mat-checkbox-layout {
  white-space: normal;
}
.mat-checkbox .mat-checkbox-layout .mat-checkbox-inner-container {
  display: inline-flex;
  align-items: center;
  margin: 0 8px 0 0;
}
.mat-checkbox .mat-checkbox-layout .mat-checkbox-inner-container:after {
  content: "​";
}
.mat-checkbox .mat-checkbox-layout .mat-checkbox-label {
  line-height: inherit;
}
.mat-chip {
  font-weight: 500 !important;
}
.mat-form-field.mat-form-field-appearance-fill.mat-form-field-has-label.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label-wrapper .mat-form-field-label {
  width: 100% !important;
  transform: none !important;
}
.mat-form-field.mat-form-field-appearance-fill.mat-form-field-type-mat-native-select .mat-form-field-infix select {
  top: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 18px;
}
.mat-form-field.mat-form-field-appearance-fill.mat-form-field-type-mat-native-select .mat-form-field-infix:after {
  display: none;
}
.mat-form-field.mat-form-field-appearance-fill.mat-form-field-has-label .mat-form-field-wrapper {
  margin-top: 24px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper {
  margin-bottom: 16px;
  padding-bottom: 0;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 16px;
  border-width: 1px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > .mat-icon {
  margin-right: 12px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > .mat-icon-button {
  margin: 0 4px 0 -8px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > .mat-select {
  margin-right: 10px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > .mat-datepicker-toggle {
  margin-left: -8px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > *:not(.mat-icon):not(.mat-icon-button):not(.mat-select):not(.mat-datepicker-toggle) {
  margin-right: 12px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > .mat-icon {
  margin-left: 12px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > .mat-icon-button {
  margin: 0 -8px 0 4px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > .mat-select {
  margin-left: 10px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > .mat-datepicker-toggle {
  margin-right: -8px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon-button,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon-button {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-raised-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-stroked-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-flat-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-fab .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-mini-fab .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-raised-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-stroked-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-flat-button .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-fab .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-mini-fab .mat-icon {
  margin: 0 !important;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  font-size: 24px;
  line-height: 24px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-raised-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-stroked-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-flat-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-fab .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-mini-fab .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-raised-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-stroked-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-flat-button .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-fab .mat-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-mini-fab .mat-icon svg {
  width: 24px;
  height: 24px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-datepicker-toggle-default-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-datepicker-toggle-default-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  font-size: 24px;
  line-height: 24px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-datepicker-toggle-default-icon svg,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-datepicker-toggle-default-icon svg {
  width: 24px;
  height: 24px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select {
  display: flex;
  align-items: center;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select .mat-select-trigger,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select .mat-select-trigger {
  display: flex;
  align-items: center;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select .mat-select-trigger .mat-select-value,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select .mat-select-trigger .mat-select-value {
  display: flex;
  max-width: none;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select .mat-select-trigger .mat-select-value mat-select-trigger .mat-icon,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select .mat-select-trigger .mat-select-value mat-select-trigger .mat-icon {
  margin: 0 !important;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select .mat-select-trigger .mat-select-arrow-wrapper,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select .mat-select-trigger .mat-select-arrow-wrapper {
  display: flex;
  align-items: center;
  transform: none;
  margin-left: 4px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select .mat-select-trigger .mat-select-arrow-wrapper .mat-select-arrow,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select .mat-select-trigger .mat-select-arrow-wrapper .mat-select-arrow {
  min-height: 0;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix {
  position: static;
  display: flex;
  align-items: center;
  width: 88px;
  padding: 0;
  border: 0;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-input-element {
  padding: 14px 0;
  margin-top: 0;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix textarea.mat-input-element {
  display: flex;
  align-self: stretch;
  min-height: 36px;
  height: auto;
  margin: 10px 0;
  padding: 4px 6px 4px 0 !important;
  transform: none;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-select {
  display: inline-flex;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-select .mat-select-trigger {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-select .mat-select-trigger .mat-select-value {
  display: flex;
  position: relative;
  max-width: none;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-select .mat-select-trigger .mat-select-value .mat-select-value-text {
  display: inline-flex;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-select .mat-select-trigger .mat-select-value .mat-select-value-text > * {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-select .mat-select-arrow-wrapper {
  transform: translateY(0);
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-select .mat-select-arrow-wrapper .mat-select-arrow {
  margin: 0 0 0 8px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-chip-list {
  width: 100%;
  margin: 0 -8px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-chip-list .mat-chip-input {
  margin: 0 0 0 8px;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-form-field-label-wrapper {
  top: -25px;
  height: auto;
  padding-top: 0;
  overflow: visible;
  pointer-events: auto;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-form-field-label-wrapper .mat-form-field-label {
  position: relative;
  top: 0;
  margin-top: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: none;
  font-weight: 500;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-underline {
  display: none;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-subscript-wrapper {
  position: relative;
  top: auto;
  padding: 0;
  margin-top: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-subscript-wrapper > div {
  display: contents;
}
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-subscript-wrapper .mat-error,
.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-subscript-wrapper .mat-hint {
  display: block;
  margin-top: 4px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-textarea.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.mat-form-field.mat-form-field-appearance-fill.treo-mat-textarea.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  align-items: flex-start;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-textarea.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix {
  padding-top: 12px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-textarea.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  padding-top: 12px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-no-subscript.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper {
  padding-bottom: 0;
  margin-bottom: 0;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-no-subscript.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-subscript-wrapper {
  display: none !important;
  height: 0 !important;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-rounded.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex {
  border-radius: 24px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-rounded.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix {
  border-radius: 24px 0 0 24px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-rounded.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  border-radius: 0 24px 24px 0;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-dense.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex {
  min-height: 40px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-dense.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon-button,
.mat-form-field.mat-form-field-appearance-fill.treo-mat-dense.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon-button {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-dense.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > .mat-icon-button {
  margin-left: -4px;
  margin-right: 12px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-dense.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > .mat-icon-button {
  margin-left: 12px;
  margin-right: -4px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-dense.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix .mat-input-element {
  padding: 11px 0;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-dense.treo-mat-rounded.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex {
  border-radius: 20px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-dense.treo-mat-rounded.treo-mat-emphasized-affix.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix {
  border-radius: 20px 0 0 20px !important;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-dense.treo-mat-rounded.treo-mat-emphasized-affix.mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  border-radius: 0 20px 20px 0 !important;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix {
  margin: 0 16px 0 -16px;
  padding-left: 16px;
  border-radius: 6px 0 0 6px;
  border-right-width: 1px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > .mat-icon {
  margin-right: 16px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > .mat-icon-button {
  margin: 0 8px 0 -8px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > .mat-select {
  margin-right: 12px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > .mat-datepicker-toggle {
  margin-right: 8px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix > *:not(.mat-icon):not(.mat-icon-button):not(.mat-select):not(.mat-datepicker-toggle) {
  margin-right: 16px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  margin: 0 -16px 0 16px;
  padding-right: 16px;
  border-radius: 0 6px 6px 0;
  border-left-width: 1px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > .mat-icon {
  margin-left: 16px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > .mat-icon-button {
  margin: 0 -8px 0 8px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > .mat-select {
  margin: 0 -4px 0 16px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > .mat-datepicker-toggle {
  margin-left: 8px;
}
.mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix > *:not(.mat-icon):not(.mat-icon-button):not(.mat-select):not(.mat-datepicker-toggle) {
  margin-left: 16px;
}
.mat-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  font-size: 24px;
  line-height: 24px;
  -webkit-appearance: none !important;
}
.mat-input-element::-moz-placeholder {
  -moz-transition: none !important;
  transition: none !important;
}
.mat-input-element:-ms-input-placeholder {
  -ms-transition: none !important;
  transition: none !important;
}
.mat-input-element::-ms-input-placeholder {
  -ms-transition: none !important;
  transition: none !important;
}
.mat-input-element::placeholder {
  transition: none !important;
}
.mat-input-element::-moz-placeholder {
  -moz-transition: none !important;
  transition: none !important;
}
.mat-input-element::-webkit-input-placeholder {
  -webkit-transition: none !important;
  transition: none !important;
}
.mat-input-element:-ms-input-placeholder {
  -ms-transition: none !important;
  transition: none !important;
}
.mat-menu-panel {
  min-width: 144px !important;
}
.mat-menu-panel .mat-menu-content .mat-menu-item {
  display: flex;
  align-items: center;
}
.mat-menu-panel .mat-menu-content .mat-menu-item.mat-menu-item-submenu-trigger {
  padding-right: 40px;
}
.mat-menu-panel .mat-menu-content .mat-menu-item .mat-icon {
  margin-right: 12px;
}
.mat-menu-panel .mat-menu-content mat-divider {
  margin: 8px 0;
}
.mat-paginator .mat-paginator-container {
  padding: 8px 16px;
}
@media (min-width: 0) and (max-width: 599px) {
  .mat-paginator .mat-paginator-container {
    justify-content: space-between;
  }
}
.mat-paginator .mat-paginator-container .mat-paginator-page-size {
  align-items: center;
  min-height: 40px;
  margin: 8px;
}
.mat-paginator .mat-paginator-container .mat-paginator-page-size .mat-paginator-page-size-label {
  margin-right: 12px;
}
@media (min-width: 0) and (max-width: 599px) {
  .mat-paginator .mat-paginator-container .mat-paginator-page-size .mat-paginator-page-size-label {
    display: none;
  }
}
.mat-paginator .mat-paginator-container .mat-paginator-page-size .mat-paginator-page-size-select {
  margin: 0;
}
.mat-paginator .mat-paginator-container .mat-paginator-page-size .mat-paginator-page-size-select .mat-form-field-wrapper {
  margin-bottom: 0;
}
.mat-paginator .mat-paginator-container .mat-paginator-page-size .mat-paginator-page-size-select .mat-form-field-wrapper .mat-form-field-flex {
  min-height: 32px;
  padding: 0 10px;
}
.mat-paginator .mat-paginator-container .mat-paginator-range-actions {
  margin: 8px 0;
}
.mat-paginator .mat-paginator-container .mat-paginator-range-actions .mat-paginator-range-label {
  margin-right: 16px;
}
.mat-select {
  display: inline-flex;
}
.mat-select .mat-select-placeholder {
  transition: none !important;
}
.mat-select .mat-select-trigger {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: auto;
}
.mat-select .mat-select-trigger .mat-select-value {
  display: flex;
  position: relative;
  max-width: none;
}
.mat-select .mat-select-trigger .mat-select-value .mat-select-value-text {
  display: inline-flex;
}
.mat-select .mat-select-trigger .mat-select-value .mat-select-value-text > * {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mat-select .mat-select-arrow-wrapper {
  transform: translateY(0);
}
.mat-select .mat-select-arrow-wrapper .mat-select-arrow {
  margin: 0 4px 0 2px;
}
.mat-step-icon .mat-icon {
  color: currentColor !important;
}
.mat-step-label,
.mat-step-label-selected {
  font-weight: 500 !important;
}
.mat-tab-label {
  opacity: 0.87 !important;
}
textarea.mat-input-element {
  box-sizing: content-box !important;
}
.treo-theme-dark .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused, .treo-theme-dark .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused, .treo-theme-dark .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover {
  background: transparent !important;
}
.treo-theme-dark .mat-accordion .mat-expansion-panel .mat-expansion-panel-body {
  color: #97a6ba;
}
.treo-theme-dark .mat-flat-button.mat-primary:not([disabled]) .mat-icon,
.treo-theme-dark .mat-raised-button.mat-primary:not([disabled]) .mat-icon,
.treo-theme-dark .mat-fab.mat-primary:not([disabled]) .mat-icon,
.treo-theme-dark .mat-mini-fab.mat-primary:not([disabled]) .mat-icon {
  color: #EDFAFA;
}
.treo-theme-dark .mat-flat-button.mat-accent:not([disabled]) .mat-icon,
.treo-theme-dark .mat-raised-button.mat-accent:not([disabled]) .mat-icon,
.treo-theme-dark .mat-fab.mat-accent:not([disabled]) .mat-icon,
.treo-theme-dark .mat-mini-fab.mat-accent:not([disabled]) .mat-icon {
  color: #FDF2F8;
}
.treo-theme-dark .mat-flat-button.mat-warn:not([disabled]) .mat-icon,
.treo-theme-dark .mat-raised-button.mat-warn:not([disabled]) .mat-icon,
.treo-theme-dark .mat-fab.mat-warn:not([disabled]) .mat-icon,
.treo-theme-dark .mat-mini-fab.mat-warn:not([disabled]) .mat-icon {
  color: #771D1D;
}
.treo-theme-dark .mat-flat-button .mat-icon,
.treo-theme-dark .mat-raised-button .mat-icon,
.treo-theme-dark .mat-fab .mat-icon,
.treo-theme-dark .mat-mini-fab .mat-icon {
  color: currentColor !important;
}
.treo-theme-dark .mat-flat-button .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button .mat-button-focus-overlay,
.treo-theme-dark .mat-fab .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.05);
}
.treo-theme-dark .mat-flat-button.mat-primary .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button.mat-primary .mat-button-focus-overlay,
.treo-theme-dark .mat-fab.mat-primary .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab.mat-primary .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.treo-theme-dark .mat-flat-button.mat-accent .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button.mat-accent .mat-button-focus-overlay,
.treo-theme-dark .mat-fab.mat-accent .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab.mat-accent .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.treo-theme-dark .mat-flat-button.mat-warn .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button.mat-warn .mat-button-focus-overlay,
.treo-theme-dark .mat-fab.mat-warn .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab.mat-warn .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.treo-theme-dark .mat-flat-button:hover .mat-button-focus-overlay, .treo-theme-dark .mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay, .treo-theme-dark .mat-flat-button.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-fab:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-fab.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab.cdk-program-focused .mat-button-focus-overlay {
  opacity: 1;
}
@media (hover: none) {
  .treo-theme-dark .mat-flat-button:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-fab:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab:hover .mat-button-focus-overlay {
    opacity: 0 !important;
  }
}
.treo-theme-dark .mat-flat-button[disabled] .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button[disabled] .mat-button-focus-overlay,
.treo-theme-dark .mat-fab[disabled] .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab[disabled] .mat-button-focus-overlay {
  opacity: 0 !important;
}
.treo-theme-dark .mat-button.mat-primary:not([disabled]) .mat-icon,
.treo-theme-dark .mat-icon-button.mat-primary:not([disabled]) .mat-icon,
.treo-theme-dark .mat-stroked-button.mat-primary:not([disabled]) .mat-icon {
  color: #0694A2;
}
.treo-theme-dark .mat-button.mat-accent:not([disabled]) .mat-icon,
.treo-theme-dark .mat-icon-button.mat-accent:not([disabled]) .mat-icon,
.treo-theme-dark .mat-stroked-button.mat-accent:not([disabled]) .mat-icon {
  color: #E74694;
}
.treo-theme-dark .mat-button.mat-warn:not([disabled]) .mat-icon,
.treo-theme-dark .mat-icon-button.mat-warn:not([disabled]) .mat-icon,
.treo-theme-dark .mat-stroked-button.mat-warn:not([disabled]) .mat-icon {
  color: #F98080;
}
.treo-theme-dark .mat-button .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.05) !important;
}
.treo-theme-dark .mat-button.mat-primary .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button.mat-primary .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: rgba(6, 148, 162, 0.1) !important;
}
.treo-theme-dark .mat-button.mat-accent .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button.mat-accent .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: rgba(231, 70, 148, 0.1) !important;
}
.treo-theme-dark .mat-button.mat-warn .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button.mat-warn .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: rgba(249, 128, 128, 0.1) !important;
}
.treo-theme-dark .mat-button:hover .mat-button-focus-overlay, .treo-theme-dark .mat-button.cdk-keyboard-focused .mat-button-focus-overlay, .treo-theme-dark .mat-button.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button.cdk-program-focused .mat-button-focus-overlay {
  opacity: 1;
}
@media (hover: none) {
  .treo-theme-dark .mat-button:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button:hover .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button:hover .mat-button-focus-overlay {
    opacity: 0 !important;
  }
}
.treo-theme-dark .mat-button[disabled] .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button[disabled] .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button[disabled] .mat-button-focus-overlay {
  opacity: 0 !important;
}
.treo-theme-dark .mat-flat-button .mat-button-wrapper,
.treo-theme-dark .mat-raised-button .mat-button-wrapper,
.treo-theme-dark .mat-fab .mat-button-wrapper,
.treo-theme-dark .mat-mini-fab .mat-button-wrapper,
.treo-theme-dark .mat-button .mat-button-wrapper,
.treo-theme-dark .mat-icon-button .mat-button-wrapper,
.treo-theme-dark .mat-stroked-button .mat-button-wrapper {
  position: relative;
  z-index: 2;
}
.treo-theme-dark .mat-flat-button .mat-button-focus-overlay,
.treo-theme-dark .mat-flat-button .mat-button-ripple,
.treo-theme-dark .mat-raised-button .mat-button-focus-overlay,
.treo-theme-dark .mat-raised-button .mat-button-ripple,
.treo-theme-dark .mat-fab .mat-button-focus-overlay,
.treo-theme-dark .mat-fab .mat-button-ripple,
.treo-theme-dark .mat-mini-fab .mat-button-focus-overlay,
.treo-theme-dark .mat-mini-fab .mat-button-ripple,
.treo-theme-dark .mat-button .mat-button-focus-overlay,
.treo-theme-dark .mat-button .mat-button-ripple,
.treo-theme-dark .mat-icon-button .mat-button-focus-overlay,
.treo-theme-dark .mat-icon-button .mat-button-ripple,
.treo-theme-dark .mat-stroked-button .mat-button-focus-overlay,
.treo-theme-dark .mat-stroked-button .mat-button-ripple {
  z-index: 1;
}
.treo-theme-dark .mat-stroked-button:not([disabled]) {
  border-color: #64748b;
}
.treo-theme-dark .mat-stroked-button[disabled] {
  border-color: #475569;
}
.treo-theme-dark .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-label {
  color: white !important;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-hint {
  color: #64748b;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-form-field-disabled {
  opacity: 0.7 !important;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-form-field-invalid .mat-form-field-wrapper .mat-form-field-flex {
  border-color: #F98080;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-focused .mat-form-field-wrapper .mat-form-field-flex {
  background-color: #27303f;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-focused:not(.mat-form-field-invalid) .mat-form-field-wrapper .mat-form-field-flex {
  border-color: #0694A2;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-form-field-type-mat-native-select .mat-form-field-infix select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2397a6ba' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -7px center;
  background-size: 24px;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: #64748b;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  color: #64748b;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon,
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon-button,
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select-value,
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon,
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon-button,
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select-value {
  color: #64748b;
}
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.treo-theme-dark .mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  background: #1a202e;
  border-color: #64748b;
}
.treo-theme-dark .mat-input-element::-moz-placeholder {
  color: #64748b;
}
.treo-theme-dark .mat-input-element:-ms-input-placeholder {
  color: #64748b;
}
.treo-theme-dark .mat-input-element::-ms-input-placeholder {
  color: #64748b;
}
.treo-theme-dark .mat-input-element::placeholder {
  color: #64748b;
}
.treo-theme-dark .mat-input-element::-moz-placeholder {
  color: #64748b;
}
.treo-theme-dark .mat-input-element:-ms-input-placeholder {
  color: #64748b;
}
.treo-theme-dark .mat-form-field-invalid .mat-input-element::-moz-placeholder {
  color: #F98080;
}
.treo-theme-dark .mat-form-field-invalid .mat-input-element:-ms-input-placeholder {
  color: #F98080;
}
.treo-theme-dark .mat-form-field-invalid .mat-input-element::-ms-input-placeholder {
  color: #F98080;
}
.treo-theme-dark .mat-form-field-invalid .mat-input-element::placeholder {
  color: #F98080;
}
.treo-theme-dark .mat-form-field-invalid .mat-input-element::-moz-placeholder {
  color: #F98080;
}
.treo-theme-dark .mat-form-field-invalid .mat-input-element::-webkit-input-placeholder {
  color: #F98080;
}
.treo-theme-dark .mat-form-field-invalid .mat-input-element:-ms-input-placeholder {
  color: #F98080;
}
.treo-theme-dark .mat-select .mat-select-placeholder {
  color: #64748b;
}
.treo-theme-dark .mat-form-field-invalid .mat-select .mat-select-placeholder {
  color: #F98080;
}
.treo-theme-dark .mat-toolbar.mat-primary .mat-icon {
  color: #EDFAFA;
}
.treo-theme-dark .mat-toolbar.mat-primary .text-secondary {
  color: rgba(237, 250, 250, 0.6);
}
.treo-theme-dark .mat-toolbar.mat-primary .text-hint {
  color: rgba(237, 250, 250, 0.38);
}
.treo-theme-dark .mat-toolbar.mat-primary .text-disabled {
  color: rgba(237, 250, 250, 0.38);
}
.treo-theme-dark .mat-toolbar.mat-primary .divider {
  color: rgba(237, 250, 250, 0.12);
}
.treo-theme-dark .mat-toolbar.mat-accent .mat-icon {
  color: #FDF2F8;
}
.treo-theme-dark .mat-toolbar.mat-accent .text-secondary {
  color: rgba(253, 242, 248, 0.6);
}
.treo-theme-dark .mat-toolbar.mat-accent .text-hint {
  color: rgba(253, 242, 248, 0.38);
}
.treo-theme-dark .mat-toolbar.mat-accent .text-disabled {
  color: rgba(253, 242, 248, 0.38);
}
.treo-theme-dark .mat-toolbar.mat-accent .divider {
  color: rgba(253, 242, 248, 0.12);
}
.treo-theme-dark .mat-toolbar.mat-warn .mat-icon {
  color: #771D1D;
}
.treo-theme-dark .mat-toolbar.mat-warn .text-secondary {
  color: rgba(119, 29, 29, 0.6);
}
.treo-theme-dark .mat-toolbar.mat-warn .text-hint {
  color: rgba(119, 29, 29, 0.38);
}
.treo-theme-dark .mat-toolbar.mat-warn .text-disabled {
  color: rgba(119, 29, 29, 0.38);
}
.treo-theme-dark .mat-toolbar.mat-warn .divider {
  color: rgba(119, 29, 29, 0.12);
}
.treo-theme-light .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused, .treo-theme-light .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused, .treo-theme-light .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover {
  background: transparent !important;
}
.treo-theme-light .mat-accordion .mat-expansion-panel .mat-expansion-panel-body {
  color: #64748b;
}
.treo-theme-light .mat-flat-button.mat-primary:not([disabled]) .mat-icon,
.treo-theme-light .mat-raised-button.mat-primary:not([disabled]) .mat-icon,
.treo-theme-light .mat-fab.mat-primary:not([disabled]) .mat-icon,
.treo-theme-light .mat-mini-fab.mat-primary:not([disabled]) .mat-icon {
  color: #F0F5FF;
}
.treo-theme-light .mat-flat-button.mat-accent:not([disabled]) .mat-icon,
.treo-theme-light .mat-raised-button.mat-accent:not([disabled]) .mat-icon,
.treo-theme-light .mat-fab.mat-accent:not([disabled]) .mat-icon,
.treo-theme-light .mat-mini-fab.mat-accent:not([disabled]) .mat-icon {
  color: #FBFDFE;
}
.treo-theme-light .mat-flat-button.mat-warn:not([disabled]) .mat-icon,
.treo-theme-light .mat-raised-button.mat-warn:not([disabled]) .mat-icon,
.treo-theme-light .mat-fab.mat-warn:not([disabled]) .mat-icon,
.treo-theme-light .mat-mini-fab.mat-warn:not([disabled]) .mat-icon {
  color: #FDF2F2;
}
.treo-theme-light .mat-flat-button .mat-icon,
.treo-theme-light .mat-raised-button .mat-icon,
.treo-theme-light .mat-fab .mat-icon,
.treo-theme-light .mat-mini-fab .mat-icon {
  color: currentColor !important;
}
.treo-theme-light .mat-flat-button .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button .mat-button-focus-overlay,
.treo-theme-light .mat-fab .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab .mat-button-focus-overlay {
  background-color: rgba(151, 166, 186, 0.2);
}
.treo-theme-light .mat-flat-button.mat-primary .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button.mat-primary .mat-button-focus-overlay,
.treo-theme-light .mat-fab.mat-primary .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab.mat-primary .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.treo-theme-light .mat-flat-button.mat-accent .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button.mat-accent .mat-button-focus-overlay,
.treo-theme-light .mat-fab.mat-accent .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab.mat-accent .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.treo-theme-light .mat-flat-button.mat-warn .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button.mat-warn .mat-button-focus-overlay,
.treo-theme-light .mat-fab.mat-warn .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab.mat-warn .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.treo-theme-light .mat-flat-button:hover .mat-button-focus-overlay, .treo-theme-light .mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay, .treo-theme-light .mat-flat-button.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button:hover .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-light .mat-fab:hover .mat-button-focus-overlay,
.treo-theme-light .mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-light .mat-fab.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab:hover .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab.cdk-program-focused .mat-button-focus-overlay {
  opacity: 1;
}
@media (hover: none) {
  .treo-theme-light .mat-flat-button:hover .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button:hover .mat-button-focus-overlay,
.treo-theme-light .mat-fab:hover .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab:hover .mat-button-focus-overlay {
    opacity: 0 !important;
  }
}
.treo-theme-light .mat-flat-button[disabled] .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button[disabled] .mat-button-focus-overlay,
.treo-theme-light .mat-fab[disabled] .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab[disabled] .mat-button-focus-overlay {
  opacity: 0 !important;
}
.treo-theme-light .mat-button.mat-primary:not([disabled]) .mat-icon,
.treo-theme-light .mat-icon-button.mat-primary:not([disabled]) .mat-icon,
.treo-theme-light .mat-stroked-button.mat-primary:not([disabled]) .mat-icon {
  color: #5850EC;
}
.treo-theme-light .mat-button.mat-accent:not([disabled]) .mat-icon,
.treo-theme-light .mat-icon-button.mat-accent:not([disabled]) .mat-icon,
.treo-theme-light .mat-stroked-button.mat-accent:not([disabled]) .mat-icon {
  color: #27303F;
}
.treo-theme-light .mat-button.mat-warn:not([disabled]) .mat-icon,
.treo-theme-light .mat-icon-button.mat-warn:not([disabled]) .mat-icon,
.treo-theme-light .mat-stroked-button.mat-warn:not([disabled]) .mat-icon {
  color: #C81E1E;
}
.treo-theme-light .mat-button .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button .mat-button-focus-overlay {
  background-color: rgba(151, 166, 186, 0.2) !important;
}
.treo-theme-light .mat-button.mat-primary .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button.mat-primary .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: rgba(88, 80, 236, 0.1) !important;
}
.treo-theme-light .mat-button.mat-accent .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button.mat-accent .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: rgba(39, 48, 63, 0.1) !important;
}
.treo-theme-light .mat-button.mat-warn .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button.mat-warn .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: rgba(200, 30, 30, 0.1) !important;
}
.treo-theme-light .mat-button:hover .mat-button-focus-overlay, .treo-theme-light .mat-button.cdk-keyboard-focused .mat-button-focus-overlay, .treo-theme-light .mat-button.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button:hover .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button.cdk-program-focused .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button:hover .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button.cdk-program-focused .mat-button-focus-overlay {
  opacity: 1;
}
@media (hover: none) {
  .treo-theme-light .mat-button:hover .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button:hover .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button:hover .mat-button-focus-overlay {
    opacity: 0 !important;
  }
}
.treo-theme-light .mat-button[disabled] .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button[disabled] .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button[disabled] .mat-button-focus-overlay {
  opacity: 0 !important;
}
.treo-theme-light .mat-flat-button .mat-button-wrapper,
.treo-theme-light .mat-raised-button .mat-button-wrapper,
.treo-theme-light .mat-fab .mat-button-wrapper,
.treo-theme-light .mat-mini-fab .mat-button-wrapper,
.treo-theme-light .mat-button .mat-button-wrapper,
.treo-theme-light .mat-icon-button .mat-button-wrapper,
.treo-theme-light .mat-stroked-button .mat-button-wrapper {
  position: relative;
  z-index: 2;
}
.treo-theme-light .mat-flat-button .mat-button-focus-overlay,
.treo-theme-light .mat-flat-button .mat-button-ripple,
.treo-theme-light .mat-raised-button .mat-button-focus-overlay,
.treo-theme-light .mat-raised-button .mat-button-ripple,
.treo-theme-light .mat-fab .mat-button-focus-overlay,
.treo-theme-light .mat-fab .mat-button-ripple,
.treo-theme-light .mat-mini-fab .mat-button-focus-overlay,
.treo-theme-light .mat-mini-fab .mat-button-ripple,
.treo-theme-light .mat-button .mat-button-focus-overlay,
.treo-theme-light .mat-button .mat-button-ripple,
.treo-theme-light .mat-icon-button .mat-button-focus-overlay,
.treo-theme-light .mat-icon-button .mat-button-ripple,
.treo-theme-light .mat-stroked-button .mat-button-focus-overlay,
.treo-theme-light .mat-stroked-button .mat-button-ripple {
  z-index: 1;
}
.treo-theme-light .mat-stroked-button:not([disabled]) {
  border-color: #cfd8e3;
}
.treo-theme-light .mat-stroked-button[disabled] {
  border-color: #e2e8f0;
}
.treo-theme-light .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-label {
  color: #27303f !important;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-hint {
  color: #97a6ba;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill.mat-form-field-disabled {
  opacity: 0.7 !important;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill.mat-form-field-invalid .mat-form-field-wrapper .mat-form-field-flex {
  border-color: #C81E1E;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill.mat-focused .mat-form-field-wrapper .mat-form-field-flex {
  background-color: white;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill.mat-focused:not(.mat-form-field-invalid) .mat-form-field-wrapper .mat-form-field-flex {
  border-color: #5850EC;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill.mat-form-field-type-mat-native-select .mat-form-field-infix select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364748B' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -7px center;
  background-size: 24px;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex {
  background-color: white;
  border-color: #cfd8e3;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  color: #97a6ba;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon,
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon-button,
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select-value,
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon,
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon-button,
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select-value {
  color: #97a6ba;
}
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.treo-theme-light .mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  background: #f1f5f9;
  border-color: #cfd8e3;
}
.treo-theme-light .mat-input-element::-moz-placeholder {
  color: #97a6ba;
}
.treo-theme-light .mat-input-element:-ms-input-placeholder {
  color: #97a6ba;
}
.treo-theme-light .mat-input-element::-ms-input-placeholder {
  color: #97a6ba;
}
.treo-theme-light .mat-input-element::placeholder {
  color: #97a6ba;
}
.treo-theme-light .mat-input-element::-moz-placeholder {
  color: #97a6ba;
}
.treo-theme-light .mat-input-element:-ms-input-placeholder {
  color: #97a6ba;
}
.treo-theme-light .mat-form-field-invalid .mat-input-element::-moz-placeholder {
  color: #C81E1E;
}
.treo-theme-light .mat-form-field-invalid .mat-input-element:-ms-input-placeholder {
  color: #C81E1E;
}
.treo-theme-light .mat-form-field-invalid .mat-input-element::-ms-input-placeholder {
  color: #C81E1E;
}
.treo-theme-light .mat-form-field-invalid .mat-input-element::placeholder {
  color: #C81E1E;
}
.treo-theme-light .mat-form-field-invalid .mat-input-element::-moz-placeholder {
  color: #C81E1E;
}
.treo-theme-light .mat-form-field-invalid .mat-input-element::-webkit-input-placeholder {
  color: #C81E1E;
}
.treo-theme-light .mat-form-field-invalid .mat-input-element:-ms-input-placeholder {
  color: #C81E1E;
}
.treo-theme-light .mat-select .mat-select-placeholder {
  color: #97a6ba;
}
.treo-theme-light .mat-form-field-invalid .mat-select .mat-select-placeholder {
  color: #C81E1E;
}
.treo-theme-light .mat-toolbar.mat-primary .mat-icon {
  color: #F0F5FF;
}
.treo-theme-light .mat-toolbar.mat-primary .text-secondary {
  color: rgba(240, 245, 255, 0.6);
}
.treo-theme-light .mat-toolbar.mat-primary .text-hint {
  color: rgba(240, 245, 255, 0.38);
}
.treo-theme-light .mat-toolbar.mat-primary .text-disabled {
  color: rgba(240, 245, 255, 0.38);
}
.treo-theme-light .mat-toolbar.mat-primary .divider {
  color: rgba(240, 245, 255, 0.12);
}
.treo-theme-light .mat-toolbar.mat-accent .mat-icon {
  color: #FBFDFE;
}
.treo-theme-light .mat-toolbar.mat-accent .text-secondary {
  color: rgba(251, 253, 254, 0.6);
}
.treo-theme-light .mat-toolbar.mat-accent .text-hint {
  color: rgba(251, 253, 254, 0.38);
}
.treo-theme-light .mat-toolbar.mat-accent .text-disabled {
  color: rgba(251, 253, 254, 0.38);
}
.treo-theme-light .mat-toolbar.mat-accent .divider {
  color: rgba(251, 253, 254, 0.12);
}
.treo-theme-light .mat-toolbar.mat-warn .mat-icon {
  color: #FDF2F2;
}
.treo-theme-light .mat-toolbar.mat-warn .text-secondary {
  color: rgba(253, 242, 242, 0.6);
}
.treo-theme-light .mat-toolbar.mat-warn .text-hint {
  color: rgba(253, 242, 242, 0.38);
}
.treo-theme-light .mat-toolbar.mat-warn .text-disabled {
  color: rgba(253, 242, 242, 0.38);
}
.treo-theme-light .mat-toolbar.mat-warn .divider {
  color: rgba(253, 242, 242, 0.12);
}
.theme-dark .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused, .theme-dark .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused, .theme-dark .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover {
  background: transparent !important;
}
.theme-dark .mat-accordion .mat-expansion-panel .mat-expansion-panel-body {
  color: #97a6ba;
}
.theme-dark .mat-flat-button.mat-primary:not([disabled]) .mat-icon,
.theme-dark .mat-raised-button.mat-primary:not([disabled]) .mat-icon,
.theme-dark .mat-fab.mat-primary:not([disabled]) .mat-icon,
.theme-dark .mat-mini-fab.mat-primary:not([disabled]) .mat-icon {
  color: #252F3F;
}
.theme-dark .mat-flat-button.mat-accent:not([disabled]) .mat-icon,
.theme-dark .mat-raised-button.mat-accent:not([disabled]) .mat-icon,
.theme-dark .mat-fab.mat-accent:not([disabled]) .mat-icon,
.theme-dark .mat-mini-fab.mat-accent:not([disabled]) .mat-icon {
  color: #F9FAFB;
}
.theme-dark .mat-flat-button.mat-warn:not([disabled]) .mat-icon,
.theme-dark .mat-raised-button.mat-warn:not([disabled]) .mat-icon,
.theme-dark .mat-fab.mat-warn:not([disabled]) .mat-icon,
.theme-dark .mat-mini-fab.mat-warn:not([disabled]) .mat-icon {
  color: #FDF2F2;
}
.theme-dark .mat-flat-button .mat-icon,
.theme-dark .mat-raised-button .mat-icon,
.theme-dark .mat-fab .mat-icon,
.theme-dark .mat-mini-fab .mat-icon {
  color: currentColor !important;
}
.theme-dark .mat-flat-button .mat-button-focus-overlay,
.theme-dark .mat-raised-button .mat-button-focus-overlay,
.theme-dark .mat-fab .mat-button-focus-overlay,
.theme-dark .mat-mini-fab .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.05);
}
.theme-dark .mat-flat-button.mat-primary .mat-button-focus-overlay,
.theme-dark .mat-raised-button.mat-primary .mat-button-focus-overlay,
.theme-dark .mat-fab.mat-primary .mat-button-focus-overlay,
.theme-dark .mat-mini-fab.mat-primary .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-dark .mat-flat-button.mat-accent .mat-button-focus-overlay,
.theme-dark .mat-raised-button.mat-accent .mat-button-focus-overlay,
.theme-dark .mat-fab.mat-accent .mat-button-focus-overlay,
.theme-dark .mat-mini-fab.mat-accent .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-dark .mat-flat-button.mat-warn .mat-button-focus-overlay,
.theme-dark .mat-raised-button.mat-warn .mat-button-focus-overlay,
.theme-dark .mat-fab.mat-warn .mat-button-focus-overlay,
.theme-dark .mat-mini-fab.mat-warn .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-dark .mat-flat-button:hover .mat-button-focus-overlay, .theme-dark .mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay, .theme-dark .mat-flat-button.cdk-program-focused .mat-button-focus-overlay,
.theme-dark .mat-raised-button:hover .mat-button-focus-overlay,
.theme-dark .mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-dark .mat-raised-button.cdk-program-focused .mat-button-focus-overlay,
.theme-dark .mat-fab:hover .mat-button-focus-overlay,
.theme-dark .mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-dark .mat-fab.cdk-program-focused .mat-button-focus-overlay,
.theme-dark .mat-mini-fab:hover .mat-button-focus-overlay,
.theme-dark .mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-dark .mat-mini-fab.cdk-program-focused .mat-button-focus-overlay {
  opacity: 1;
}
@media (hover: none) {
  .theme-dark .mat-flat-button:hover .mat-button-focus-overlay,
.theme-dark .mat-raised-button:hover .mat-button-focus-overlay,
.theme-dark .mat-fab:hover .mat-button-focus-overlay,
.theme-dark .mat-mini-fab:hover .mat-button-focus-overlay {
    opacity: 0 !important;
  }
}
.theme-dark .mat-flat-button[disabled] .mat-button-focus-overlay,
.theme-dark .mat-raised-button[disabled] .mat-button-focus-overlay,
.theme-dark .mat-fab[disabled] .mat-button-focus-overlay,
.theme-dark .mat-mini-fab[disabled] .mat-button-focus-overlay {
  opacity: 0 !important;
}
.theme-dark .mat-button.mat-primary:not([disabled]) .mat-icon,
.theme-dark .mat-icon-button.mat-primary:not([disabled]) .mat-icon,
.theme-dark .mat-stroked-button.mat-primary:not([disabled]) .mat-icon {
  color: #FFFFFF;
}
.theme-dark .mat-button.mat-accent:not([disabled]) .mat-icon,
.theme-dark .mat-icon-button.mat-accent:not([disabled]) .mat-icon,
.theme-dark .mat-stroked-button.mat-accent:not([disabled]) .mat-icon {
  color: #252F3F;
}
.theme-dark .mat-button.mat-warn:not([disabled]) .mat-icon,
.theme-dark .mat-icon-button.mat-warn:not([disabled]) .mat-icon,
.theme-dark .mat-stroked-button.mat-warn:not([disabled]) .mat-icon {
  color: #9B1C1C;
}
.theme-dark .mat-button .mat-button-focus-overlay,
.theme-dark .mat-icon-button .mat-button-focus-overlay,
.theme-dark .mat-stroked-button .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.05) !important;
}
.theme-dark .mat-button.mat-primary .mat-button-focus-overlay,
.theme-dark .mat-icon-button.mat-primary .mat-button-focus-overlay,
.theme-dark .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.theme-dark .mat-button.mat-accent .mat-button-focus-overlay,
.theme-dark .mat-icon-button.mat-accent .mat-button-focus-overlay,
.theme-dark .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: rgba(37, 47, 63, 0.1) !important;
}
.theme-dark .mat-button.mat-warn .mat-button-focus-overlay,
.theme-dark .mat-icon-button.mat-warn .mat-button-focus-overlay,
.theme-dark .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: rgba(155, 28, 28, 0.1) !important;
}
.theme-dark .mat-button:hover .mat-button-focus-overlay, .theme-dark .mat-button.cdk-keyboard-focused .mat-button-focus-overlay, .theme-dark .mat-button.cdk-program-focused .mat-button-focus-overlay,
.theme-dark .mat-icon-button:hover .mat-button-focus-overlay,
.theme-dark .mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-dark .mat-icon-button.cdk-program-focused .mat-button-focus-overlay,
.theme-dark .mat-stroked-button:hover .mat-button-focus-overlay,
.theme-dark .mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-dark .mat-stroked-button.cdk-program-focused .mat-button-focus-overlay {
  opacity: 1;
}
@media (hover: none) {
  .theme-dark .mat-button:hover .mat-button-focus-overlay,
.theme-dark .mat-icon-button:hover .mat-button-focus-overlay,
.theme-dark .mat-stroked-button:hover .mat-button-focus-overlay {
    opacity: 0 !important;
  }
}
.theme-dark .mat-button[disabled] .mat-button-focus-overlay,
.theme-dark .mat-icon-button[disabled] .mat-button-focus-overlay,
.theme-dark .mat-stroked-button[disabled] .mat-button-focus-overlay {
  opacity: 0 !important;
}
.theme-dark .mat-flat-button .mat-button-wrapper,
.theme-dark .mat-raised-button .mat-button-wrapper,
.theme-dark .mat-fab .mat-button-wrapper,
.theme-dark .mat-mini-fab .mat-button-wrapper,
.theme-dark .mat-button .mat-button-wrapper,
.theme-dark .mat-icon-button .mat-button-wrapper,
.theme-dark .mat-stroked-button .mat-button-wrapper {
  position: relative;
  z-index: 2;
}
.theme-dark .mat-flat-button .mat-button-focus-overlay,
.theme-dark .mat-flat-button .mat-button-ripple,
.theme-dark .mat-raised-button .mat-button-focus-overlay,
.theme-dark .mat-raised-button .mat-button-ripple,
.theme-dark .mat-fab .mat-button-focus-overlay,
.theme-dark .mat-fab .mat-button-ripple,
.theme-dark .mat-mini-fab .mat-button-focus-overlay,
.theme-dark .mat-mini-fab .mat-button-ripple,
.theme-dark .mat-button .mat-button-focus-overlay,
.theme-dark .mat-button .mat-button-ripple,
.theme-dark .mat-icon-button .mat-button-focus-overlay,
.theme-dark .mat-icon-button .mat-button-ripple,
.theme-dark .mat-stroked-button .mat-button-focus-overlay,
.theme-dark .mat-stroked-button .mat-button-ripple {
  z-index: 1;
}
.theme-dark .mat-stroked-button:not([disabled]) {
  border-color: #64748b;
}
.theme-dark .mat-stroked-button[disabled] {
  border-color: #475569;
}
.theme-dark .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-label {
  color: white !important;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-hint {
  color: #64748b;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-form-field-disabled {
  opacity: 0.7 !important;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-form-field-invalid .mat-form-field-wrapper .mat-form-field-flex {
  border-color: #9B1C1C;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-focused .mat-form-field-wrapper .mat-form-field-flex {
  background-color: #27303f;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-focused:not(.mat-form-field-invalid) .mat-form-field-wrapper .mat-form-field-flex {
  border-color: #FFFFFF;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill.mat-form-field-type-mat-native-select .mat-form-field-infix select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2397a6ba' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -7px center;
  background-size: 24px;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: #64748b;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  color: #64748b;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon,
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon-button,
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select-value,
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon,
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon-button,
.theme-dark .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select-value {
  color: #64748b;
}
.theme-dark .mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.theme-dark .mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  background: #1a202e;
  border-color: #64748b;
}
.theme-dark .mat-input-element::-moz-placeholder {
  color: #64748b;
}
.theme-dark .mat-input-element:-ms-input-placeholder {
  color: #64748b;
}
.theme-dark .mat-input-element::-ms-input-placeholder {
  color: #64748b;
}
.theme-dark .mat-input-element::placeholder {
  color: #64748b;
}
.theme-dark .mat-input-element::-moz-placeholder {
  color: #64748b;
}
.theme-dark .mat-input-element:-ms-input-placeholder {
  color: #64748b;
}
.theme-dark .mat-form-field-invalid .mat-input-element::-moz-placeholder {
  color: #9B1C1C;
}
.theme-dark .mat-form-field-invalid .mat-input-element:-ms-input-placeholder {
  color: #9B1C1C;
}
.theme-dark .mat-form-field-invalid .mat-input-element::-ms-input-placeholder {
  color: #9B1C1C;
}
.theme-dark .mat-form-field-invalid .mat-input-element::placeholder {
  color: #9B1C1C;
}
.theme-dark .mat-form-field-invalid .mat-input-element::-moz-placeholder {
  color: #9B1C1C;
}
.theme-dark .mat-form-field-invalid .mat-input-element::-webkit-input-placeholder {
  color: #9B1C1C;
}
.theme-dark .mat-form-field-invalid .mat-input-element:-ms-input-placeholder {
  color: #9B1C1C;
}
.theme-dark .mat-select .mat-select-placeholder {
  color: #64748b;
}
.theme-dark .mat-form-field-invalid .mat-select .mat-select-placeholder {
  color: #9B1C1C;
}
.theme-dark .mat-toolbar.mat-primary .mat-icon {
  color: #252F3F;
}
.theme-dark .mat-toolbar.mat-primary .text-secondary {
  color: rgba(37, 47, 63, 0.6);
}
.theme-dark .mat-toolbar.mat-primary .text-hint {
  color: rgba(37, 47, 63, 0.38);
}
.theme-dark .mat-toolbar.mat-primary .text-disabled {
  color: rgba(37, 47, 63, 0.38);
}
.theme-dark .mat-toolbar.mat-primary .divider {
  color: rgba(37, 47, 63, 0.12);
}
.theme-dark .mat-toolbar.mat-accent .mat-icon {
  color: #F9FAFB;
}
.theme-dark .mat-toolbar.mat-accent .text-secondary {
  color: rgba(249, 250, 251, 0.6);
}
.theme-dark .mat-toolbar.mat-accent .text-hint {
  color: rgba(249, 250, 251, 0.38);
}
.theme-dark .mat-toolbar.mat-accent .text-disabled {
  color: rgba(249, 250, 251, 0.38);
}
.theme-dark .mat-toolbar.mat-accent .divider {
  color: rgba(249, 250, 251, 0.12);
}
.theme-dark .mat-toolbar.mat-warn .mat-icon {
  color: #FDF2F2;
}
.theme-dark .mat-toolbar.mat-warn .text-secondary {
  color: rgba(253, 242, 242, 0.6);
}
.theme-dark .mat-toolbar.mat-warn .text-hint {
  color: rgba(253, 242, 242, 0.38);
}
.theme-dark .mat-toolbar.mat-warn .text-disabled {
  color: rgba(253, 242, 242, 0.38);
}
.theme-dark .mat-toolbar.mat-warn .divider {
  color: rgba(253, 242, 242, 0.12);
}
.theme-light .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused, .theme-light .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused, .theme-light .mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover {
  background: transparent !important;
}
.theme-light .mat-accordion .mat-expansion-panel .mat-expansion-panel-body {
  color: #64748b;
}
.theme-light .mat-flat-button.mat-primary:not([disabled]) .mat-icon,
.theme-light .mat-raised-button.mat-primary:not([disabled]) .mat-icon,
.theme-light .mat-fab.mat-primary:not([disabled]) .mat-icon,
.theme-light .mat-mini-fab.mat-primary:not([disabled]) .mat-icon {
  color: #FFFFFF;
}
.theme-light .mat-flat-button.mat-accent:not([disabled]) .mat-icon,
.theme-light .mat-raised-button.mat-accent:not([disabled]) .mat-icon,
.theme-light .mat-fab.mat-accent:not([disabled]) .mat-icon,
.theme-light .mat-mini-fab.mat-accent:not([disabled]) .mat-icon {
  color: #F9FAFB;
}
.theme-light .mat-flat-button.mat-warn:not([disabled]) .mat-icon,
.theme-light .mat-raised-button.mat-warn:not([disabled]) .mat-icon,
.theme-light .mat-fab.mat-warn:not([disabled]) .mat-icon,
.theme-light .mat-mini-fab.mat-warn:not([disabled]) .mat-icon {
  color: #FDF2F2;
}
.theme-light .mat-flat-button .mat-icon,
.theme-light .mat-raised-button .mat-icon,
.theme-light .mat-fab .mat-icon,
.theme-light .mat-mini-fab .mat-icon {
  color: currentColor !important;
}
.theme-light .mat-flat-button .mat-button-focus-overlay,
.theme-light .mat-raised-button .mat-button-focus-overlay,
.theme-light .mat-fab .mat-button-focus-overlay,
.theme-light .mat-mini-fab .mat-button-focus-overlay {
  background-color: rgba(151, 166, 186, 0.2);
}
.theme-light .mat-flat-button.mat-primary .mat-button-focus-overlay,
.theme-light .mat-raised-button.mat-primary .mat-button-focus-overlay,
.theme-light .mat-fab.mat-primary .mat-button-focus-overlay,
.theme-light .mat-mini-fab.mat-primary .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-light .mat-flat-button.mat-accent .mat-button-focus-overlay,
.theme-light .mat-raised-button.mat-accent .mat-button-focus-overlay,
.theme-light .mat-fab.mat-accent .mat-button-focus-overlay,
.theme-light .mat-mini-fab.mat-accent .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-light .mat-flat-button.mat-warn .mat-button-focus-overlay,
.theme-light .mat-raised-button.mat-warn .mat-button-focus-overlay,
.theme-light .mat-fab.mat-warn .mat-button-focus-overlay,
.theme-light .mat-mini-fab.mat-warn .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-light .mat-flat-button:hover .mat-button-focus-overlay, .theme-light .mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay, .theme-light .mat-flat-button.cdk-program-focused .mat-button-focus-overlay,
.theme-light .mat-raised-button:hover .mat-button-focus-overlay,
.theme-light .mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-light .mat-raised-button.cdk-program-focused .mat-button-focus-overlay,
.theme-light .mat-fab:hover .mat-button-focus-overlay,
.theme-light .mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-light .mat-fab.cdk-program-focused .mat-button-focus-overlay,
.theme-light .mat-mini-fab:hover .mat-button-focus-overlay,
.theme-light .mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-light .mat-mini-fab.cdk-program-focused .mat-button-focus-overlay {
  opacity: 1;
}
@media (hover: none) {
  .theme-light .mat-flat-button:hover .mat-button-focus-overlay,
.theme-light .mat-raised-button:hover .mat-button-focus-overlay,
.theme-light .mat-fab:hover .mat-button-focus-overlay,
.theme-light .mat-mini-fab:hover .mat-button-focus-overlay {
    opacity: 0 !important;
  }
}
.theme-light .mat-flat-button[disabled] .mat-button-focus-overlay,
.theme-light .mat-raised-button[disabled] .mat-button-focus-overlay,
.theme-light .mat-fab[disabled] .mat-button-focus-overlay,
.theme-light .mat-mini-fab[disabled] .mat-button-focus-overlay {
  opacity: 0 !important;
}
.theme-light .mat-button.mat-primary:not([disabled]) .mat-icon,
.theme-light .mat-icon-button.mat-primary:not([disabled]) .mat-icon,
.theme-light .mat-stroked-button.mat-primary:not([disabled]) .mat-icon {
  color: #000000;
}
.theme-light .mat-button.mat-accent:not([disabled]) .mat-icon,
.theme-light .mat-icon-button.mat-accent:not([disabled]) .mat-icon,
.theme-light .mat-stroked-button.mat-accent:not([disabled]) .mat-icon {
  color: #252F3F;
}
.theme-light .mat-button.mat-warn:not([disabled]) .mat-icon,
.theme-light .mat-icon-button.mat-warn:not([disabled]) .mat-icon,
.theme-light .mat-stroked-button.mat-warn:not([disabled]) .mat-icon {
  color: #9B1C1C;
}
.theme-light .mat-button .mat-button-focus-overlay,
.theme-light .mat-icon-button .mat-button-focus-overlay,
.theme-light .mat-stroked-button .mat-button-focus-overlay {
  background-color: rgba(151, 166, 186, 0.2) !important;
}
.theme-light .mat-button.mat-primary .mat-button-focus-overlay,
.theme-light .mat-icon-button.mat-primary .mat-button-focus-overlay,
.theme-light .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.1) !important;
}
.theme-light .mat-button.mat-accent .mat-button-focus-overlay,
.theme-light .mat-icon-button.mat-accent .mat-button-focus-overlay,
.theme-light .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: rgba(37, 47, 63, 0.1) !important;
}
.theme-light .mat-button.mat-warn .mat-button-focus-overlay,
.theme-light .mat-icon-button.mat-warn .mat-button-focus-overlay,
.theme-light .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: rgba(155, 28, 28, 0.1) !important;
}
.theme-light .mat-button:hover .mat-button-focus-overlay, .theme-light .mat-button.cdk-keyboard-focused .mat-button-focus-overlay, .theme-light .mat-button.cdk-program-focused .mat-button-focus-overlay,
.theme-light .mat-icon-button:hover .mat-button-focus-overlay,
.theme-light .mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-light .mat-icon-button.cdk-program-focused .mat-button-focus-overlay,
.theme-light .mat-stroked-button:hover .mat-button-focus-overlay,
.theme-light .mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,
.theme-light .mat-stroked-button.cdk-program-focused .mat-button-focus-overlay {
  opacity: 1;
}
@media (hover: none) {
  .theme-light .mat-button:hover .mat-button-focus-overlay,
.theme-light .mat-icon-button:hover .mat-button-focus-overlay,
.theme-light .mat-stroked-button:hover .mat-button-focus-overlay {
    opacity: 0 !important;
  }
}
.theme-light .mat-button[disabled] .mat-button-focus-overlay,
.theme-light .mat-icon-button[disabled] .mat-button-focus-overlay,
.theme-light .mat-stroked-button[disabled] .mat-button-focus-overlay {
  opacity: 0 !important;
}
.theme-light .mat-flat-button .mat-button-wrapper,
.theme-light .mat-raised-button .mat-button-wrapper,
.theme-light .mat-fab .mat-button-wrapper,
.theme-light .mat-mini-fab .mat-button-wrapper,
.theme-light .mat-button .mat-button-wrapper,
.theme-light .mat-icon-button .mat-button-wrapper,
.theme-light .mat-stroked-button .mat-button-wrapper {
  position: relative;
  z-index: 2;
}
.theme-light .mat-flat-button .mat-button-focus-overlay,
.theme-light .mat-flat-button .mat-button-ripple,
.theme-light .mat-raised-button .mat-button-focus-overlay,
.theme-light .mat-raised-button .mat-button-ripple,
.theme-light .mat-fab .mat-button-focus-overlay,
.theme-light .mat-fab .mat-button-ripple,
.theme-light .mat-mini-fab .mat-button-focus-overlay,
.theme-light .mat-mini-fab .mat-button-ripple,
.theme-light .mat-button .mat-button-focus-overlay,
.theme-light .mat-button .mat-button-ripple,
.theme-light .mat-icon-button .mat-button-focus-overlay,
.theme-light .mat-icon-button .mat-button-ripple,
.theme-light .mat-stroked-button .mat-button-focus-overlay,
.theme-light .mat-stroked-button .mat-button-ripple {
  z-index: 1;
}
.theme-light .mat-stroked-button:not([disabled]) {
  border-color: #cfd8e3;
}
.theme-light .mat-stroked-button[disabled] {
  border-color: #e2e8f0;
}
.theme-light .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-label {
  color: #27303f !important;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-hint {
  color: #97a6ba;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill.mat-form-field-disabled {
  opacity: 0.7 !important;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill.mat-form-field-invalid .mat-form-field-wrapper .mat-form-field-flex {
  border-color: #9B1C1C;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill.mat-focused .mat-form-field-wrapper .mat-form-field-flex {
  background-color: white;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill.mat-focused:not(.mat-form-field-invalid) .mat-form-field-wrapper .mat-form-field-flex {
  border-color: #000000;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill.mat-form-field-type-mat-native-select .mat-form-field-infix select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364748B' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -7px center;
  background-size: 24px;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex {
  background-color: white;
  border-color: #cfd8e3;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  color: #97a6ba;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon,
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-icon-button,
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix .mat-select-value,
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon,
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-icon-button,
.theme-light .mat-form-field.mat-form-field-appearance-fill .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix .mat-select-value {
  color: #97a6ba;
}
.theme-light .mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix,
.theme-light .mat-form-field.mat-form-field-appearance-fill.treo-mat-emphasized-affix .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
  background: #f1f5f9;
  border-color: #cfd8e3;
}
.theme-light .mat-input-element::-moz-placeholder {
  color: #97a6ba;
}
.theme-light .mat-input-element:-ms-input-placeholder {
  color: #97a6ba;
}
.theme-light .mat-input-element::-ms-input-placeholder {
  color: #97a6ba;
}
.theme-light .mat-input-element::placeholder {
  color: #97a6ba;
}
.theme-light .mat-input-element::-moz-placeholder {
  color: #97a6ba;
}
.theme-light .mat-input-element:-ms-input-placeholder {
  color: #97a6ba;
}
.theme-light .mat-form-field-invalid .mat-input-element::-moz-placeholder {
  color: #9B1C1C;
}
.theme-light .mat-form-field-invalid .mat-input-element:-ms-input-placeholder {
  color: #9B1C1C;
}
.theme-light .mat-form-field-invalid .mat-input-element::-ms-input-placeholder {
  color: #9B1C1C;
}
.theme-light .mat-form-field-invalid .mat-input-element::placeholder {
  color: #9B1C1C;
}
.theme-light .mat-form-field-invalid .mat-input-element::-moz-placeholder {
  color: #9B1C1C;
}
.theme-light .mat-form-field-invalid .mat-input-element::-webkit-input-placeholder {
  color: #9B1C1C;
}
.theme-light .mat-form-field-invalid .mat-input-element:-ms-input-placeholder {
  color: #9B1C1C;
}
.theme-light .mat-select .mat-select-placeholder {
  color: #97a6ba;
}
.theme-light .mat-form-field-invalid .mat-select .mat-select-placeholder {
  color: #9B1C1C;
}
.theme-light .mat-toolbar.mat-primary .mat-icon {
  color: #FFFFFF;
}
.theme-light .mat-toolbar.mat-primary .text-secondary {
  color: rgba(255, 255, 255, 0.6);
}
.theme-light .mat-toolbar.mat-primary .text-hint {
  color: rgba(255, 255, 255, 0.38);
}
.theme-light .mat-toolbar.mat-primary .text-disabled {
  color: rgba(255, 255, 255, 0.38);
}
.theme-light .mat-toolbar.mat-primary .divider {
  color: rgba(255, 255, 255, 0.12);
}
.theme-light .mat-toolbar.mat-accent .mat-icon {
  color: #F9FAFB;
}
.theme-light .mat-toolbar.mat-accent .text-secondary {
  color: rgba(249, 250, 251, 0.6);
}
.theme-light .mat-toolbar.mat-accent .text-hint {
  color: rgba(249, 250, 251, 0.38);
}
.theme-light .mat-toolbar.mat-accent .text-disabled {
  color: rgba(249, 250, 251, 0.38);
}
.theme-light .mat-toolbar.mat-accent .divider {
  color: rgba(249, 250, 251, 0.12);
}
.theme-light .mat-toolbar.mat-warn .mat-icon {
  color: #FDF2F2;
}
.theme-light .mat-toolbar.mat-warn .text-secondary {
  color: rgba(253, 242, 242, 0.6);
}
.theme-light .mat-toolbar.mat-warn .text-hint {
  color: rgba(253, 242, 242, 0.38);
}
.theme-light .mat-toolbar.mat-warn .text-disabled {
  color: rgba(253, 242, 242, 0.38);
}
.theme-light .mat-toolbar.mat-warn .divider {
  color: rgba(253, 242, 242, 0.12);
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container {
  border: none;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top {
  text-align: center;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top.fc-other-month {
  opacity: 1;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top .fc-day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 21px;
  margin: 4px 0;
  font-size: 12px;
  border-radius: 50%;
  float: none;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-event-container .fc-day-grid-event {
  display: flex;
  align-items: center;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
  margin: 0 6px 4px 6px;
  padding: 0 8px;
  font-size: 12px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
@media (min-width: 0) and (max-width: 599px) {
  .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-event-container .fc-day-grid-event {
    padding: 0 5px;
  }
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-more {
  padding: 0 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 0) and (max-width: 599px) {
  .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-more {
    padding: 0 3px;
  }
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-highlight-skeleton .fc-highlight {
  position: relative;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover {
  border: none;
  border-radius: 4px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-header {
  height: 32px;
  min-height: 32px;
  max-height: 32px;
  padding: 0 8px;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-header .fc-title {
  margin: 0;
  padding: 0;
  font-size: 12px;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-body {
  max-height: 160px;
  overflow: hidden auto;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-body .fc-event-container {
  padding: 8px;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-body .fc-event-container .fc-day-grid-event {
  display: flex;
  align-items: center;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
  margin: 0 0 6px 0;
  padding: 0 8px;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-body .fc-event-container .fc-day-grid-event:last-child {
  margin-bottom: 0;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container {
  border: none;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span.fc-weekday {
  padding-top: 16px;
  font-size: 12px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-weight: 400;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span.fc-date {
  padding-bottom: 12px;
  font-size: 26px;
  font-weight: 300;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row {
  min-height: 0;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row .fc-bg .fc-axis {
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 0;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton .fc-axis {
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton .fc-event-container .fc-day-grid-event {
  display: flex;
  align-items: center;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
  margin: 0 6px 6px 6px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-divider {
  border: none;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-axis {
  border: none;
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-axis + .fc-day {
  border: none;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-axis {
  width: 48px !important;
  height: 48px;
  text-align: center;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-axis span {
  font-size: 12px;
  width: 48px;
  min-width: 48px;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-axis {
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-event-container {
  margin: 0 12px 0 0;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-event-container .fc-time-grid-event {
  display: flex;
  padding: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-event-container .fc-time-grid-event .fc-time,
.fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-event-container .fc-time-grid-event .fc-title {
  font-size: 12px;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container {
  border: none;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span.fc-weekday {
  padding-top: 16px;
  font-size: 12px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-weight: 400;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span.fc-date {
  padding-bottom: 12px;
  font-size: 26px;
  font-weight: 300;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row {
  min-height: 0;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row .fc-bg .fc-axis {
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 0;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton .fc-axis {
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-row .fc-content-skeleton .fc-event-container .fc-day-grid-event {
  display: flex;
  align-items: center;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
  margin: 0 6px 6px 6px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-divider {
  border: none;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-axis {
  border: none;
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-axis + .fc-day {
  border: none;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-axis {
  width: 48px !important;
  height: 48px;
  text-align: center;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-axis span {
  font-size: 12px;
  width: 48px;
  min-width: 48px;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-axis {
  width: 48px !important;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-event-container {
  margin: 0 12px 0 0;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-event-container .fc-time-grid-event {
  display: flex;
  padding: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-event-container .fc-time-grid-event .fc-time,
.fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-content-skeleton .fc-event-container .fc-time-grid-event .fc-title {
  font-size: 12px;
}
.fc .fc-view-container .fc-view.fc-listYear-view {
  border: none;
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-heading {
  display: none;
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item {
  display: flex;
  cursor: pointer;
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td {
  display: flex;
  align-items: center;
  width: auto;
  height: 48px;
  min-height: 48px;
  padding: 0 8px;
  border-width: 0 0 1px 0;
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date {
  order: 1;
  padding-left: 16px;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
}
@media (min-width: 0) and (max-width: 599px) {
  .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
  }
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date > span {
  display: flex;
  align-items: baseline;
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date > span span:first-child {
  display: flex;
  justify-content: center;
  padding-right: 8px;
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  font-size: 18px;
}
@media (min-width: 0) and (max-width: 599px) {
  .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date > span span:first-child {
    padding-right: 2px;
  }
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date > span span:first-child + span {
  display: flex;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-time {
  flex: 0 0 auto;
  order: 3;
  width: 160px;
  min-width: 160px;
  max-width: 160px;
}
@media (min-width: 0) and (max-width: 599px) {
  .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-time {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
  }
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-marker {
  flex: 0 0 auto;
  order: 2;
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-marker .fc-event-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-title {
  flex: 1 1 auto;
  order: 4;
  padding-right: 24px;
  font-weight: 500;
}
.fc .fc-day-grid-event.fc-dragging, .fc .fc-day-grid-event.fc-resizing {
  display: flex;
  align-items: center;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
  margin: 0 6px 4px 6px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  border: none;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #97a6ba;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top.fc-other-month .fc-day-number {
  color: #64748b;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top.fc-today .fc-day-number {
  background: #0694A2;
  color: #EDFAFA;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-more {
  color: #97a6ba;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-highlight-skeleton .fc-highlight {
  background: #f1f5f9;
  opacity: 1;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover {
  background: #27303f;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-header {
  background: rgba(255, 255, 255, 0.05);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #97a6ba;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-axis {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-divider {
  background: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-time {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-widget-content {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #97a6ba;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-axis {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-divider {
  background: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-time {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-widget-content {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item:hover td {
  background-color: rgba(255, 255, 255, 0.05);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td {
  border-color: rgba(241, 245, 249, 0.12);
}
.treo-theme-dark .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date > span span:first-child + span {
  color: #97a6ba;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #64748b;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top.fc-other-month .fc-day-number {
  color: #97a6ba;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top.fc-today .fc-day-number {
  background: #5850EC;
  color: #F0F5FF;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-more {
  color: #64748b;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-highlight-skeleton .fc-highlight {
  background: #f1f5f9;
  opacity: 1;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover {
  background: white;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-header {
  background: rgba(151, 166, 186, 0.12);
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #64748b;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-axis {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-divider {
  background: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-time {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-widget-content {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #64748b;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-axis {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-divider {
  background: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-time {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-widget-content {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item:hover td {
  background-color: rgba(151, 166, 186, 0.12);
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td {
  border-color: #e2e8f0;
}
.treo-theme-light .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date > span span:first-child + span {
  color: #64748b;
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #97a6ba;
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top.fc-other-month .fc-day-number {
  color: #64748b;
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top.fc-today .fc-day-number {
  background: #FFFFFF;
  color: #252F3F;
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-more {
  color: #97a6ba;
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-highlight-skeleton .fc-highlight {
  background: #f1f5f9;
  opacity: 1;
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover {
  background: #27303f;
}
.theme-dark .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-header {
  background: rgba(255, 255, 255, 0.05);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #97a6ba;
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-axis {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-divider {
  background: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-time {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-widget-content {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #97a6ba;
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-axis {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-divider {
  background: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-time {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-widget-content {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item:hover td {
  background-color: rgba(255, 255, 255, 0.05);
}
.theme-dark .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td {
  border-color: rgba(241, 245, 249, 0.12);
}
.theme-dark .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date > span span:first-child + span {
  color: #97a6ba;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #64748b;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top.fc-other-month .fc-day-number {
  color: #97a6ba;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-day-top.fc-today .fc-day-number {
  background: #000000;
  color: #FFFFFF;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-content-skeleton .fc-more {
  color: #64748b;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-week .fc-highlight-skeleton .fc-highlight {
  background: #f1f5f9;
  opacity: 1;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover {
  background: white;
}
.theme-light .fc .fc-view-container .fc-view.fc-dayGridMonth-view .fc-popover.fc-more-popover .fc-header {
  background: rgba(151, 166, 186, 0.12);
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #64748b;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-axis {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-divider {
  background: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-time {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridWeek-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-widget-content {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-axis {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-head > tr > .fc-head-container .fc-row .fc-day-header span {
  color: #64748b;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content {
  border: none;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-axis {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-day-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-divider {
  background: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-bg .fc-day.fc-today {
  background: none;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-time {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-timeGridDay-view .fc-body > tr > .fc-widget-content .fc-time-grid .fc-slats .fc-widget-content {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item:hover td {
  background-color: rgba(151, 166, 186, 0.12);
}
.theme-light .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td {
  border-color: #e2e8f0;
}
.theme-light .fc .fc-view-container .fc-view.fc-listYear-view .fc-list-table .fc-list-item td.fc-list-item-date > span span:first-child + span {
  color: #64748b;
}
.treo-theme-dark code .hljs-built_in,
.treo-theme-dark code .hljs-selector-tag,
.treo-theme-dark code .hljs-section,
.treo-theme-dark code .hljs-link,
.treo-theme-dark pre .hljs-built_in,
.treo-theme-dark pre .hljs-selector-tag,
.treo-theme-dark pre .hljs-section,
.treo-theme-dark pre .hljs-link {
  color: #8BE9FD;
}
.treo-theme-dark code .hljs-keyword,
.treo-theme-dark pre .hljs-keyword {
  color: #FF79C6;
}
.treo-theme-dark code .hljs,
.treo-theme-dark code .hljs-subst,
.treo-theme-dark pre .hljs,
.treo-theme-dark pre .hljs-subst {
  color: #F8F8F2;
}
.treo-theme-dark code .hljs-title,
.treo-theme-dark pre .hljs-title {
  color: #50FA7B;
}
.treo-theme-dark code .hljs-meta,
.treo-theme-dark code .hljs-type,
.treo-theme-dark code .hljs-symbol,
.treo-theme-dark code .hljs-bullet,
.treo-theme-dark code .hljs-addition,
.treo-theme-dark code .hljs-variable,
.treo-theme-dark code .hljs-template-tag,
.treo-theme-dark code .hljs-template-variable,
.treo-theme-dark pre .hljs-meta,
.treo-theme-dark pre .hljs-type,
.treo-theme-dark pre .hljs-symbol,
.treo-theme-dark pre .hljs-bullet,
.treo-theme-dark pre .hljs-addition,
.treo-theme-dark pre .hljs-variable,
.treo-theme-dark pre .hljs-template-tag,
.treo-theme-dark pre .hljs-template-variable {
  color: #F1FA8C;
}
.treo-theme-dark code .hljs-name,
.treo-theme-dark pre .hljs-name {
  color: #80DEEA;
}
.treo-theme-dark code .hljs-attr,
.treo-theme-dark pre .hljs-attr {
  color: #E1BEE7;
}
.treo-theme-dark code .hljs-string,
.treo-theme-dark pre .hljs-string {
  color: #A5D6A7;
}
.treo-theme-dark code .hljs-comment,
.treo-theme-dark code .hljs-quote,
.treo-theme-dark code .hljs-deletion,
.treo-theme-dark pre .hljs-comment,
.treo-theme-dark pre .hljs-quote,
.treo-theme-dark pre .hljs-deletion {
  color: #6272A4;
}
.treo-theme-dark code .hljs-keyword,
.treo-theme-dark code .hljs-selector-tag,
.treo-theme-dark code .hljs-literal,
.treo-theme-dark code .hljs-title,
.treo-theme-dark code .hljs-section,
.treo-theme-dark code .hljs-doctag,
.treo-theme-dark code .hljs-type,
.treo-theme-dark code .hljs-name,
.treo-theme-dark code .hljs-strong,
.treo-theme-dark pre .hljs-keyword,
.treo-theme-dark pre .hljs-selector-tag,
.treo-theme-dark pre .hljs-literal,
.treo-theme-dark pre .hljs-title,
.treo-theme-dark pre .hljs-section,
.treo-theme-dark pre .hljs-doctag,
.treo-theme-dark pre .hljs-type,
.treo-theme-dark pre .hljs-name,
.treo-theme-dark pre .hljs-strong {
  font-weight: 700;
}
.treo-theme-dark code .hljs-literal,
.treo-theme-dark code .hljs-number,
.treo-theme-dark pre .hljs-literal,
.treo-theme-dark pre .hljs-number {
  color: #BD93F9;
}
.treo-theme-dark code .hljs-emphasis,
.treo-theme-dark pre .hljs-emphasis {
  font-style: italic;
}
.treo-theme-light code[class*=language-] .hljs-comment,
.treo-theme-light code[class*=language-] .hljs-quote,
.treo-theme-light pre[class*=language-] .hljs-comment,
.treo-theme-light pre[class*=language-] .hljs-quote {
  color: #A0A1A7;
  font-style: italic;
}
.treo-theme-light code[class*=language-] .hljs-doctag,
.treo-theme-light code[class*=language-] .hljs-keyword,
.treo-theme-light code[class*=language-] .hljs-formula,
.treo-theme-light pre[class*=language-] .hljs-doctag,
.treo-theme-light pre[class*=language-] .hljs-keyword,
.treo-theme-light pre[class*=language-] .hljs-formula {
  color: #A626A4;
}
.treo-theme-light code[class*=language-] .hljs-name,
.treo-theme-light pre[class*=language-] .hljs-name {
  color: #7986CB;
}
.treo-theme-light code[class*=language-] .hljs-tag,
.treo-theme-light pre[class*=language-] .hljs-tag {
  color: #B9BBD2;
}
.treo-theme-light code[class*=language-] .hljs-section,
.treo-theme-light code[class*=language-] .hljs-selector-tag,
.treo-theme-light code[class*=language-] .hljs-deletion,
.treo-theme-light code[class*=language-] .hljs-subst,
.treo-theme-light pre[class*=language-] .hljs-section,
.treo-theme-light pre[class*=language-] .hljs-selector-tag,
.treo-theme-light pre[class*=language-] .hljs-deletion,
.treo-theme-light pre[class*=language-] .hljs-subst {
  color: #E45649;
}
.treo-theme-light code[class*=language-] .hljs-literal,
.treo-theme-light pre[class*=language-] .hljs-literal {
  color: #0184BB;
}
.treo-theme-light code[class*=language-] .hljs-string,
.treo-theme-light code[class*=language-] .hljs-regexp,
.treo-theme-light code[class*=language-] .hljs-addition,
.treo-theme-light code[class*=language-] .hljs-attribute,
.treo-theme-light code[class*=language-] .hljs-meta-string,
.treo-theme-light pre[class*=language-] .hljs-string,
.treo-theme-light pre[class*=language-] .hljs-regexp,
.treo-theme-light pre[class*=language-] .hljs-addition,
.treo-theme-light pre[class*=language-] .hljs-attribute,
.treo-theme-light pre[class*=language-] .hljs-meta-string {
  color: #50A14F;
}
.treo-theme-light code[class*=language-] .hljs-built_in,
.treo-theme-light code[class*=language-] .hljs-class .hljs-title,
.treo-theme-light pre[class*=language-] .hljs-built_in,
.treo-theme-light pre[class*=language-] .hljs-class .hljs-title {
  color: #C18401;
}
.treo-theme-light code[class*=language-] .hljs-attr,
.treo-theme-light code[class*=language-] .hljs-variable,
.treo-theme-light code[class*=language-] .hljs-template-variable,
.treo-theme-light code[class*=language-] .hljs-type,
.treo-theme-light code[class*=language-] .hljs-selector-class,
.treo-theme-light code[class*=language-] .hljs-selector-attr,
.treo-theme-light code[class*=language-] .hljs-selector-pseudo,
.treo-theme-light code[class*=language-] .hljs-number,
.treo-theme-light pre[class*=language-] .hljs-attr,
.treo-theme-light pre[class*=language-] .hljs-variable,
.treo-theme-light pre[class*=language-] .hljs-template-variable,
.treo-theme-light pre[class*=language-] .hljs-type,
.treo-theme-light pre[class*=language-] .hljs-selector-class,
.treo-theme-light pre[class*=language-] .hljs-selector-attr,
.treo-theme-light pre[class*=language-] .hljs-selector-pseudo,
.treo-theme-light pre[class*=language-] .hljs-number {
  color: #BA68C8;
}
.treo-theme-light code[class*=language-] .hljs-symbol,
.treo-theme-light code[class*=language-] .hljs-bullet,
.treo-theme-light code[class*=language-] .hljs-link,
.treo-theme-light code[class*=language-] .hljs-meta,
.treo-theme-light code[class*=language-] .hljs-selector-id,
.treo-theme-light code[class*=language-] .hljs-title,
.treo-theme-light pre[class*=language-] .hljs-symbol,
.treo-theme-light pre[class*=language-] .hljs-bullet,
.treo-theme-light pre[class*=language-] .hljs-link,
.treo-theme-light pre[class*=language-] .hljs-meta,
.treo-theme-light pre[class*=language-] .hljs-selector-id,
.treo-theme-light pre[class*=language-] .hljs-title {
  color: #4078F2;
}
.treo-theme-light code[class*=language-] .hljs-emphasis,
.treo-theme-light pre[class*=language-] .hljs-emphasis {
  font-style: italic;
}
.treo-theme-light code[class*=language-] .hljs-strong,
.treo-theme-light pre[class*=language-] .hljs-strong {
  font-weight: 700;
}
.treo-theme-light code[class*=language-] .hljs-link,
.treo-theme-light pre[class*=language-] .hljs-link {
  text-decoration: underline;
}
.theme-dark code .hljs-built_in,
.theme-dark code .hljs-selector-tag,
.theme-dark code .hljs-section,
.theme-dark code .hljs-link,
.theme-dark pre .hljs-built_in,
.theme-dark pre .hljs-selector-tag,
.theme-dark pre .hljs-section,
.theme-dark pre .hljs-link {
  color: #8BE9FD;
}
.theme-dark code .hljs-keyword,
.theme-dark pre .hljs-keyword {
  color: #FF79C6;
}
.theme-dark code .hljs,
.theme-dark code .hljs-subst,
.theme-dark pre .hljs,
.theme-dark pre .hljs-subst {
  color: #F8F8F2;
}
.theme-dark code .hljs-title,
.theme-dark pre .hljs-title {
  color: #50FA7B;
}
.theme-dark code .hljs-meta,
.theme-dark code .hljs-type,
.theme-dark code .hljs-symbol,
.theme-dark code .hljs-bullet,
.theme-dark code .hljs-addition,
.theme-dark code .hljs-variable,
.theme-dark code .hljs-template-tag,
.theme-dark code .hljs-template-variable,
.theme-dark pre .hljs-meta,
.theme-dark pre .hljs-type,
.theme-dark pre .hljs-symbol,
.theme-dark pre .hljs-bullet,
.theme-dark pre .hljs-addition,
.theme-dark pre .hljs-variable,
.theme-dark pre .hljs-template-tag,
.theme-dark pre .hljs-template-variable {
  color: #F1FA8C;
}
.theme-dark code .hljs-name,
.theme-dark pre .hljs-name {
  color: #80DEEA;
}
.theme-dark code .hljs-attr,
.theme-dark pre .hljs-attr {
  color: #E1BEE7;
}
.theme-dark code .hljs-string,
.theme-dark pre .hljs-string {
  color: #A5D6A7;
}
.theme-dark code .hljs-comment,
.theme-dark code .hljs-quote,
.theme-dark code .hljs-deletion,
.theme-dark pre .hljs-comment,
.theme-dark pre .hljs-quote,
.theme-dark pre .hljs-deletion {
  color: #6272A4;
}
.theme-dark code .hljs-keyword,
.theme-dark code .hljs-selector-tag,
.theme-dark code .hljs-literal,
.theme-dark code .hljs-title,
.theme-dark code .hljs-section,
.theme-dark code .hljs-doctag,
.theme-dark code .hljs-type,
.theme-dark code .hljs-name,
.theme-dark code .hljs-strong,
.theme-dark pre .hljs-keyword,
.theme-dark pre .hljs-selector-tag,
.theme-dark pre .hljs-literal,
.theme-dark pre .hljs-title,
.theme-dark pre .hljs-section,
.theme-dark pre .hljs-doctag,
.theme-dark pre .hljs-type,
.theme-dark pre .hljs-name,
.theme-dark pre .hljs-strong {
  font-weight: 700;
}
.theme-dark code .hljs-literal,
.theme-dark code .hljs-number,
.theme-dark pre .hljs-literal,
.theme-dark pre .hljs-number {
  color: #BD93F9;
}
.theme-dark code .hljs-emphasis,
.theme-dark pre .hljs-emphasis {
  font-style: italic;
}
.theme-light code[class*=language-] .hljs-comment,
.theme-light code[class*=language-] .hljs-quote,
.theme-light pre[class*=language-] .hljs-comment,
.theme-light pre[class*=language-] .hljs-quote {
  color: #A0A1A7;
  font-style: italic;
}
.theme-light code[class*=language-] .hljs-doctag,
.theme-light code[class*=language-] .hljs-keyword,
.theme-light code[class*=language-] .hljs-formula,
.theme-light pre[class*=language-] .hljs-doctag,
.theme-light pre[class*=language-] .hljs-keyword,
.theme-light pre[class*=language-] .hljs-formula {
  color: #A626A4;
}
.theme-light code[class*=language-] .hljs-name,
.theme-light pre[class*=language-] .hljs-name {
  color: #7986CB;
}
.theme-light code[class*=language-] .hljs-tag,
.theme-light pre[class*=language-] .hljs-tag {
  color: #B9BBD2;
}
.theme-light code[class*=language-] .hljs-section,
.theme-light code[class*=language-] .hljs-selector-tag,
.theme-light code[class*=language-] .hljs-deletion,
.theme-light code[class*=language-] .hljs-subst,
.theme-light pre[class*=language-] .hljs-section,
.theme-light pre[class*=language-] .hljs-selector-tag,
.theme-light pre[class*=language-] .hljs-deletion,
.theme-light pre[class*=language-] .hljs-subst {
  color: #E45649;
}
.theme-light code[class*=language-] .hljs-literal,
.theme-light pre[class*=language-] .hljs-literal {
  color: #0184BB;
}
.theme-light code[class*=language-] .hljs-string,
.theme-light code[class*=language-] .hljs-regexp,
.theme-light code[class*=language-] .hljs-addition,
.theme-light code[class*=language-] .hljs-attribute,
.theme-light code[class*=language-] .hljs-meta-string,
.theme-light pre[class*=language-] .hljs-string,
.theme-light pre[class*=language-] .hljs-regexp,
.theme-light pre[class*=language-] .hljs-addition,
.theme-light pre[class*=language-] .hljs-attribute,
.theme-light pre[class*=language-] .hljs-meta-string {
  color: #50A14F;
}
.theme-light code[class*=language-] .hljs-built_in,
.theme-light code[class*=language-] .hljs-class .hljs-title,
.theme-light pre[class*=language-] .hljs-built_in,
.theme-light pre[class*=language-] .hljs-class .hljs-title {
  color: #C18401;
}
.theme-light code[class*=language-] .hljs-attr,
.theme-light code[class*=language-] .hljs-variable,
.theme-light code[class*=language-] .hljs-template-variable,
.theme-light code[class*=language-] .hljs-type,
.theme-light code[class*=language-] .hljs-selector-class,
.theme-light code[class*=language-] .hljs-selector-attr,
.theme-light code[class*=language-] .hljs-selector-pseudo,
.theme-light code[class*=language-] .hljs-number,
.theme-light pre[class*=language-] .hljs-attr,
.theme-light pre[class*=language-] .hljs-variable,
.theme-light pre[class*=language-] .hljs-template-variable,
.theme-light pre[class*=language-] .hljs-type,
.theme-light pre[class*=language-] .hljs-selector-class,
.theme-light pre[class*=language-] .hljs-selector-attr,
.theme-light pre[class*=language-] .hljs-selector-pseudo,
.theme-light pre[class*=language-] .hljs-number {
  color: #BA68C8;
}
.theme-light code[class*=language-] .hljs-symbol,
.theme-light code[class*=language-] .hljs-bullet,
.theme-light code[class*=language-] .hljs-link,
.theme-light code[class*=language-] .hljs-meta,
.theme-light code[class*=language-] .hljs-selector-id,
.theme-light code[class*=language-] .hljs-title,
.theme-light pre[class*=language-] .hljs-symbol,
.theme-light pre[class*=language-] .hljs-bullet,
.theme-light pre[class*=language-] .hljs-link,
.theme-light pre[class*=language-] .hljs-meta,
.theme-light pre[class*=language-] .hljs-selector-id,
.theme-light pre[class*=language-] .hljs-title {
  color: #4078F2;
}
.theme-light code[class*=language-] .hljs-emphasis,
.theme-light pre[class*=language-] .hljs-emphasis {
  font-style: italic;
}
.theme-light code[class*=language-] .hljs-strong,
.theme-light pre[class*=language-] .hljs-strong {
  font-weight: 700;
}
.theme-light code[class*=language-] .hljs-link,
.theme-light pre[class*=language-] .hljs-link {
  text-decoration: underline;
}
.ps {
  position: relative;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y, .ps.ps--focus > .ps__rail-x,
.ps.ps--focus > .ps__rail-y, .ps.ps--scrolling-x > .ps__rail-x,
.ps.ps--scrolling-x > .ps__rail-y, .ps.ps--scrolling-y > .ps__rail-x,
.ps.ps--scrolling-y > .ps__rail-y {
  opacity: 1;
}
.ps > .ps__rail-x,
.ps > .ps__rail-y {
  z-index: 99999;
}
.ps > .ps__rail-x {
  height: 14px;
  background: transparent !important;
  transition: none !important;
}
.ps > .ps__rail-x:hover, .ps > .ps__rail-x:focus, .ps > .ps__rail-x.ps--clicking {
  opacity: 1;
}
.ps > .ps__rail-x:hover .ps__thumb-x, .ps > .ps__rail-x:focus .ps__thumb-x, .ps > .ps__rail-x.ps--clicking .ps__thumb-x {
  height: 10px;
}
.ps > .ps__rail-x .ps__thumb-x {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  height: 6px;
  transition: height 225ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ps > .ps__rail-y {
  width: 14px;
  background: transparent !important;
  transition: none !important;
  left: auto !important;
}
.ps > .ps__rail-y:hover, .ps > .ps__rail-y:focus, .ps > .ps__rail-y.ps--clicking {
  opacity: 1;
}
.ps > .ps__rail-y:hover .ps__thumb-y, .ps > .ps__rail-y:focus .ps__thumb-y, .ps > .ps__rail-y.ps--clicking .ps__thumb-y {
  width: 10px;
}
.ps > .ps__rail-y .ps__thumb-y {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  width: 6px;
  transition: width 225ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ql-toolbar {
  border-radius: 6px 6px 0 0;
  padding: 0 !important;
}
.ql-toolbar .ql-formats {
  margin: 11px 8px !important;
}
.ql-toolbar .ql-picker.ql-expanded .ql-picker-options {
  z-index: 10 !important;
}
.ql-container {
  overflow: hidden;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.ql-container .ql-editor {
  min-height: 160px;
  max-height: 160px;
  height: 160px;
}
.treo-theme-dark .ql-toolbar {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: #64748b;
}
.treo-theme-dark .ql-toolbar .ql-picker.ql-expanded .ql-picker-label {
  border-color: #64748b;
}
.treo-theme-dark .ql-toolbar .ql-picker.ql-expanded .ql-picker-options {
  border-color: #64748b;
  background: #27303f;
}
.treo-theme-dark .ql-toolbar .ql-picker .ql-picker-label {
  color: white;
}
.treo-theme-dark .ql-toolbar .ql-picker .ql-picker-options .ql-picker-item {
  color: white;
}
.treo-theme-dark .ql-toolbar .ql-stroke,
.treo-theme-dark .ql-toolbar .ql-stroke-mitter {
  stroke: #f1f5f9;
}
.treo-theme-dark .ql-toolbar .ql-fill {
  fill: #f1f5f9;
}
.treo-theme-dark .ql-toolbar button:hover,
.treo-theme-dark .ql-toolbar button:focus,
.treo-theme-dark .ql-toolbar button.ql-active,
.treo-theme-dark .ql-toolbar .ql-picker-label:hover,
.treo-theme-dark .ql-toolbar .ql-picker-label.ql-active,
.treo-theme-dark .ql-toolbar .ql-picker-item:hover,
.treo-theme-dark .ql-toolbar .ql-picker-item.ql-selected {
  color: #0694A2 !important;
}
.treo-theme-dark .ql-toolbar button:hover .ql-stroke,
.treo-theme-dark .ql-toolbar button:hover .ql-stroke-mitter,
.treo-theme-dark .ql-toolbar button:focus .ql-stroke,
.treo-theme-dark .ql-toolbar button:focus .ql-stroke-mitter,
.treo-theme-dark .ql-toolbar button.ql-active .ql-stroke,
.treo-theme-dark .ql-toolbar button.ql-active .ql-stroke-mitter,
.treo-theme-dark .ql-toolbar .ql-picker-label:hover .ql-stroke,
.treo-theme-dark .ql-toolbar .ql-picker-label:hover .ql-stroke-mitter,
.treo-theme-dark .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.treo-theme-dark .ql-toolbar .ql-picker-label.ql-active .ql-stroke-mitter,
.treo-theme-dark .ql-toolbar .ql-picker-item:hover .ql-stroke,
.treo-theme-dark .ql-toolbar .ql-picker-item:hover .ql-stroke-mitter,
.treo-theme-dark .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.treo-theme-dark .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-mitter {
  stroke: #0694A2 !important;
}
.treo-theme-dark .ql-toolbar button:hover .ql-fill,
.treo-theme-dark .ql-toolbar button:focus .ql-fill,
.treo-theme-dark .ql-toolbar button.ql-active .ql-fill,
.treo-theme-dark .ql-toolbar .ql-picker-label:hover .ql-fill,
.treo-theme-dark .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.treo-theme-dark .ql-toolbar .ql-picker-item:hover .ql-fill,
.treo-theme-dark .ql-toolbar .ql-picker-item.ql-selected .ql-fill {
  fill: #0694A2 !important;
}
.treo-theme-dark .ql-container {
  border-color: #64748b;
}
.treo-theme-dark .ql-container .ql-editor {
  background-color: rgba(0, 0, 0, 0.05);
}
.treo-theme-dark .ql-container .ql-editor:focus {
  background-color: #27303f;
}
.treo-theme-dark .ql-container .ql-editor.ql-blank::before {
  color: #64748b;
}
.treo-theme-light .ql-toolbar {
  background: #f1f5f9;
  border-color: #cfd8e3;
}
.treo-theme-light .ql-toolbar .ql-picker.ql-expanded .ql-picker-label {
  border-color: #cfd8e3;
}
.treo-theme-light .ql-toolbar .ql-picker.ql-expanded .ql-picker-options {
  border-color: #cfd8e3;
  background: white;
}
.treo-theme-light .ql-toolbar .ql-picker .ql-picker-label {
  color: #27303f;
}
.treo-theme-light .ql-toolbar .ql-picker .ql-picker-options .ql-picker-item {
  color: #27303f;
}
.treo-theme-light .ql-toolbar .ql-stroke,
.treo-theme-light .ql-toolbar .ql-stroke-mitter {
  stroke: #64748b;
}
.treo-theme-light .ql-toolbar .ql-fill {
  fill: #64748b;
}
.treo-theme-light .ql-toolbar button:hover,
.treo-theme-light .ql-toolbar button:focus,
.treo-theme-light .ql-toolbar button.ql-active,
.treo-theme-light .ql-toolbar .ql-picker-label:hover,
.treo-theme-light .ql-toolbar .ql-picker-label.ql-active,
.treo-theme-light .ql-toolbar .ql-picker-item:hover,
.treo-theme-light .ql-toolbar .ql-picker-item.ql-selected {
  color: #5850EC !important;
}
.treo-theme-light .ql-toolbar button:hover .ql-stroke,
.treo-theme-light .ql-toolbar button:hover .ql-stroke-mitter,
.treo-theme-light .ql-toolbar button:focus .ql-stroke,
.treo-theme-light .ql-toolbar button:focus .ql-stroke-mitter,
.treo-theme-light .ql-toolbar button.ql-active .ql-stroke,
.treo-theme-light .ql-toolbar button.ql-active .ql-stroke-mitter,
.treo-theme-light .ql-toolbar .ql-picker-label:hover .ql-stroke,
.treo-theme-light .ql-toolbar .ql-picker-label:hover .ql-stroke-mitter,
.treo-theme-light .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.treo-theme-light .ql-toolbar .ql-picker-label.ql-active .ql-stroke-mitter,
.treo-theme-light .ql-toolbar .ql-picker-item:hover .ql-stroke,
.treo-theme-light .ql-toolbar .ql-picker-item:hover .ql-stroke-mitter,
.treo-theme-light .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.treo-theme-light .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-mitter {
  stroke: #5850EC !important;
}
.treo-theme-light .ql-toolbar button:hover .ql-fill,
.treo-theme-light .ql-toolbar button:focus .ql-fill,
.treo-theme-light .ql-toolbar button.ql-active .ql-fill,
.treo-theme-light .ql-toolbar .ql-picker-label:hover .ql-fill,
.treo-theme-light .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.treo-theme-light .ql-toolbar .ql-picker-item:hover .ql-fill,
.treo-theme-light .ql-toolbar .ql-picker-item.ql-selected .ql-fill {
  fill: #5850EC !important;
}
.treo-theme-light .ql-container {
  border-color: #cfd8e3;
}
.treo-theme-light .ql-container .ql-editor {
  background-color: #fbfdfe;
}
.treo-theme-light .ql-container .ql-editor:focus {
  background-color: white;
}
.treo-theme-light .ql-container .ql-editor.ql-blank::before {
  color: #97a6ba;
}
.theme-dark .ql-toolbar {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: #64748b;
}
.theme-dark .ql-toolbar .ql-picker.ql-expanded .ql-picker-label {
  border-color: #64748b;
}
.theme-dark .ql-toolbar .ql-picker.ql-expanded .ql-picker-options {
  border-color: #64748b;
  background: #27303f;
}
.theme-dark .ql-toolbar .ql-picker .ql-picker-label {
  color: white;
}
.theme-dark .ql-toolbar .ql-picker .ql-picker-options .ql-picker-item {
  color: white;
}
.theme-dark .ql-toolbar .ql-stroke,
.theme-dark .ql-toolbar .ql-stroke-mitter {
  stroke: #f1f5f9;
}
.theme-dark .ql-toolbar .ql-fill {
  fill: #f1f5f9;
}
.theme-dark .ql-toolbar button:hover,
.theme-dark .ql-toolbar button:focus,
.theme-dark .ql-toolbar button.ql-active,
.theme-dark .ql-toolbar .ql-picker-label:hover,
.theme-dark .ql-toolbar .ql-picker-label.ql-active,
.theme-dark .ql-toolbar .ql-picker-item:hover,
.theme-dark .ql-toolbar .ql-picker-item.ql-selected {
  color: #FFFFFF !important;
}
.theme-dark .ql-toolbar button:hover .ql-stroke,
.theme-dark .ql-toolbar button:hover .ql-stroke-mitter,
.theme-dark .ql-toolbar button:focus .ql-stroke,
.theme-dark .ql-toolbar button:focus .ql-stroke-mitter,
.theme-dark .ql-toolbar button.ql-active .ql-stroke,
.theme-dark .ql-toolbar button.ql-active .ql-stroke-mitter,
.theme-dark .ql-toolbar .ql-picker-label:hover .ql-stroke,
.theme-dark .ql-toolbar .ql-picker-label:hover .ql-stroke-mitter,
.theme-dark .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.theme-dark .ql-toolbar .ql-picker-label.ql-active .ql-stroke-mitter,
.theme-dark .ql-toolbar .ql-picker-item:hover .ql-stroke,
.theme-dark .ql-toolbar .ql-picker-item:hover .ql-stroke-mitter,
.theme-dark .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.theme-dark .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-mitter {
  stroke: #FFFFFF !important;
}
.theme-dark .ql-toolbar button:hover .ql-fill,
.theme-dark .ql-toolbar button:focus .ql-fill,
.theme-dark .ql-toolbar button.ql-active .ql-fill,
.theme-dark .ql-toolbar .ql-picker-label:hover .ql-fill,
.theme-dark .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.theme-dark .ql-toolbar .ql-picker-item:hover .ql-fill,
.theme-dark .ql-toolbar .ql-picker-item.ql-selected .ql-fill {
  fill: #FFFFFF !important;
}
.theme-dark .ql-container {
  border-color: #64748b;
}
.theme-dark .ql-container .ql-editor {
  background-color: rgba(0, 0, 0, 0.05);
}
.theme-dark .ql-container .ql-editor:focus {
  background-color: #27303f;
}
.theme-dark .ql-container .ql-editor.ql-blank::before {
  color: #64748b;
}
.theme-light .ql-toolbar {
  background: #f1f5f9;
  border-color: #cfd8e3;
}
.theme-light .ql-toolbar .ql-picker.ql-expanded .ql-picker-label {
  border-color: #cfd8e3;
}
.theme-light .ql-toolbar .ql-picker.ql-expanded .ql-picker-options {
  border-color: #cfd8e3;
  background: white;
}
.theme-light .ql-toolbar .ql-picker .ql-picker-label {
  color: #27303f;
}
.theme-light .ql-toolbar .ql-picker .ql-picker-options .ql-picker-item {
  color: #27303f;
}
.theme-light .ql-toolbar .ql-stroke,
.theme-light .ql-toolbar .ql-stroke-mitter {
  stroke: #64748b;
}
.theme-light .ql-toolbar .ql-fill {
  fill: #64748b;
}
.theme-light .ql-toolbar button:hover,
.theme-light .ql-toolbar button:focus,
.theme-light .ql-toolbar button.ql-active,
.theme-light .ql-toolbar .ql-picker-label:hover,
.theme-light .ql-toolbar .ql-picker-label.ql-active,
.theme-light .ql-toolbar .ql-picker-item:hover,
.theme-light .ql-toolbar .ql-picker-item.ql-selected {
  color: #000000 !important;
}
.theme-light .ql-toolbar button:hover .ql-stroke,
.theme-light .ql-toolbar button:hover .ql-stroke-mitter,
.theme-light .ql-toolbar button:focus .ql-stroke,
.theme-light .ql-toolbar button:focus .ql-stroke-mitter,
.theme-light .ql-toolbar button.ql-active .ql-stroke,
.theme-light .ql-toolbar button.ql-active .ql-stroke-mitter,
.theme-light .ql-toolbar .ql-picker-label:hover .ql-stroke,
.theme-light .ql-toolbar .ql-picker-label:hover .ql-stroke-mitter,
.theme-light .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.theme-light .ql-toolbar .ql-picker-label.ql-active .ql-stroke-mitter,
.theme-light .ql-toolbar .ql-picker-item:hover .ql-stroke,
.theme-light .ql-toolbar .ql-picker-item:hover .ql-stroke-mitter,
.theme-light .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.theme-light .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-mitter {
  stroke: #000000 !important;
}
.theme-light .ql-toolbar button:hover .ql-fill,
.theme-light .ql-toolbar button:focus .ql-fill,
.theme-light .ql-toolbar button.ql-active .ql-fill,
.theme-light .ql-toolbar .ql-picker-label:hover .ql-fill,
.theme-light .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.theme-light .ql-toolbar .ql-picker-item:hover .ql-fill,
.theme-light .ql-toolbar .ql-picker-item.ql-selected .ql-fill {
  fill: #000000 !important;
}
.theme-light .ql-container {
  border-color: #cfd8e3;
}
.theme-light .ql-container .ql-editor {
  background-color: #fbfdfe;
}
.theme-light .ql-container .ql-editor:focus {
  background-color: white;
}
.theme-light .ql-container .ql-editor.ql-blank::before {
  color: #97a6ba;
}

/* ----------------------------------------------------------------------------------------------------- */
/* This injects Tailwind's component classes and any component classes registered by plugins.
/* ----------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------- */
/* Use custom @apply directives here to inline any existing utility classes into your own custom CSS.
/* ----------------------------------------------------------------------------------------------------- */
/**
 * .btn {
 *   @apply font-bold py-2 px-4 rounded;
 * }
 */
/* ----------------------------------------------------------------------------------------------------- */
/* This injects Tailwind's utility classes and any utility classes registered by plugins.
/* ----------------------------------------------------------------------------------------------------- */
.space-y-0 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(0px * var(--space-y-reverse)) !important;
}
.space-x-0 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(0px * var(--space-x-reverse)) !important;
  margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-1 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
}
.space-x-1 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
  margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-2 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
}
.space-x-2 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-3 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
}
.space-x-3 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
  margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
}
.space-x-4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(1rem * var(--space-x-reverse)) !important;
  margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
}
.space-x-5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
  margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
}
.space-x-6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-7 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
}
.space-x-7 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
  margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-8 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
}
.space-x-8 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(2rem * var(--space-x-reverse)) !important;
  margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-9 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
}
.space-x-9 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
  margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-10 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
}
.space-x-10 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-11 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
}
.space-x-11 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
  margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
}
.space-x-12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(3rem * var(--space-x-reverse)) !important;
  margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-13 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
}
.space-x-13 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
  margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-14 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
}
.space-x-14 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-15 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
}
.space-x-15 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
  margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-16 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
}
.space-x-16 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(4rem * var(--space-x-reverse)) !important;
  margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-18 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
}
.space-x-18 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-20 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
}
.space-x-20 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(5rem * var(--space-x-reverse)) !important;
  margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-22 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
}
.space-x-22 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-24 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
}
.space-x-24 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(6rem * var(--space-x-reverse)) !important;
  margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-26 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
}
.space-x-26 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-28 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
}
.space-x-28 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(7rem * var(--space-x-reverse)) !important;
  margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-30 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
}
.space-x-30 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-32 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
}
.space-x-32 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(8rem * var(--space-x-reverse)) !important;
  margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-36 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
}
.space-x-36 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(9rem * var(--space-x-reverse)) !important;
  margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-40 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
}
.space-x-40 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(10rem * var(--space-x-reverse)) !important;
  margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-44 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
}
.space-x-44 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(11rem * var(--space-x-reverse)) !important;
  margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-48 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
}
.space-x-48 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(12rem * var(--space-x-reverse)) !important;
  margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-50 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
}
.space-x-50 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-52 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
}
.space-x-52 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(13rem * var(--space-x-reverse)) !important;
  margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-56 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
}
.space-x-56 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(14rem * var(--space-x-reverse)) !important;
  margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-60 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
}
.space-x-60 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(15rem * var(--space-x-reverse)) !important;
  margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-64 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
}
.space-x-64 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(16rem * var(--space-x-reverse)) !important;
  margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-72 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
}
.space-x-72 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(18rem * var(--space-x-reverse)) !important;
  margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-80 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
}
.space-x-80 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(20rem * var(--space-x-reverse)) !important;
  margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-90 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
}
.space-x-90 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(24rem * var(--space-x-reverse)) !important;
  margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-96 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
}
.space-x-96 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(24rem * var(--space-x-reverse)) !important;
  margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-100 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
}
.space-x-100 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(25rem * var(--space-x-reverse)) !important;
  margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-120 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
}
.space-x-120 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(30rem * var(--space-x-reverse)) !important;
  margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-128 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
}
.space-x-128 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(32rem * var(--space-x-reverse)) !important;
  margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-140 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
}
.space-x-140 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(35rem * var(--space-x-reverse)) !important;
  margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-160 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
}
.space-x-160 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(40rem * var(--space-x-reverse)) !important;
  margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-180 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
}
.space-x-180 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(45rem * var(--space-x-reverse)) !important;
  margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-192 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
}
.space-x-192 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(48rem * var(--space-x-reverse)) !important;
  margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-200 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
}
.space-x-200 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(50rem * var(--space-x-reverse)) !important;
  margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-240 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
}
.space-x-240 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(60rem * var(--space-x-reverse)) !important;
  margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-256 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
}
.space-x-256 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(64rem * var(--space-x-reverse)) !important;
  margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-280 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
}
.space-x-280 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(70rem * var(--space-x-reverse)) !important;
  margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-320 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
}
.space-x-320 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(80rem * var(--space-x-reverse)) !important;
  margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-360 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
}
.space-x-360 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(90rem * var(--space-x-reverse)) !important;
  margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-400 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
}
.space-x-400 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(100rem * var(--space-x-reverse)) !important;
  margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-480 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
}
.space-x-480 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(120rem * var(--space-x-reverse)) !important;
  margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-px > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(1px * var(--space-y-reverse)) !important;
}
.space-x-px > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(1px * var(--space-x-reverse)) !important;
  margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-0\.5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
}
.space-x-0\.5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
  margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-1\.5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
}
.space-x-1\.5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
  margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-2\.5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
}
.space-x-2\.5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
  margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-3\.5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
}
.space-x-3\.5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
  margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-1\/2 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(50% * var(--space-y-reverse)) !important;
}
.space-x-1\/2 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(50% * var(--space-x-reverse)) !important;
  margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-1\/3 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
}
.space-x-1\/3 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
  margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-2\/3 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
}
.space-x-2\/3 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
  margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-1\/4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(25% * var(--space-y-reverse)) !important;
}
.space-x-1\/4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(25% * var(--space-x-reverse)) !important;
  margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-2\/4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(50% * var(--space-y-reverse)) !important;
}
.space-x-2\/4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(50% * var(--space-x-reverse)) !important;
  margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-3\/4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(75% * var(--space-y-reverse)) !important;
}
.space-x-3\/4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(75% * var(--space-x-reverse)) !important;
  margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-1\/5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(20% * var(--space-y-reverse)) !important;
}
.space-x-1\/5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(20% * var(--space-x-reverse)) !important;
  margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-2\/5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(40% * var(--space-y-reverse)) !important;
}
.space-x-2\/5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(40% * var(--space-x-reverse)) !important;
  margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-3\/5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(60% * var(--space-y-reverse)) !important;
}
.space-x-3\/5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(60% * var(--space-x-reverse)) !important;
  margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-4\/5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(80% * var(--space-y-reverse)) !important;
}
.space-x-4\/5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(80% * var(--space-x-reverse)) !important;
  margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-1\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
}
.space-x-1\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
  margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-2\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
}
.space-x-2\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
  margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-3\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(50% * var(--space-y-reverse)) !important;
}
.space-x-3\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(50% * var(--space-x-reverse)) !important;
  margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-4\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
}
.space-x-4\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
  margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-5\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
}
.space-x-5\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
  margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-1\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
}
.space-x-1\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
  margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-2\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
}
.space-x-2\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
  margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-3\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(25% * var(--space-y-reverse)) !important;
}
.space-x-3\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(25% * var(--space-x-reverse)) !important;
  margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-4\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
}
.space-x-4\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
  margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-5\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
}
.space-x-5\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
  margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-6\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(50% * var(--space-y-reverse)) !important;
}
.space-x-6\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(50% * var(--space-x-reverse)) !important;
  margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-7\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
}
.space-x-7\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
  margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-8\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
}
.space-x-8\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
  margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-9\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(75% * var(--space-y-reverse)) !important;
}
.space-x-9\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(75% * var(--space-x-reverse)) !important;
  margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-10\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
}
.space-x-10\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
  margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-11\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
}
.space-x-11\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
  margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-full > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(100% * var(--space-y-reverse)) !important;
}
.space-x-full > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(100% * var(--space-x-reverse)) !important;
  margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-2px > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(2px * var(--space-y-reverse)) !important;
}
.space-x-2px > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(2px * var(--space-x-reverse)) !important;
  margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-1 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
}
.-space-x-1 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
  margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-2 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
}
.-space-x-2 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-3 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
}
.-space-x-3 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
  margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
}
.-space-x-4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-1rem * var(--space-x-reverse)) !important;
  margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
}
.-space-x-5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
  margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
}
.-space-x-6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-7 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
}
.-space-x-7 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
  margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-8 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
}
.-space-x-8 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-2rem * var(--space-x-reverse)) !important;
  margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-9 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
}
.-space-x-9 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
  margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-10 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
}
.-space-x-10 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-11 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
}
.-space-x-11 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
  margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
}
.-space-x-12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-3rem * var(--space-x-reverse)) !important;
  margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-13 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
}
.-space-x-13 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
  margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-14 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
}
.-space-x-14 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-15 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
}
.-space-x-15 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
  margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-16 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
}
.-space-x-16 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-4rem * var(--space-x-reverse)) !important;
  margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-18 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
}
.-space-x-18 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-20 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
}
.-space-x-20 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-22 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
}
.-space-x-22 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-24 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
}
.-space-x-24 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-6rem * var(--space-x-reverse)) !important;
  margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-26 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
}
.-space-x-26 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-28 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
}
.-space-x-28 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-7rem * var(--space-x-reverse)) !important;
  margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-30 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
}
.-space-x-30 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-32 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
}
.-space-x-32 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-8rem * var(--space-x-reverse)) !important;
  margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-36 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
}
.-space-x-36 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-9rem * var(--space-x-reverse)) !important;
  margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-40 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
}
.-space-x-40 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-10rem * var(--space-x-reverse)) !important;
  margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-44 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
}
.-space-x-44 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-11rem * var(--space-x-reverse)) !important;
  margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-48 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
}
.-space-x-48 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-12rem * var(--space-x-reverse)) !important;
  margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-50 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
}
.-space-x-50 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
  margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-52 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
}
.-space-x-52 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-13rem * var(--space-x-reverse)) !important;
  margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-56 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
}
.-space-x-56 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-14rem * var(--space-x-reverse)) !important;
  margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-60 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
}
.-space-x-60 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-15rem * var(--space-x-reverse)) !important;
  margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-64 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
}
.-space-x-64 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-16rem * var(--space-x-reverse)) !important;
  margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-72 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
}
.-space-x-72 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-18rem * var(--space-x-reverse)) !important;
  margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-80 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
}
.-space-x-80 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-20rem * var(--space-x-reverse)) !important;
  margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-90 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
}
.-space-x-90 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-24rem * var(--space-x-reverse)) !important;
  margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-96 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
}
.-space-x-96 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-24rem * var(--space-x-reverse)) !important;
  margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-100 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
}
.-space-x-100 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-25rem * var(--space-x-reverse)) !important;
  margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-120 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
}
.-space-x-120 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-30rem * var(--space-x-reverse)) !important;
  margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-128 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
}
.-space-x-128 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-32rem * var(--space-x-reverse)) !important;
  margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-140 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
}
.-space-x-140 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-35rem * var(--space-x-reverse)) !important;
  margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-160 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
}
.-space-x-160 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-40rem * var(--space-x-reverse)) !important;
  margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-180 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
}
.-space-x-180 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-45rem * var(--space-x-reverse)) !important;
  margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-192 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
}
.-space-x-192 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-48rem * var(--space-x-reverse)) !important;
  margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-200 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
}
.-space-x-200 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-50rem * var(--space-x-reverse)) !important;
  margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-240 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
}
.-space-x-240 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-60rem * var(--space-x-reverse)) !important;
  margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-256 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
}
.-space-x-256 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-64rem * var(--space-x-reverse)) !important;
  margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-280 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
}
.-space-x-280 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-70rem * var(--space-x-reverse)) !important;
  margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-320 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
}
.-space-x-320 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-80rem * var(--space-x-reverse)) !important;
  margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-360 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
}
.-space-x-360 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-90rem * var(--space-x-reverse)) !important;
  margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-400 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
}
.-space-x-400 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-100rem * var(--space-x-reverse)) !important;
  margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-480 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
}
.-space-x-480 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-120rem * var(--space-x-reverse)) !important;
  margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-px > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
}
.-space-x-px > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-1px * var(--space-x-reverse)) !important;
  margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-0\.5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
}
.-space-x-0\.5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
  margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-1\.5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
}
.-space-x-1\.5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
  margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-2\.5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
}
.-space-x-2\.5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
  margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-3\.5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
}
.-space-x-3\.5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
  margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-1\/2 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
}
.-space-x-1\/2 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-50% * var(--space-x-reverse)) !important;
  margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-1\/3 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
}
.-space-x-1\/3 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
  margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-2\/3 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
}
.-space-x-2\/3 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
  margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-1\/4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
}
.-space-x-1\/4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-25% * var(--space-x-reverse)) !important;
  margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-2\/4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
}
.-space-x-2\/4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-50% * var(--space-x-reverse)) !important;
  margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-3\/4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
}
.-space-x-3\/4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-75% * var(--space-x-reverse)) !important;
  margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-1\/5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
}
.-space-x-1\/5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-20% * var(--space-x-reverse)) !important;
  margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-2\/5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
}
.-space-x-2\/5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-40% * var(--space-x-reverse)) !important;
  margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-3\/5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
}
.-space-x-3\/5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-60% * var(--space-x-reverse)) !important;
  margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-4\/5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
}
.-space-x-4\/5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-80% * var(--space-x-reverse)) !important;
  margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-1\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
}
.-space-x-1\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
  margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-2\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
}
.-space-x-2\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
  margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-3\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
}
.-space-x-3\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-50% * var(--space-x-reverse)) !important;
  margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-4\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
}
.-space-x-4\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
  margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-5\/6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
}
.-space-x-5\/6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
  margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-1\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
}
.-space-x-1\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
  margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-2\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
}
.-space-x-2\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
  margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-3\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
}
.-space-x-3\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-25% * var(--space-x-reverse)) !important;
  margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-4\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
}
.-space-x-4\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
  margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-5\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
}
.-space-x-5\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
  margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-6\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
}
.-space-x-6\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-50% * var(--space-x-reverse)) !important;
  margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-7\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
}
.-space-x-7\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
  margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-8\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
}
.-space-x-8\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
  margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-9\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
}
.-space-x-9\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-75% * var(--space-x-reverse)) !important;
  margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-10\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
}
.-space-x-10\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
  margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-11\/12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
}
.-space-x-11\/12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
  margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-full > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
}
.-space-x-full > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-100% * var(--space-x-reverse)) !important;
  margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
}
.-space-y-2px > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
}
.-space-x-2px > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-2px * var(--space-x-reverse)) !important;
  margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
}
.space-y-reverse > :not(template) ~ :not(template) {
  --space-y-reverse: 1 !important;
}
.space-x-reverse > :not(template) ~ :not(template) {
  --space-x-reverse: 1 !important;
}
.divide-y-0 > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(0px * var(--divide-y-reverse)) !important;
}
.divide-x-0 > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(0px * var(--divide-x-reverse)) !important;
  border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))) !important;
}
.divide-y-2 > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(2px * var(--divide-y-reverse)) !important;
}
.divide-x-2 > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(2px * var(--divide-x-reverse)) !important;
  border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))) !important;
}
.divide-y-4 > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(4px * var(--divide-y-reverse)) !important;
}
.divide-x-4 > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(4px * var(--divide-x-reverse)) !important;
  border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))) !important;
}
.divide-y-8 > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(8px * var(--divide-y-reverse)) !important;
}
.divide-x-8 > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(8px * var(--divide-x-reverse)) !important;
  border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))) !important;
}
.divide-y > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(1px * var(--divide-y-reverse)) !important;
}
.divide-x > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(1px * var(--divide-x-reverse)) !important;
  border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))) !important;
}
.divide-y-reverse > :not(template) ~ :not(template) {
  --divide-y-reverse: 1 !important;
}
.divide-x-reverse > :not(template) ~ :not(template) {
  --divide-x-reverse: 1 !important;
}
.divide-current > :not(template) ~ :not(template) {
  border-color: currentColor !important;
}
.divide-transparent > :not(template) ~ :not(template) {
  border-color: transparent !important;
}
.divide-white > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, var(--divide-opacity)) !important;
}
.divide-black > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #000000 !important;
  border-color: rgba(0, 0, 0, var(--divide-opacity)) !important;
}
.divide-gray-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F9FAFB !important;
  border-color: rgba(249, 250, 251, var(--divide-opacity)) !important;
}
.divide-gray-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F4F5F7 !important;
  border-color: rgba(244, 245, 247, var(--divide-opacity)) !important;
}
.divide-gray-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #E5E7EB !important;
  border-color: rgba(229, 231, 235, var(--divide-opacity)) !important;
}
.divide-gray-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #D2D6DC !important;
  border-color: rgba(210, 214, 220, var(--divide-opacity)) !important;
}
.divide-gray-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #9FA6B2 !important;
  border-color: rgba(159, 166, 178, var(--divide-opacity)) !important;
}
.divide-gray-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #6B7280 !important;
  border-color: rgba(107, 114, 128, var(--divide-opacity)) !important;
}
.divide-gray-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #4B5563 !important;
  border-color: rgba(75, 85, 99, var(--divide-opacity)) !important;
}
.divide-gray-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #374151 !important;
  border-color: rgba(55, 65, 81, var(--divide-opacity)) !important;
}
.divide-gray-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #252F3F !important;
  border-color: rgba(37, 47, 63, var(--divide-opacity)) !important;
}
.divide-gray-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #161E2E !important;
  border-color: rgba(22, 30, 46, var(--divide-opacity)) !important;
}
.divide-gray > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #6B7280 !important;
  border-color: rgba(107, 114, 128, var(--divide-opacity)) !important;
}
.divide-cool-gray-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FBFDFE !important;
  border-color: rgba(251, 253, 254, var(--divide-opacity)) !important;
}
.divide-cool-gray-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F1F5F9 !important;
  border-color: rgba(241, 245, 249, var(--divide-opacity)) !important;
}
.divide-cool-gray-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #E2E8F0 !important;
  border-color: rgba(226, 232, 240, var(--divide-opacity)) !important;
}
.divide-cool-gray-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #CFD8E3 !important;
  border-color: rgba(207, 216, 227, var(--divide-opacity)) !important;
}
.divide-cool-gray-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #97A6BA !important;
  border-color: rgba(151, 166, 186, var(--divide-opacity)) !important;
}
.divide-cool-gray-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #64748B !important;
  border-color: rgba(100, 116, 139, var(--divide-opacity)) !important;
}
.divide-cool-gray-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #475569 !important;
  border-color: rgba(71, 85, 105, var(--divide-opacity)) !important;
}
.divide-cool-gray-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #364152 !important;
  border-color: rgba(54, 65, 82, var(--divide-opacity)) !important;
}
.divide-cool-gray-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #27303F !important;
  border-color: rgba(39, 48, 63, var(--divide-opacity)) !important;
}
.divide-cool-gray-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #1A202E !important;
  border-color: rgba(26, 32, 46, var(--divide-opacity)) !important;
}
.divide-cool-gray > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #64748B !important;
  border-color: rgba(100, 116, 139, var(--divide-opacity)) !important;
}
.divide-red-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FDF2F2 !important;
  border-color: rgba(253, 242, 242, var(--divide-opacity)) !important;
}
.divide-red-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FDE8E8 !important;
  border-color: rgba(253, 232, 232, var(--divide-opacity)) !important;
}
.divide-red-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FBD5D5 !important;
  border-color: rgba(251, 213, 213, var(--divide-opacity)) !important;
}
.divide-red-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F8B4B4 !important;
  border-color: rgba(248, 180, 180, var(--divide-opacity)) !important;
}
.divide-red-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F98080 !important;
  border-color: rgba(249, 128, 128, var(--divide-opacity)) !important;
}
.divide-red-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F05252 !important;
  border-color: rgba(240, 82, 82, var(--divide-opacity)) !important;
}
.divide-red-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #E02424 !important;
  border-color: rgba(224, 36, 36, var(--divide-opacity)) !important;
}
.divide-red-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #C81E1E !important;
  border-color: rgba(200, 30, 30, var(--divide-opacity)) !important;
}
.divide-red-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #9B1C1C !important;
  border-color: rgba(155, 28, 28, var(--divide-opacity)) !important;
}
.divide-red-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #771D1D !important;
  border-color: rgba(119, 29, 29, var(--divide-opacity)) !important;
}
.divide-red > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F05252 !important;
  border-color: rgba(240, 82, 82, var(--divide-opacity)) !important;
}
.divide-orange-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FFF8F1 !important;
  border-color: rgba(255, 248, 241, var(--divide-opacity)) !important;
}
.divide-orange-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FEECDC !important;
  border-color: rgba(254, 236, 220, var(--divide-opacity)) !important;
}
.divide-orange-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FCD9BD !important;
  border-color: rgba(252, 217, 189, var(--divide-opacity)) !important;
}
.divide-orange-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FDBA8C !important;
  border-color: rgba(253, 186, 140, var(--divide-opacity)) !important;
}
.divide-orange-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FF8A4C !important;
  border-color: rgba(255, 138, 76, var(--divide-opacity)) !important;
}
.divide-orange-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FF5A1F !important;
  border-color: rgba(255, 90, 31, var(--divide-opacity)) !important;
}
.divide-orange-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #D03801 !important;
  border-color: rgba(208, 56, 1, var(--divide-opacity)) !important;
}
.divide-orange-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #B43403 !important;
  border-color: rgba(180, 52, 3, var(--divide-opacity)) !important;
}
.divide-orange-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #8A2C0D !important;
  border-color: rgba(138, 44, 13, var(--divide-opacity)) !important;
}
.divide-orange-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #771D1D !important;
  border-color: rgba(119, 29, 29, var(--divide-opacity)) !important;
}
.divide-orange > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FF5A1F !important;
  border-color: rgba(255, 90, 31, var(--divide-opacity)) !important;
}
.divide-yellow-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FDFDEA !important;
  border-color: rgba(253, 253, 234, var(--divide-opacity)) !important;
}
.divide-yellow-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FDF6B2 !important;
  border-color: rgba(253, 246, 178, var(--divide-opacity)) !important;
}
.divide-yellow-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FCE96A !important;
  border-color: rgba(252, 233, 106, var(--divide-opacity)) !important;
}
.divide-yellow-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FACA15 !important;
  border-color: rgba(250, 202, 21, var(--divide-opacity)) !important;
}
.divide-yellow-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #E3A008 !important;
  border-color: rgba(227, 160, 8, var(--divide-opacity)) !important;
}
.divide-yellow-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #C27803 !important;
  border-color: rgba(194, 120, 3, var(--divide-opacity)) !important;
}
.divide-yellow-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #9F580A !important;
  border-color: rgba(159, 88, 10, var(--divide-opacity)) !important;
}
.divide-yellow-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #8E4B10 !important;
  border-color: rgba(142, 75, 16, var(--divide-opacity)) !important;
}
.divide-yellow-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #723B13 !important;
  border-color: rgba(114, 59, 19, var(--divide-opacity)) !important;
}
.divide-yellow-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #633112 !important;
  border-color: rgba(99, 49, 18, var(--divide-opacity)) !important;
}
.divide-yellow > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #C27803 !important;
  border-color: rgba(194, 120, 3, var(--divide-opacity)) !important;
}
.divide-green-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F3FAF7 !important;
  border-color: rgba(243, 250, 247, var(--divide-opacity)) !important;
}
.divide-green-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #DEF7EC !important;
  border-color: rgba(222, 247, 236, var(--divide-opacity)) !important;
}
.divide-green-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #BCF0DA !important;
  border-color: rgba(188, 240, 218, var(--divide-opacity)) !important;
}
.divide-green-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #84E1BC !important;
  border-color: rgba(132, 225, 188, var(--divide-opacity)) !important;
}
.divide-green-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #31C48D !important;
  border-color: rgba(49, 196, 141, var(--divide-opacity)) !important;
}
.divide-green-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #0E9F6E !important;
  border-color: rgba(14, 159, 110, var(--divide-opacity)) !important;
}
.divide-green-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #057A55 !important;
  border-color: rgba(5, 122, 85, var(--divide-opacity)) !important;
}
.divide-green-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #046C4E !important;
  border-color: rgba(4, 108, 78, var(--divide-opacity)) !important;
}
.divide-green-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #03543F !important;
  border-color: rgba(3, 84, 63, var(--divide-opacity)) !important;
}
.divide-green-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #014737 !important;
  border-color: rgba(1, 71, 55, var(--divide-opacity)) !important;
}
.divide-green > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #0E9F6E !important;
  border-color: rgba(14, 159, 110, var(--divide-opacity)) !important;
}
.divide-teal-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #EDFAFA !important;
  border-color: rgba(237, 250, 250, var(--divide-opacity)) !important;
}
.divide-teal-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #D5F5F6 !important;
  border-color: rgba(213, 245, 246, var(--divide-opacity)) !important;
}
.divide-teal-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #AFECEF !important;
  border-color: rgba(175, 236, 239, var(--divide-opacity)) !important;
}
.divide-teal-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #7EDCE2 !important;
  border-color: rgba(126, 220, 226, var(--divide-opacity)) !important;
}
.divide-teal-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #16BDCA !important;
  border-color: rgba(22, 189, 202, var(--divide-opacity)) !important;
}
.divide-teal-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #0694A2 !important;
  border-color: rgba(6, 148, 162, var(--divide-opacity)) !important;
}
.divide-teal-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #047481 !important;
  border-color: rgba(4, 116, 129, var(--divide-opacity)) !important;
}
.divide-teal-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #036672 !important;
  border-color: rgba(3, 102, 114, var(--divide-opacity)) !important;
}
.divide-teal-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #05505C !important;
  border-color: rgba(5, 80, 92, var(--divide-opacity)) !important;
}
.divide-teal-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #014451 !important;
  border-color: rgba(1, 68, 81, var(--divide-opacity)) !important;
}
.divide-teal > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #0694A2 !important;
  border-color: rgba(6, 148, 162, var(--divide-opacity)) !important;
}
.divide-blue-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #EBF5FF !important;
  border-color: rgba(235, 245, 255, var(--divide-opacity)) !important;
}
.divide-blue-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #E1EFFE !important;
  border-color: rgba(225, 239, 254, var(--divide-opacity)) !important;
}
.divide-blue-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #C3DDFD !important;
  border-color: rgba(195, 221, 253, var(--divide-opacity)) !important;
}
.divide-blue-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #A4CAFE !important;
  border-color: rgba(164, 202, 254, var(--divide-opacity)) !important;
}
.divide-blue-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #76A9FA !important;
  border-color: rgba(118, 169, 250, var(--divide-opacity)) !important;
}
.divide-blue-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #3F83F8 !important;
  border-color: rgba(63, 131, 248, var(--divide-opacity)) !important;
}
.divide-blue-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #1C64F2 !important;
  border-color: rgba(28, 100, 242, var(--divide-opacity)) !important;
}
.divide-blue-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #1A56DB !important;
  border-color: rgba(26, 86, 219, var(--divide-opacity)) !important;
}
.divide-blue-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #1E429F !important;
  border-color: rgba(30, 66, 159, var(--divide-opacity)) !important;
}
.divide-blue-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #233876 !important;
  border-color: rgba(35, 56, 118, var(--divide-opacity)) !important;
}
.divide-blue > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #3F83F8 !important;
  border-color: rgba(63, 131, 248, var(--divide-opacity)) !important;
}
.divide-indigo-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F0F5FF !important;
  border-color: rgba(240, 245, 255, var(--divide-opacity)) !important;
}
.divide-indigo-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #E5EDFF !important;
  border-color: rgba(229, 237, 255, var(--divide-opacity)) !important;
}
.divide-indigo-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #CDDBFE !important;
  border-color: rgba(205, 219, 254, var(--divide-opacity)) !important;
}
.divide-indigo-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #B4C6FC !important;
  border-color: rgba(180, 198, 252, var(--divide-opacity)) !important;
}
.divide-indigo-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #8DA2FB !important;
  border-color: rgba(141, 162, 251, var(--divide-opacity)) !important;
}
.divide-indigo-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #6875F5 !important;
  border-color: rgba(104, 117, 245, var(--divide-opacity)) !important;
}
.divide-indigo-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #5850EC !important;
  border-color: rgba(88, 80, 236, var(--divide-opacity)) !important;
}
.divide-indigo-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #5145CD !important;
  border-color: rgba(81, 69, 205, var(--divide-opacity)) !important;
}
.divide-indigo-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #42389D !important;
  border-color: rgba(66, 56, 157, var(--divide-opacity)) !important;
}
.divide-indigo-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #362F78 !important;
  border-color: rgba(54, 47, 120, var(--divide-opacity)) !important;
}
.divide-indigo > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #6875F5 !important;
  border-color: rgba(104, 117, 245, var(--divide-opacity)) !important;
}
.divide-purple-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F6F5FF !important;
  border-color: rgba(246, 245, 255, var(--divide-opacity)) !important;
}
.divide-purple-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #EDEBFE !important;
  border-color: rgba(237, 235, 254, var(--divide-opacity)) !important;
}
.divide-purple-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #DCD7FE !important;
  border-color: rgba(220, 215, 254, var(--divide-opacity)) !important;
}
.divide-purple-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #CABFFD !important;
  border-color: rgba(202, 191, 253, var(--divide-opacity)) !important;
}
.divide-purple-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #AC94FA !important;
  border-color: rgba(172, 148, 250, var(--divide-opacity)) !important;
}
.divide-purple-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #9061F9 !important;
  border-color: rgba(144, 97, 249, var(--divide-opacity)) !important;
}
.divide-purple-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #7E3AF2 !important;
  border-color: rgba(126, 58, 242, var(--divide-opacity)) !important;
}
.divide-purple-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #6C2BD9 !important;
  border-color: rgba(108, 43, 217, var(--divide-opacity)) !important;
}
.divide-purple-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #5521B5 !important;
  border-color: rgba(85, 33, 181, var(--divide-opacity)) !important;
}
.divide-purple-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #4A1D96 !important;
  border-color: rgba(74, 29, 150, var(--divide-opacity)) !important;
}
.divide-purple > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #9061F9 !important;
  border-color: rgba(144, 97, 249, var(--divide-opacity)) !important;
}
.divide-pink-50 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FDF2F8 !important;
  border-color: rgba(253, 242, 248, var(--divide-opacity)) !important;
}
.divide-pink-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FCE8F3 !important;
  border-color: rgba(252, 232, 243, var(--divide-opacity)) !important;
}
.divide-pink-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FAD1E8 !important;
  border-color: rgba(250, 209, 232, var(--divide-opacity)) !important;
}
.divide-pink-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F8B4D9 !important;
  border-color: rgba(248, 180, 217, var(--divide-opacity)) !important;
}
.divide-pink-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #F17EB8 !important;
  border-color: rgba(241, 126, 184, var(--divide-opacity)) !important;
}
.divide-pink-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #E74694 !important;
  border-color: rgba(231, 70, 148, var(--divide-opacity)) !important;
}
.divide-pink-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #D61F69 !important;
  border-color: rgba(214, 31, 105, var(--divide-opacity)) !important;
}
.divide-pink-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #BF125D !important;
  border-color: rgba(191, 18, 93, var(--divide-opacity)) !important;
}
.divide-pink-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #99154B !important;
  border-color: rgba(153, 21, 75, var(--divide-opacity)) !important;
}
.divide-pink-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #751A3D !important;
  border-color: rgba(117, 26, 61, var(--divide-opacity)) !important;
}
.divide-pink > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #E74694 !important;
  border-color: rgba(231, 70, 148, var(--divide-opacity)) !important;
}
.divide-solid > :not(template) ~ :not(template) {
  border-style: solid !important;
}
.divide-dashed > :not(template) ~ :not(template) {
  border-style: dashed !important;
}
.divide-dotted > :not(template) ~ :not(template) {
  border-style: dotted !important;
}
.divide-double > :not(template) ~ :not(template) {
  border-style: double !important;
}
.divide-none > :not(template) ~ :not(template) {
  border-style: none !important;
}
.divide-opacity-0 > :not(template) ~ :not(template) {
  --divide-opacity: 0 !important;
}
.divide-opacity-12 > :not(template) ~ :not(template) {
  --divide-opacity: 0.12 !important;
}
.divide-opacity-25 > :not(template) ~ :not(template) {
  --divide-opacity: 0.25 !important;
}
.divide-opacity-38 > :not(template) ~ :not(template) {
  --divide-opacity: 0.38 !important;
}
.divide-opacity-50 > :not(template) ~ :not(template) {
  --divide-opacity: 0.5 !important;
}
.divide-opacity-54 > :not(template) ~ :not(template) {
  --divide-opacity: 0.54 !important;
}
.divide-opacity-70 > :not(template) ~ :not(template) {
  --divide-opacity: 0.70 !important;
}
.divide-opacity-75 > :not(template) ~ :not(template) {
  --divide-opacity: 0.75 !important;
}
.divide-opacity-84 > :not(template) ~ :not(template) {
  --divide-opacity: 0.84 !important;
}
.divide-opacity-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}
.not-sr-only {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}
.focus\:sr-only:focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}
.focus\:not-sr-only:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}
.bg-fixed {
  background-attachment: fixed !important;
}
.bg-local {
  background-attachment: local !important;
}
.bg-scroll {
  background-attachment: scroll !important;
}
.bg-clip-border {
  background-clip: border-box !important;
}
.bg-clip-padding {
  background-clip: padding-box !important;
}
.bg-clip-content {
  background-clip: content-box !important;
}
.bg-clip-text {
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
.bg-current {
  background-color: currentColor !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-white {
  --bg-opacity: 1 !important;
  background-color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
}
.bg-black {
  --bg-opacity: 1 !important;
  background-color: #000000 !important;
  background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
}
.bg-gray-50 {
  --bg-opacity: 1 !important;
  background-color: #F9FAFB !important;
  background-color: rgba(249, 250, 251, var(--bg-opacity)) !important;
}
.bg-gray-100 {
  --bg-opacity: 1 !important;
  background-color: #F4F5F7 !important;
  background-color: rgba(244, 245, 247, var(--bg-opacity)) !important;
}
.bg-gray-200 {
  --bg-opacity: 1 !important;
  background-color: #E5E7EB !important;
  background-color: rgba(229, 231, 235, var(--bg-opacity)) !important;
}
.bg-gray-300 {
  --bg-opacity: 1 !important;
  background-color: #D2D6DC !important;
  background-color: rgba(210, 214, 220, var(--bg-opacity)) !important;
}
.bg-gray-400 {
  --bg-opacity: 1 !important;
  background-color: #9FA6B2 !important;
  background-color: rgba(159, 166, 178, var(--bg-opacity)) !important;
}
.bg-gray-500 {
  --bg-opacity: 1 !important;
  background-color: #6B7280 !important;
  background-color: rgba(107, 114, 128, var(--bg-opacity)) !important;
}
.bg-gray-600 {
  --bg-opacity: 1 !important;
  background-color: #4B5563 !important;
  background-color: rgba(75, 85, 99, var(--bg-opacity)) !important;
}
.bg-gray-700 {
  --bg-opacity: 1 !important;
  background-color: #374151 !important;
  background-color: rgba(55, 65, 81, var(--bg-opacity)) !important;
}
.bg-gray-800 {
  --bg-opacity: 1 !important;
  background-color: #252F3F !important;
  background-color: rgba(37, 47, 63, var(--bg-opacity)) !important;
}
.bg-gray-900 {
  --bg-opacity: 1 !important;
  background-color: #161E2E !important;
  background-color: rgba(22, 30, 46, var(--bg-opacity)) !important;
}
.bg-gray {
  --bg-opacity: 1 !important;
  background-color: #6B7280 !important;
  background-color: rgba(107, 114, 128, var(--bg-opacity)) !important;
}
.bg-cool-gray-50 {
  --bg-opacity: 1 !important;
  background-color: #FBFDFE !important;
  background-color: rgba(251, 253, 254, var(--bg-opacity)) !important;
}
.bg-cool-gray-100 {
  --bg-opacity: 1 !important;
  background-color: #F1F5F9 !important;
  background-color: rgba(241, 245, 249, var(--bg-opacity)) !important;
}
.bg-cool-gray-200 {
  --bg-opacity: 1 !important;
  background-color: #E2E8F0 !important;
  background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
}
.bg-cool-gray-300 {
  --bg-opacity: 1 !important;
  background-color: #CFD8E3 !important;
  background-color: rgba(207, 216, 227, var(--bg-opacity)) !important;
}
.bg-cool-gray-400 {
  --bg-opacity: 1 !important;
  background-color: #97A6BA !important;
  background-color: rgba(151, 166, 186, var(--bg-opacity)) !important;
}
.bg-cool-gray-500 {
  --bg-opacity: 1 !important;
  background-color: #64748B !important;
  background-color: rgba(100, 116, 139, var(--bg-opacity)) !important;
}
.bg-cool-gray-600 {
  --bg-opacity: 1 !important;
  background-color: #475569 !important;
  background-color: rgba(71, 85, 105, var(--bg-opacity)) !important;
}
.bg-cool-gray-700 {
  --bg-opacity: 1 !important;
  background-color: #364152 !important;
  background-color: rgba(54, 65, 82, var(--bg-opacity)) !important;
}
.bg-cool-gray-800 {
  --bg-opacity: 1 !important;
  background-color: #27303F !important;
  background-color: rgba(39, 48, 63, var(--bg-opacity)) !important;
}
.bg-cool-gray-900 {
  --bg-opacity: 1 !important;
  background-color: #1A202E !important;
  background-color: rgba(26, 32, 46, var(--bg-opacity)) !important;
}
.bg-cool-gray {
  --bg-opacity: 1 !important;
  background-color: #64748B !important;
  background-color: rgba(100, 116, 139, var(--bg-opacity)) !important;
}
.bg-red-50 {
  --bg-opacity: 1 !important;
  background-color: #FDF2F2 !important;
  background-color: rgba(253, 242, 242, var(--bg-opacity)) !important;
}
.bg-red-100 {
  --bg-opacity: 1 !important;
  background-color: #FDE8E8 !important;
  background-color: rgba(253, 232, 232, var(--bg-opacity)) !important;
}
.bg-red-200 {
  --bg-opacity: 1 !important;
  background-color: #FBD5D5 !important;
  background-color: rgba(251, 213, 213, var(--bg-opacity)) !important;
}
.bg-red-300 {
  --bg-opacity: 1 !important;
  background-color: #F8B4B4 !important;
  background-color: rgba(248, 180, 180, var(--bg-opacity)) !important;
}
.bg-red-400 {
  --bg-opacity: 1 !important;
  background-color: #F98080 !important;
  background-color: rgba(249, 128, 128, var(--bg-opacity)) !important;
}
.bg-red-500 {
  --bg-opacity: 1 !important;
  background-color: #F05252 !important;
  background-color: rgba(240, 82, 82, var(--bg-opacity)) !important;
}
.bg-red-600 {
  --bg-opacity: 1 !important;
  background-color: #E02424 !important;
  background-color: rgba(224, 36, 36, var(--bg-opacity)) !important;
}
.bg-red-700 {
  --bg-opacity: 1 !important;
  background-color: #C81E1E !important;
  background-color: rgba(200, 30, 30, var(--bg-opacity)) !important;
}
.bg-red-800 {
  --bg-opacity: 1 !important;
  background-color: #9B1C1C !important;
  background-color: rgba(155, 28, 28, var(--bg-opacity)) !important;
}
.bg-red-900 {
  --bg-opacity: 1 !important;
  background-color: #771D1D !important;
  background-color: rgba(119, 29, 29, var(--bg-opacity)) !important;
}
.bg-red {
  --bg-opacity: 1 !important;
  background-color: #F05252 !important;
  background-color: rgba(240, 82, 82, var(--bg-opacity)) !important;
}
.bg-orange-50 {
  --bg-opacity: 1 !important;
  background-color: #FFF8F1 !important;
  background-color: rgba(255, 248, 241, var(--bg-opacity)) !important;
}
.bg-orange-100 {
  --bg-opacity: 1 !important;
  background-color: #FEECDC !important;
  background-color: rgba(254, 236, 220, var(--bg-opacity)) !important;
}
.bg-orange-200 {
  --bg-opacity: 1 !important;
  background-color: #FCD9BD !important;
  background-color: rgba(252, 217, 189, var(--bg-opacity)) !important;
}
.bg-orange-300 {
  --bg-opacity: 1 !important;
  background-color: #FDBA8C !important;
  background-color: rgba(253, 186, 140, var(--bg-opacity)) !important;
}
.bg-orange-400 {
  --bg-opacity: 1 !important;
  background-color: #FF8A4C !important;
  background-color: rgba(255, 138, 76, var(--bg-opacity)) !important;
}
.bg-orange-500 {
  --bg-opacity: 1 !important;
  background-color: #FF5A1F !important;
  background-color: rgba(255, 90, 31, var(--bg-opacity)) !important;
}
.bg-orange-600 {
  --bg-opacity: 1 !important;
  background-color: #D03801 !important;
  background-color: rgba(208, 56, 1, var(--bg-opacity)) !important;
}
.bg-orange-700 {
  --bg-opacity: 1 !important;
  background-color: #B43403 !important;
  background-color: rgba(180, 52, 3, var(--bg-opacity)) !important;
}
.bg-orange-800 {
  --bg-opacity: 1 !important;
  background-color: #8A2C0D !important;
  background-color: rgba(138, 44, 13, var(--bg-opacity)) !important;
}
.bg-orange-900 {
  --bg-opacity: 1 !important;
  background-color: #771D1D !important;
  background-color: rgba(119, 29, 29, var(--bg-opacity)) !important;
}
.bg-orange {
  --bg-opacity: 1 !important;
  background-color: #FF5A1F !important;
  background-color: rgba(255, 90, 31, var(--bg-opacity)) !important;
}
.bg-yellow-50 {
  --bg-opacity: 1 !important;
  background-color: #FDFDEA !important;
  background-color: rgba(253, 253, 234, var(--bg-opacity)) !important;
}
.bg-yellow-100 {
  --bg-opacity: 1 !important;
  background-color: #FDF6B2 !important;
  background-color: rgba(253, 246, 178, var(--bg-opacity)) !important;
}
.bg-yellow-200 {
  --bg-opacity: 1 !important;
  background-color: #FCE96A !important;
  background-color: rgba(252, 233, 106, var(--bg-opacity)) !important;
}
.bg-yellow-300 {
  --bg-opacity: 1 !important;
  background-color: #FACA15 !important;
  background-color: rgba(250, 202, 21, var(--bg-opacity)) !important;
}
.bg-yellow-400 {
  --bg-opacity: 1 !important;
  background-color: #E3A008 !important;
  background-color: rgba(227, 160, 8, var(--bg-opacity)) !important;
}
.bg-yellow-500 {
  --bg-opacity: 1 !important;
  background-color: #C27803 !important;
  background-color: rgba(194, 120, 3, var(--bg-opacity)) !important;
}
.bg-yellow-600 {
  --bg-opacity: 1 !important;
  background-color: #9F580A !important;
  background-color: rgba(159, 88, 10, var(--bg-opacity)) !important;
}
.bg-yellow-700 {
  --bg-opacity: 1 !important;
  background-color: #8E4B10 !important;
  background-color: rgba(142, 75, 16, var(--bg-opacity)) !important;
}
.bg-yellow-800 {
  --bg-opacity: 1 !important;
  background-color: #723B13 !important;
  background-color: rgba(114, 59, 19, var(--bg-opacity)) !important;
}
.bg-yellow-900 {
  --bg-opacity: 1 !important;
  background-color: #633112 !important;
  background-color: rgba(99, 49, 18, var(--bg-opacity)) !important;
}
.bg-yellow {
  --bg-opacity: 1 !important;
  background-color: #C27803 !important;
  background-color: rgba(194, 120, 3, var(--bg-opacity)) !important;
}
.bg-green-50 {
  --bg-opacity: 1 !important;
  background-color: #F3FAF7 !important;
  background-color: rgba(243, 250, 247, var(--bg-opacity)) !important;
}
.bg-green-100 {
  --bg-opacity: 1 !important;
  background-color: #DEF7EC !important;
  background-color: rgba(222, 247, 236, var(--bg-opacity)) !important;
}
.bg-green-200 {
  --bg-opacity: 1 !important;
  background-color: #BCF0DA !important;
  background-color: rgba(188, 240, 218, var(--bg-opacity)) !important;
}
.bg-green-300 {
  --bg-opacity: 1 !important;
  background-color: #84E1BC !important;
  background-color: rgba(132, 225, 188, var(--bg-opacity)) !important;
}
.bg-green-400 {
  --bg-opacity: 1 !important;
  background-color: #31C48D !important;
  background-color: rgba(49, 196, 141, var(--bg-opacity)) !important;
}
.bg-green-500 {
  --bg-opacity: 1 !important;
  background-color: #0E9F6E !important;
  background-color: rgba(14, 159, 110, var(--bg-opacity)) !important;
}
.bg-green-600 {
  --bg-opacity: 1 !important;
  background-color: #057A55 !important;
  background-color: rgba(5, 122, 85, var(--bg-opacity)) !important;
}
.bg-green-700 {
  --bg-opacity: 1 !important;
  background-color: #046C4E !important;
  background-color: rgba(4, 108, 78, var(--bg-opacity)) !important;
}
.bg-green-800 {
  --bg-opacity: 1 !important;
  background-color: #03543F !important;
  background-color: rgba(3, 84, 63, var(--bg-opacity)) !important;
}
.bg-green-900 {
  --bg-opacity: 1 !important;
  background-color: #014737 !important;
  background-color: rgba(1, 71, 55, var(--bg-opacity)) !important;
}
.bg-green {
  --bg-opacity: 1 !important;
  background-color: #0E9F6E !important;
  background-color: rgba(14, 159, 110, var(--bg-opacity)) !important;
}
.bg-teal-50 {
  --bg-opacity: 1 !important;
  background-color: #EDFAFA !important;
  background-color: rgba(237, 250, 250, var(--bg-opacity)) !important;
}
.bg-teal-100 {
  --bg-opacity: 1 !important;
  background-color: #D5F5F6 !important;
  background-color: rgba(213, 245, 246, var(--bg-opacity)) !important;
}
.bg-teal-200 {
  --bg-opacity: 1 !important;
  background-color: #AFECEF !important;
  background-color: rgba(175, 236, 239, var(--bg-opacity)) !important;
}
.bg-teal-300 {
  --bg-opacity: 1 !important;
  background-color: #7EDCE2 !important;
  background-color: rgba(126, 220, 226, var(--bg-opacity)) !important;
}
.bg-teal-400 {
  --bg-opacity: 1 !important;
  background-color: #16BDCA !important;
  background-color: rgba(22, 189, 202, var(--bg-opacity)) !important;
}
.bg-teal-500 {
  --bg-opacity: 1 !important;
  background-color: #0694A2 !important;
  background-color: rgba(6, 148, 162, var(--bg-opacity)) !important;
}
.bg-teal-600 {
  --bg-opacity: 1 !important;
  background-color: #047481 !important;
  background-color: rgba(4, 116, 129, var(--bg-opacity)) !important;
}
.bg-teal-700 {
  --bg-opacity: 1 !important;
  background-color: #036672 !important;
  background-color: rgba(3, 102, 114, var(--bg-opacity)) !important;
}
.bg-teal-800 {
  --bg-opacity: 1 !important;
  background-color: #05505C !important;
  background-color: rgba(5, 80, 92, var(--bg-opacity)) !important;
}
.bg-teal-900 {
  --bg-opacity: 1 !important;
  background-color: #014451 !important;
  background-color: rgba(1, 68, 81, var(--bg-opacity)) !important;
}
.bg-teal {
  --bg-opacity: 1 !important;
  background-color: #0694A2 !important;
  background-color: rgba(6, 148, 162, var(--bg-opacity)) !important;
}
.bg-blue-50 {
  --bg-opacity: 1 !important;
  background-color: #EBF5FF !important;
  background-color: rgba(235, 245, 255, var(--bg-opacity)) !important;
}
.bg-blue-100 {
  --bg-opacity: 1 !important;
  background-color: #E1EFFE !important;
  background-color: rgba(225, 239, 254, var(--bg-opacity)) !important;
}
.bg-blue-200 {
  --bg-opacity: 1 !important;
  background-color: #C3DDFD !important;
  background-color: rgba(195, 221, 253, var(--bg-opacity)) !important;
}
.bg-blue-300 {
  --bg-opacity: 1 !important;
  background-color: #A4CAFE !important;
  background-color: rgba(164, 202, 254, var(--bg-opacity)) !important;
}
.bg-blue-400 {
  --bg-opacity: 1 !important;
  background-color: #76A9FA !important;
  background-color: rgba(118, 169, 250, var(--bg-opacity)) !important;
}
.bg-blue-500 {
  --bg-opacity: 1 !important;
  background-color: #3F83F8 !important;
  background-color: rgba(63, 131, 248, var(--bg-opacity)) !important;
}
.bg-blue-600 {
  --bg-opacity: 1 !important;
  background-color: #1C64F2 !important;
  background-color: rgba(28, 100, 242, var(--bg-opacity)) !important;
}
.bg-blue-700 {
  --bg-opacity: 1 !important;
  background-color: #1A56DB !important;
  background-color: rgba(26, 86, 219, var(--bg-opacity)) !important;
}
.bg-blue-800 {
  --bg-opacity: 1 !important;
  background-color: #1E429F !important;
  background-color: rgba(30, 66, 159, var(--bg-opacity)) !important;
}
.bg-blue-900 {
  --bg-opacity: 1 !important;
  background-color: #233876 !important;
  background-color: rgba(35, 56, 118, var(--bg-opacity)) !important;
}
.bg-blue {
  --bg-opacity: 1 !important;
  background-color: #3F83F8 !important;
  background-color: rgba(63, 131, 248, var(--bg-opacity)) !important;
}
.bg-indigo-50 {
  --bg-opacity: 1 !important;
  background-color: #F0F5FF !important;
  background-color: rgba(240, 245, 255, var(--bg-opacity)) !important;
}
.bg-indigo-100 {
  --bg-opacity: 1 !important;
  background-color: #E5EDFF !important;
  background-color: rgba(229, 237, 255, var(--bg-opacity)) !important;
}
.bg-indigo-200 {
  --bg-opacity: 1 !important;
  background-color: #CDDBFE !important;
  background-color: rgba(205, 219, 254, var(--bg-opacity)) !important;
}
.bg-indigo-300 {
  --bg-opacity: 1 !important;
  background-color: #B4C6FC !important;
  background-color: rgba(180, 198, 252, var(--bg-opacity)) !important;
}
.bg-indigo-400 {
  --bg-opacity: 1 !important;
  background-color: #8DA2FB !important;
  background-color: rgba(141, 162, 251, var(--bg-opacity)) !important;
}
.bg-indigo-500 {
  --bg-opacity: 1 !important;
  background-color: #6875F5 !important;
  background-color: rgba(104, 117, 245, var(--bg-opacity)) !important;
}
.bg-indigo-600 {
  --bg-opacity: 1 !important;
  background-color: #5850EC !important;
  background-color: rgba(88, 80, 236, var(--bg-opacity)) !important;
}
.bg-indigo-700 {
  --bg-opacity: 1 !important;
  background-color: #5145CD !important;
  background-color: rgba(81, 69, 205, var(--bg-opacity)) !important;
}
.bg-indigo-800 {
  --bg-opacity: 1 !important;
  background-color: #42389D !important;
  background-color: rgba(66, 56, 157, var(--bg-opacity)) !important;
}
.bg-indigo-900 {
  --bg-opacity: 1 !important;
  background-color: #362F78 !important;
  background-color: rgba(54, 47, 120, var(--bg-opacity)) !important;
}
.bg-indigo {
  --bg-opacity: 1 !important;
  background-color: #6875F5 !important;
  background-color: rgba(104, 117, 245, var(--bg-opacity)) !important;
}
.bg-purple-50 {
  --bg-opacity: 1 !important;
  background-color: #F6F5FF !important;
  background-color: rgba(246, 245, 255, var(--bg-opacity)) !important;
}
.bg-purple-100 {
  --bg-opacity: 1 !important;
  background-color: #EDEBFE !important;
  background-color: rgba(237, 235, 254, var(--bg-opacity)) !important;
}
.bg-purple-200 {
  --bg-opacity: 1 !important;
  background-color: #DCD7FE !important;
  background-color: rgba(220, 215, 254, var(--bg-opacity)) !important;
}
.bg-purple-300 {
  --bg-opacity: 1 !important;
  background-color: #CABFFD !important;
  background-color: rgba(202, 191, 253, var(--bg-opacity)) !important;
}
.bg-purple-400 {
  --bg-opacity: 1 !important;
  background-color: #AC94FA !important;
  background-color: rgba(172, 148, 250, var(--bg-opacity)) !important;
}
.bg-purple-500 {
  --bg-opacity: 1 !important;
  background-color: #9061F9 !important;
  background-color: rgba(144, 97, 249, var(--bg-opacity)) !important;
}
.bg-purple-600 {
  --bg-opacity: 1 !important;
  background-color: #7E3AF2 !important;
  background-color: rgba(126, 58, 242, var(--bg-opacity)) !important;
}
.bg-purple-700 {
  --bg-opacity: 1 !important;
  background-color: #6C2BD9 !important;
  background-color: rgba(108, 43, 217, var(--bg-opacity)) !important;
}
.bg-purple-800 {
  --bg-opacity: 1 !important;
  background-color: #5521B5 !important;
  background-color: rgba(85, 33, 181, var(--bg-opacity)) !important;
}
.bg-purple-900 {
  --bg-opacity: 1 !important;
  background-color: #4A1D96 !important;
  background-color: rgba(74, 29, 150, var(--bg-opacity)) !important;
}
.bg-purple {
  --bg-opacity: 1 !important;
  background-color: #9061F9 !important;
  background-color: rgba(144, 97, 249, var(--bg-opacity)) !important;
}
.bg-pink-50 {
  --bg-opacity: 1 !important;
  background-color: #FDF2F8 !important;
  background-color: rgba(253, 242, 248, var(--bg-opacity)) !important;
}
.bg-pink-100 {
  --bg-opacity: 1 !important;
  background-color: #FCE8F3 !important;
  background-color: rgba(252, 232, 243, var(--bg-opacity)) !important;
}
.bg-pink-200 {
  --bg-opacity: 1 !important;
  background-color: #FAD1E8 !important;
  background-color: rgba(250, 209, 232, var(--bg-opacity)) !important;
}
.bg-pink-300 {
  --bg-opacity: 1 !important;
  background-color: #F8B4D9 !important;
  background-color: rgba(248, 180, 217, var(--bg-opacity)) !important;
}
.bg-pink-400 {
  --bg-opacity: 1 !important;
  background-color: #F17EB8 !important;
  background-color: rgba(241, 126, 184, var(--bg-opacity)) !important;
}
.bg-pink-500 {
  --bg-opacity: 1 !important;
  background-color: #E74694 !important;
  background-color: rgba(231, 70, 148, var(--bg-opacity)) !important;
}
.bg-pink-600 {
  --bg-opacity: 1 !important;
  background-color: #D61F69 !important;
  background-color: rgba(214, 31, 105, var(--bg-opacity)) !important;
}
.bg-pink-700 {
  --bg-opacity: 1 !important;
  background-color: #BF125D !important;
  background-color: rgba(191, 18, 93, var(--bg-opacity)) !important;
}
.bg-pink-800 {
  --bg-opacity: 1 !important;
  background-color: #99154B !important;
  background-color: rgba(153, 21, 75, var(--bg-opacity)) !important;
}
.bg-pink-900 {
  --bg-opacity: 1 !important;
  background-color: #751A3D !important;
  background-color: rgba(117, 26, 61, var(--bg-opacity)) !important;
}
.bg-pink {
  --bg-opacity: 1 !important;
  background-color: #E74694 !important;
  background-color: rgba(231, 70, 148, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-current, [class*=theme-dark] .dark\:bg-current, [class*=theme-light].light\:bg-current, [class*=theme-light] .light\:bg-current {
  background-color: currentColor !important;
}
[class*=theme-dark].dark\:bg-transparent, [class*=theme-dark] .dark\:bg-transparent, [class*=theme-light].light\:bg-transparent, [class*=theme-light] .light\:bg-transparent {
  background-color: transparent !important;
}
[class*=theme-dark].dark\:bg-white, [class*=theme-dark] .dark\:bg-white, [class*=theme-light].light\:bg-white, [class*=theme-light] .light\:bg-white {
  --bg-opacity: 1 !important;
  background-color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-black, [class*=theme-dark] .dark\:bg-black, [class*=theme-light].light\:bg-black, [class*=theme-light] .light\:bg-black {
  --bg-opacity: 1 !important;
  background-color: #000000 !important;
  background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-50, [class*=theme-dark] .dark\:bg-gray-50, [class*=theme-light].light\:bg-gray-50, [class*=theme-light] .light\:bg-gray-50 {
  --bg-opacity: 1 !important;
  background-color: #F9FAFB !important;
  background-color: rgba(249, 250, 251, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-100, [class*=theme-dark] .dark\:bg-gray-100, [class*=theme-light].light\:bg-gray-100, [class*=theme-light] .light\:bg-gray-100 {
  --bg-opacity: 1 !important;
  background-color: #F4F5F7 !important;
  background-color: rgba(244, 245, 247, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-200, [class*=theme-dark] .dark\:bg-gray-200, [class*=theme-light].light\:bg-gray-200, [class*=theme-light] .light\:bg-gray-200 {
  --bg-opacity: 1 !important;
  background-color: #E5E7EB !important;
  background-color: rgba(229, 231, 235, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-300, [class*=theme-dark] .dark\:bg-gray-300, [class*=theme-light].light\:bg-gray-300, [class*=theme-light] .light\:bg-gray-300 {
  --bg-opacity: 1 !important;
  background-color: #D2D6DC !important;
  background-color: rgba(210, 214, 220, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-400, [class*=theme-dark] .dark\:bg-gray-400, [class*=theme-light].light\:bg-gray-400, [class*=theme-light] .light\:bg-gray-400 {
  --bg-opacity: 1 !important;
  background-color: #9FA6B2 !important;
  background-color: rgba(159, 166, 178, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-500, [class*=theme-dark] .dark\:bg-gray-500, [class*=theme-light].light\:bg-gray-500, [class*=theme-light] .light\:bg-gray-500 {
  --bg-opacity: 1 !important;
  background-color: #6B7280 !important;
  background-color: rgba(107, 114, 128, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-600, [class*=theme-dark] .dark\:bg-gray-600, [class*=theme-light].light\:bg-gray-600, [class*=theme-light] .light\:bg-gray-600 {
  --bg-opacity: 1 !important;
  background-color: #4B5563 !important;
  background-color: rgba(75, 85, 99, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-700, [class*=theme-dark] .dark\:bg-gray-700, [class*=theme-light].light\:bg-gray-700, [class*=theme-light] .light\:bg-gray-700 {
  --bg-opacity: 1 !important;
  background-color: #374151 !important;
  background-color: rgba(55, 65, 81, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-800, [class*=theme-dark] .dark\:bg-gray-800, [class*=theme-light].light\:bg-gray-800, [class*=theme-light] .light\:bg-gray-800 {
  --bg-opacity: 1 !important;
  background-color: #252F3F !important;
  background-color: rgba(37, 47, 63, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray-900, [class*=theme-dark] .dark\:bg-gray-900, [class*=theme-light].light\:bg-gray-900, [class*=theme-light] .light\:bg-gray-900 {
  --bg-opacity: 1 !important;
  background-color: #161E2E !important;
  background-color: rgba(22, 30, 46, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-gray, [class*=theme-dark] .dark\:bg-gray, [class*=theme-light].light\:bg-gray, [class*=theme-light] .light\:bg-gray {
  --bg-opacity: 1 !important;
  background-color: #6B7280 !important;
  background-color: rgba(107, 114, 128, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-50, [class*=theme-dark] .dark\:bg-cool-gray-50, [class*=theme-light].light\:bg-cool-gray-50, [class*=theme-light] .light\:bg-cool-gray-50 {
  --bg-opacity: 1 !important;
  background-color: #FBFDFE !important;
  background-color: rgba(251, 253, 254, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-100, [class*=theme-dark] .dark\:bg-cool-gray-100, [class*=theme-light].light\:bg-cool-gray-100, [class*=theme-light] .light\:bg-cool-gray-100 {
  --bg-opacity: 1 !important;
  background-color: #F1F5F9 !important;
  background-color: rgba(241, 245, 249, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-200, [class*=theme-dark] .dark\:bg-cool-gray-200, [class*=theme-light].light\:bg-cool-gray-200, [class*=theme-light] .light\:bg-cool-gray-200 {
  --bg-opacity: 1 !important;
  background-color: #E2E8F0 !important;
  background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-300, [class*=theme-dark] .dark\:bg-cool-gray-300, [class*=theme-light].light\:bg-cool-gray-300, [class*=theme-light] .light\:bg-cool-gray-300 {
  --bg-opacity: 1 !important;
  background-color: #CFD8E3 !important;
  background-color: rgba(207, 216, 227, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-400, [class*=theme-dark] .dark\:bg-cool-gray-400, [class*=theme-light].light\:bg-cool-gray-400, [class*=theme-light] .light\:bg-cool-gray-400 {
  --bg-opacity: 1 !important;
  background-color: #97A6BA !important;
  background-color: rgba(151, 166, 186, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-500, [class*=theme-dark] .dark\:bg-cool-gray-500, [class*=theme-light].light\:bg-cool-gray-500, [class*=theme-light] .light\:bg-cool-gray-500 {
  --bg-opacity: 1 !important;
  background-color: #64748B !important;
  background-color: rgba(100, 116, 139, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-600, [class*=theme-dark] .dark\:bg-cool-gray-600, [class*=theme-light].light\:bg-cool-gray-600, [class*=theme-light] .light\:bg-cool-gray-600 {
  --bg-opacity: 1 !important;
  background-color: #475569 !important;
  background-color: rgba(71, 85, 105, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-700, [class*=theme-dark] .dark\:bg-cool-gray-700, [class*=theme-light].light\:bg-cool-gray-700, [class*=theme-light] .light\:bg-cool-gray-700 {
  --bg-opacity: 1 !important;
  background-color: #364152 !important;
  background-color: rgba(54, 65, 82, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-800, [class*=theme-dark] .dark\:bg-cool-gray-800, [class*=theme-light].light\:bg-cool-gray-800, [class*=theme-light] .light\:bg-cool-gray-800 {
  --bg-opacity: 1 !important;
  background-color: #27303F !important;
  background-color: rgba(39, 48, 63, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray-900, [class*=theme-dark] .dark\:bg-cool-gray-900, [class*=theme-light].light\:bg-cool-gray-900, [class*=theme-light] .light\:bg-cool-gray-900 {
  --bg-opacity: 1 !important;
  background-color: #1A202E !important;
  background-color: rgba(26, 32, 46, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-cool-gray, [class*=theme-dark] .dark\:bg-cool-gray, [class*=theme-light].light\:bg-cool-gray, [class*=theme-light] .light\:bg-cool-gray {
  --bg-opacity: 1 !important;
  background-color: #64748B !important;
  background-color: rgba(100, 116, 139, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-50, [class*=theme-dark] .dark\:bg-red-50, [class*=theme-light].light\:bg-red-50, [class*=theme-light] .light\:bg-red-50 {
  --bg-opacity: 1 !important;
  background-color: #FDF2F2 !important;
  background-color: rgba(253, 242, 242, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-100, [class*=theme-dark] .dark\:bg-red-100, [class*=theme-light].light\:bg-red-100, [class*=theme-light] .light\:bg-red-100 {
  --bg-opacity: 1 !important;
  background-color: #FDE8E8 !important;
  background-color: rgba(253, 232, 232, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-200, [class*=theme-dark] .dark\:bg-red-200, [class*=theme-light].light\:bg-red-200, [class*=theme-light] .light\:bg-red-200 {
  --bg-opacity: 1 !important;
  background-color: #FBD5D5 !important;
  background-color: rgba(251, 213, 213, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-300, [class*=theme-dark] .dark\:bg-red-300, [class*=theme-light].light\:bg-red-300, [class*=theme-light] .light\:bg-red-300 {
  --bg-opacity: 1 !important;
  background-color: #F8B4B4 !important;
  background-color: rgba(248, 180, 180, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-400, [class*=theme-dark] .dark\:bg-red-400, [class*=theme-light].light\:bg-red-400, [class*=theme-light] .light\:bg-red-400 {
  --bg-opacity: 1 !important;
  background-color: #F98080 !important;
  background-color: rgba(249, 128, 128, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-500, [class*=theme-dark] .dark\:bg-red-500, [class*=theme-light].light\:bg-red-500, [class*=theme-light] .light\:bg-red-500 {
  --bg-opacity: 1 !important;
  background-color: #F05252 !important;
  background-color: rgba(240, 82, 82, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-600, [class*=theme-dark] .dark\:bg-red-600, [class*=theme-light].light\:bg-red-600, [class*=theme-light] .light\:bg-red-600 {
  --bg-opacity: 1 !important;
  background-color: #E02424 !important;
  background-color: rgba(224, 36, 36, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-700, [class*=theme-dark] .dark\:bg-red-700, [class*=theme-light].light\:bg-red-700, [class*=theme-light] .light\:bg-red-700 {
  --bg-opacity: 1 !important;
  background-color: #C81E1E !important;
  background-color: rgba(200, 30, 30, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-800, [class*=theme-dark] .dark\:bg-red-800, [class*=theme-light].light\:bg-red-800, [class*=theme-light] .light\:bg-red-800 {
  --bg-opacity: 1 !important;
  background-color: #9B1C1C !important;
  background-color: rgba(155, 28, 28, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red-900, [class*=theme-dark] .dark\:bg-red-900, [class*=theme-light].light\:bg-red-900, [class*=theme-light] .light\:bg-red-900 {
  --bg-opacity: 1 !important;
  background-color: #771D1D !important;
  background-color: rgba(119, 29, 29, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-red, [class*=theme-dark] .dark\:bg-red, [class*=theme-light].light\:bg-red, [class*=theme-light] .light\:bg-red {
  --bg-opacity: 1 !important;
  background-color: #F05252 !important;
  background-color: rgba(240, 82, 82, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-50, [class*=theme-dark] .dark\:bg-orange-50, [class*=theme-light].light\:bg-orange-50, [class*=theme-light] .light\:bg-orange-50 {
  --bg-opacity: 1 !important;
  background-color: #FFF8F1 !important;
  background-color: rgba(255, 248, 241, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-100, [class*=theme-dark] .dark\:bg-orange-100, [class*=theme-light].light\:bg-orange-100, [class*=theme-light] .light\:bg-orange-100 {
  --bg-opacity: 1 !important;
  background-color: #FEECDC !important;
  background-color: rgba(254, 236, 220, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-200, [class*=theme-dark] .dark\:bg-orange-200, [class*=theme-light].light\:bg-orange-200, [class*=theme-light] .light\:bg-orange-200 {
  --bg-opacity: 1 !important;
  background-color: #FCD9BD !important;
  background-color: rgba(252, 217, 189, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-300, [class*=theme-dark] .dark\:bg-orange-300, [class*=theme-light].light\:bg-orange-300, [class*=theme-light] .light\:bg-orange-300 {
  --bg-opacity: 1 !important;
  background-color: #FDBA8C !important;
  background-color: rgba(253, 186, 140, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-400, [class*=theme-dark] .dark\:bg-orange-400, [class*=theme-light].light\:bg-orange-400, [class*=theme-light] .light\:bg-orange-400 {
  --bg-opacity: 1 !important;
  background-color: #FF8A4C !important;
  background-color: rgba(255, 138, 76, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-500, [class*=theme-dark] .dark\:bg-orange-500, [class*=theme-light].light\:bg-orange-500, [class*=theme-light] .light\:bg-orange-500 {
  --bg-opacity: 1 !important;
  background-color: #FF5A1F !important;
  background-color: rgba(255, 90, 31, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-600, [class*=theme-dark] .dark\:bg-orange-600, [class*=theme-light].light\:bg-orange-600, [class*=theme-light] .light\:bg-orange-600 {
  --bg-opacity: 1 !important;
  background-color: #D03801 !important;
  background-color: rgba(208, 56, 1, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-700, [class*=theme-dark] .dark\:bg-orange-700, [class*=theme-light].light\:bg-orange-700, [class*=theme-light] .light\:bg-orange-700 {
  --bg-opacity: 1 !important;
  background-color: #B43403 !important;
  background-color: rgba(180, 52, 3, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-800, [class*=theme-dark] .dark\:bg-orange-800, [class*=theme-light].light\:bg-orange-800, [class*=theme-light] .light\:bg-orange-800 {
  --bg-opacity: 1 !important;
  background-color: #8A2C0D !important;
  background-color: rgba(138, 44, 13, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange-900, [class*=theme-dark] .dark\:bg-orange-900, [class*=theme-light].light\:bg-orange-900, [class*=theme-light] .light\:bg-orange-900 {
  --bg-opacity: 1 !important;
  background-color: #771D1D !important;
  background-color: rgba(119, 29, 29, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-orange, [class*=theme-dark] .dark\:bg-orange, [class*=theme-light].light\:bg-orange, [class*=theme-light] .light\:bg-orange {
  --bg-opacity: 1 !important;
  background-color: #FF5A1F !important;
  background-color: rgba(255, 90, 31, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-50, [class*=theme-dark] .dark\:bg-yellow-50, [class*=theme-light].light\:bg-yellow-50, [class*=theme-light] .light\:bg-yellow-50 {
  --bg-opacity: 1 !important;
  background-color: #FDFDEA !important;
  background-color: rgba(253, 253, 234, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-100, [class*=theme-dark] .dark\:bg-yellow-100, [class*=theme-light].light\:bg-yellow-100, [class*=theme-light] .light\:bg-yellow-100 {
  --bg-opacity: 1 !important;
  background-color: #FDF6B2 !important;
  background-color: rgba(253, 246, 178, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-200, [class*=theme-dark] .dark\:bg-yellow-200, [class*=theme-light].light\:bg-yellow-200, [class*=theme-light] .light\:bg-yellow-200 {
  --bg-opacity: 1 !important;
  background-color: #FCE96A !important;
  background-color: rgba(252, 233, 106, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-300, [class*=theme-dark] .dark\:bg-yellow-300, [class*=theme-light].light\:bg-yellow-300, [class*=theme-light] .light\:bg-yellow-300 {
  --bg-opacity: 1 !important;
  background-color: #FACA15 !important;
  background-color: rgba(250, 202, 21, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-400, [class*=theme-dark] .dark\:bg-yellow-400, [class*=theme-light].light\:bg-yellow-400, [class*=theme-light] .light\:bg-yellow-400 {
  --bg-opacity: 1 !important;
  background-color: #E3A008 !important;
  background-color: rgba(227, 160, 8, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-500, [class*=theme-dark] .dark\:bg-yellow-500, [class*=theme-light].light\:bg-yellow-500, [class*=theme-light] .light\:bg-yellow-500 {
  --bg-opacity: 1 !important;
  background-color: #C27803 !important;
  background-color: rgba(194, 120, 3, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-600, [class*=theme-dark] .dark\:bg-yellow-600, [class*=theme-light].light\:bg-yellow-600, [class*=theme-light] .light\:bg-yellow-600 {
  --bg-opacity: 1 !important;
  background-color: #9F580A !important;
  background-color: rgba(159, 88, 10, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-700, [class*=theme-dark] .dark\:bg-yellow-700, [class*=theme-light].light\:bg-yellow-700, [class*=theme-light] .light\:bg-yellow-700 {
  --bg-opacity: 1 !important;
  background-color: #8E4B10 !important;
  background-color: rgba(142, 75, 16, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-800, [class*=theme-dark] .dark\:bg-yellow-800, [class*=theme-light].light\:bg-yellow-800, [class*=theme-light] .light\:bg-yellow-800 {
  --bg-opacity: 1 !important;
  background-color: #723B13 !important;
  background-color: rgba(114, 59, 19, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow-900, [class*=theme-dark] .dark\:bg-yellow-900, [class*=theme-light].light\:bg-yellow-900, [class*=theme-light] .light\:bg-yellow-900 {
  --bg-opacity: 1 !important;
  background-color: #633112 !important;
  background-color: rgba(99, 49, 18, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-yellow, [class*=theme-dark] .dark\:bg-yellow, [class*=theme-light].light\:bg-yellow, [class*=theme-light] .light\:bg-yellow {
  --bg-opacity: 1 !important;
  background-color: #C27803 !important;
  background-color: rgba(194, 120, 3, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-50, [class*=theme-dark] .dark\:bg-green-50, [class*=theme-light].light\:bg-green-50, [class*=theme-light] .light\:bg-green-50 {
  --bg-opacity: 1 !important;
  background-color: #F3FAF7 !important;
  background-color: rgba(243, 250, 247, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-100, [class*=theme-dark] .dark\:bg-green-100, [class*=theme-light].light\:bg-green-100, [class*=theme-light] .light\:bg-green-100 {
  --bg-opacity: 1 !important;
  background-color: #DEF7EC !important;
  background-color: rgba(222, 247, 236, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-200, [class*=theme-dark] .dark\:bg-green-200, [class*=theme-light].light\:bg-green-200, [class*=theme-light] .light\:bg-green-200 {
  --bg-opacity: 1 !important;
  background-color: #BCF0DA !important;
  background-color: rgba(188, 240, 218, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-300, [class*=theme-dark] .dark\:bg-green-300, [class*=theme-light].light\:bg-green-300, [class*=theme-light] .light\:bg-green-300 {
  --bg-opacity: 1 !important;
  background-color: #84E1BC !important;
  background-color: rgba(132, 225, 188, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-400, [class*=theme-dark] .dark\:bg-green-400, [class*=theme-light].light\:bg-green-400, [class*=theme-light] .light\:bg-green-400 {
  --bg-opacity: 1 !important;
  background-color: #31C48D !important;
  background-color: rgba(49, 196, 141, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-500, [class*=theme-dark] .dark\:bg-green-500, [class*=theme-light].light\:bg-green-500, [class*=theme-light] .light\:bg-green-500 {
  --bg-opacity: 1 !important;
  background-color: #0E9F6E !important;
  background-color: rgba(14, 159, 110, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-600, [class*=theme-dark] .dark\:bg-green-600, [class*=theme-light].light\:bg-green-600, [class*=theme-light] .light\:bg-green-600 {
  --bg-opacity: 1 !important;
  background-color: #057A55 !important;
  background-color: rgba(5, 122, 85, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-700, [class*=theme-dark] .dark\:bg-green-700, [class*=theme-light].light\:bg-green-700, [class*=theme-light] .light\:bg-green-700 {
  --bg-opacity: 1 !important;
  background-color: #046C4E !important;
  background-color: rgba(4, 108, 78, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-800, [class*=theme-dark] .dark\:bg-green-800, [class*=theme-light].light\:bg-green-800, [class*=theme-light] .light\:bg-green-800 {
  --bg-opacity: 1 !important;
  background-color: #03543F !important;
  background-color: rgba(3, 84, 63, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green-900, [class*=theme-dark] .dark\:bg-green-900, [class*=theme-light].light\:bg-green-900, [class*=theme-light] .light\:bg-green-900 {
  --bg-opacity: 1 !important;
  background-color: #014737 !important;
  background-color: rgba(1, 71, 55, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-green, [class*=theme-dark] .dark\:bg-green, [class*=theme-light].light\:bg-green, [class*=theme-light] .light\:bg-green {
  --bg-opacity: 1 !important;
  background-color: #0E9F6E !important;
  background-color: rgba(14, 159, 110, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-50, [class*=theme-dark] .dark\:bg-teal-50, [class*=theme-light].light\:bg-teal-50, [class*=theme-light] .light\:bg-teal-50 {
  --bg-opacity: 1 !important;
  background-color: #EDFAFA !important;
  background-color: rgba(237, 250, 250, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-100, [class*=theme-dark] .dark\:bg-teal-100, [class*=theme-light].light\:bg-teal-100, [class*=theme-light] .light\:bg-teal-100 {
  --bg-opacity: 1 !important;
  background-color: #D5F5F6 !important;
  background-color: rgba(213, 245, 246, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-200, [class*=theme-dark] .dark\:bg-teal-200, [class*=theme-light].light\:bg-teal-200, [class*=theme-light] .light\:bg-teal-200 {
  --bg-opacity: 1 !important;
  background-color: #AFECEF !important;
  background-color: rgba(175, 236, 239, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-300, [class*=theme-dark] .dark\:bg-teal-300, [class*=theme-light].light\:bg-teal-300, [class*=theme-light] .light\:bg-teal-300 {
  --bg-opacity: 1 !important;
  background-color: #7EDCE2 !important;
  background-color: rgba(126, 220, 226, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-400, [class*=theme-dark] .dark\:bg-teal-400, [class*=theme-light].light\:bg-teal-400, [class*=theme-light] .light\:bg-teal-400 {
  --bg-opacity: 1 !important;
  background-color: #16BDCA !important;
  background-color: rgba(22, 189, 202, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-500, [class*=theme-dark] .dark\:bg-teal-500, [class*=theme-light].light\:bg-teal-500, [class*=theme-light] .light\:bg-teal-500 {
  --bg-opacity: 1 !important;
  background-color: #0694A2 !important;
  background-color: rgba(6, 148, 162, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-600, [class*=theme-dark] .dark\:bg-teal-600, [class*=theme-light].light\:bg-teal-600, [class*=theme-light] .light\:bg-teal-600 {
  --bg-opacity: 1 !important;
  background-color: #047481 !important;
  background-color: rgba(4, 116, 129, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-700, [class*=theme-dark] .dark\:bg-teal-700, [class*=theme-light].light\:bg-teal-700, [class*=theme-light] .light\:bg-teal-700 {
  --bg-opacity: 1 !important;
  background-color: #036672 !important;
  background-color: rgba(3, 102, 114, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-800, [class*=theme-dark] .dark\:bg-teal-800, [class*=theme-light].light\:bg-teal-800, [class*=theme-light] .light\:bg-teal-800 {
  --bg-opacity: 1 !important;
  background-color: #05505C !important;
  background-color: rgba(5, 80, 92, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal-900, [class*=theme-dark] .dark\:bg-teal-900, [class*=theme-light].light\:bg-teal-900, [class*=theme-light] .light\:bg-teal-900 {
  --bg-opacity: 1 !important;
  background-color: #014451 !important;
  background-color: rgba(1, 68, 81, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-teal, [class*=theme-dark] .dark\:bg-teal, [class*=theme-light].light\:bg-teal, [class*=theme-light] .light\:bg-teal {
  --bg-opacity: 1 !important;
  background-color: #0694A2 !important;
  background-color: rgba(6, 148, 162, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-50, [class*=theme-dark] .dark\:bg-blue-50, [class*=theme-light].light\:bg-blue-50, [class*=theme-light] .light\:bg-blue-50 {
  --bg-opacity: 1 !important;
  background-color: #EBF5FF !important;
  background-color: rgba(235, 245, 255, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-100, [class*=theme-dark] .dark\:bg-blue-100, [class*=theme-light].light\:bg-blue-100, [class*=theme-light] .light\:bg-blue-100 {
  --bg-opacity: 1 !important;
  background-color: #E1EFFE !important;
  background-color: rgba(225, 239, 254, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-200, [class*=theme-dark] .dark\:bg-blue-200, [class*=theme-light].light\:bg-blue-200, [class*=theme-light] .light\:bg-blue-200 {
  --bg-opacity: 1 !important;
  background-color: #C3DDFD !important;
  background-color: rgba(195, 221, 253, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-300, [class*=theme-dark] .dark\:bg-blue-300, [class*=theme-light].light\:bg-blue-300, [class*=theme-light] .light\:bg-blue-300 {
  --bg-opacity: 1 !important;
  background-color: #A4CAFE !important;
  background-color: rgba(164, 202, 254, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-400, [class*=theme-dark] .dark\:bg-blue-400, [class*=theme-light].light\:bg-blue-400, [class*=theme-light] .light\:bg-blue-400 {
  --bg-opacity: 1 !important;
  background-color: #76A9FA !important;
  background-color: rgba(118, 169, 250, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-500, [class*=theme-dark] .dark\:bg-blue-500, [class*=theme-light].light\:bg-blue-500, [class*=theme-light] .light\:bg-blue-500 {
  --bg-opacity: 1 !important;
  background-color: #3F83F8 !important;
  background-color: rgba(63, 131, 248, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-600, [class*=theme-dark] .dark\:bg-blue-600, [class*=theme-light].light\:bg-blue-600, [class*=theme-light] .light\:bg-blue-600 {
  --bg-opacity: 1 !important;
  background-color: #1C64F2 !important;
  background-color: rgba(28, 100, 242, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-700, [class*=theme-dark] .dark\:bg-blue-700, [class*=theme-light].light\:bg-blue-700, [class*=theme-light] .light\:bg-blue-700 {
  --bg-opacity: 1 !important;
  background-color: #1A56DB !important;
  background-color: rgba(26, 86, 219, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-800, [class*=theme-dark] .dark\:bg-blue-800, [class*=theme-light].light\:bg-blue-800, [class*=theme-light] .light\:bg-blue-800 {
  --bg-opacity: 1 !important;
  background-color: #1E429F !important;
  background-color: rgba(30, 66, 159, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue-900, [class*=theme-dark] .dark\:bg-blue-900, [class*=theme-light].light\:bg-blue-900, [class*=theme-light] .light\:bg-blue-900 {
  --bg-opacity: 1 !important;
  background-color: #233876 !important;
  background-color: rgba(35, 56, 118, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-blue, [class*=theme-dark] .dark\:bg-blue, [class*=theme-light].light\:bg-blue, [class*=theme-light] .light\:bg-blue {
  --bg-opacity: 1 !important;
  background-color: #3F83F8 !important;
  background-color: rgba(63, 131, 248, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-50, [class*=theme-dark] .dark\:bg-indigo-50, [class*=theme-light].light\:bg-indigo-50, [class*=theme-light] .light\:bg-indigo-50 {
  --bg-opacity: 1 !important;
  background-color: #F0F5FF !important;
  background-color: rgba(240, 245, 255, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-100, [class*=theme-dark] .dark\:bg-indigo-100, [class*=theme-light].light\:bg-indigo-100, [class*=theme-light] .light\:bg-indigo-100 {
  --bg-opacity: 1 !important;
  background-color: #E5EDFF !important;
  background-color: rgba(229, 237, 255, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-200, [class*=theme-dark] .dark\:bg-indigo-200, [class*=theme-light].light\:bg-indigo-200, [class*=theme-light] .light\:bg-indigo-200 {
  --bg-opacity: 1 !important;
  background-color: #CDDBFE !important;
  background-color: rgba(205, 219, 254, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-300, [class*=theme-dark] .dark\:bg-indigo-300, [class*=theme-light].light\:bg-indigo-300, [class*=theme-light] .light\:bg-indigo-300 {
  --bg-opacity: 1 !important;
  background-color: #B4C6FC !important;
  background-color: rgba(180, 198, 252, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-400, [class*=theme-dark] .dark\:bg-indigo-400, [class*=theme-light].light\:bg-indigo-400, [class*=theme-light] .light\:bg-indigo-400 {
  --bg-opacity: 1 !important;
  background-color: #8DA2FB !important;
  background-color: rgba(141, 162, 251, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-500, [class*=theme-dark] .dark\:bg-indigo-500, [class*=theme-light].light\:bg-indigo-500, [class*=theme-light] .light\:bg-indigo-500 {
  --bg-opacity: 1 !important;
  background-color: #6875F5 !important;
  background-color: rgba(104, 117, 245, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-600, [class*=theme-dark] .dark\:bg-indigo-600, [class*=theme-light].light\:bg-indigo-600, [class*=theme-light] .light\:bg-indigo-600 {
  --bg-opacity: 1 !important;
  background-color: #5850EC !important;
  background-color: rgba(88, 80, 236, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-700, [class*=theme-dark] .dark\:bg-indigo-700, [class*=theme-light].light\:bg-indigo-700, [class*=theme-light] .light\:bg-indigo-700 {
  --bg-opacity: 1 !important;
  background-color: #5145CD !important;
  background-color: rgba(81, 69, 205, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-800, [class*=theme-dark] .dark\:bg-indigo-800, [class*=theme-light].light\:bg-indigo-800, [class*=theme-light] .light\:bg-indigo-800 {
  --bg-opacity: 1 !important;
  background-color: #42389D !important;
  background-color: rgba(66, 56, 157, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo-900, [class*=theme-dark] .dark\:bg-indigo-900, [class*=theme-light].light\:bg-indigo-900, [class*=theme-light] .light\:bg-indigo-900 {
  --bg-opacity: 1 !important;
  background-color: #362F78 !important;
  background-color: rgba(54, 47, 120, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-indigo, [class*=theme-dark] .dark\:bg-indigo, [class*=theme-light].light\:bg-indigo, [class*=theme-light] .light\:bg-indigo {
  --bg-opacity: 1 !important;
  background-color: #6875F5 !important;
  background-color: rgba(104, 117, 245, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-50, [class*=theme-dark] .dark\:bg-purple-50, [class*=theme-light].light\:bg-purple-50, [class*=theme-light] .light\:bg-purple-50 {
  --bg-opacity: 1 !important;
  background-color: #F6F5FF !important;
  background-color: rgba(246, 245, 255, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-100, [class*=theme-dark] .dark\:bg-purple-100, [class*=theme-light].light\:bg-purple-100, [class*=theme-light] .light\:bg-purple-100 {
  --bg-opacity: 1 !important;
  background-color: #EDEBFE !important;
  background-color: rgba(237, 235, 254, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-200, [class*=theme-dark] .dark\:bg-purple-200, [class*=theme-light].light\:bg-purple-200, [class*=theme-light] .light\:bg-purple-200 {
  --bg-opacity: 1 !important;
  background-color: #DCD7FE !important;
  background-color: rgba(220, 215, 254, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-300, [class*=theme-dark] .dark\:bg-purple-300, [class*=theme-light].light\:bg-purple-300, [class*=theme-light] .light\:bg-purple-300 {
  --bg-opacity: 1 !important;
  background-color: #CABFFD !important;
  background-color: rgba(202, 191, 253, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-400, [class*=theme-dark] .dark\:bg-purple-400, [class*=theme-light].light\:bg-purple-400, [class*=theme-light] .light\:bg-purple-400 {
  --bg-opacity: 1 !important;
  background-color: #AC94FA !important;
  background-color: rgba(172, 148, 250, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-500, [class*=theme-dark] .dark\:bg-purple-500, [class*=theme-light].light\:bg-purple-500, [class*=theme-light] .light\:bg-purple-500 {
  --bg-opacity: 1 !important;
  background-color: #9061F9 !important;
  background-color: rgba(144, 97, 249, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-600, [class*=theme-dark] .dark\:bg-purple-600, [class*=theme-light].light\:bg-purple-600, [class*=theme-light] .light\:bg-purple-600 {
  --bg-opacity: 1 !important;
  background-color: #7E3AF2 !important;
  background-color: rgba(126, 58, 242, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-700, [class*=theme-dark] .dark\:bg-purple-700, [class*=theme-light].light\:bg-purple-700, [class*=theme-light] .light\:bg-purple-700 {
  --bg-opacity: 1 !important;
  background-color: #6C2BD9 !important;
  background-color: rgba(108, 43, 217, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-800, [class*=theme-dark] .dark\:bg-purple-800, [class*=theme-light].light\:bg-purple-800, [class*=theme-light] .light\:bg-purple-800 {
  --bg-opacity: 1 !important;
  background-color: #5521B5 !important;
  background-color: rgba(85, 33, 181, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple-900, [class*=theme-dark] .dark\:bg-purple-900, [class*=theme-light].light\:bg-purple-900, [class*=theme-light] .light\:bg-purple-900 {
  --bg-opacity: 1 !important;
  background-color: #4A1D96 !important;
  background-color: rgba(74, 29, 150, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-purple, [class*=theme-dark] .dark\:bg-purple, [class*=theme-light].light\:bg-purple, [class*=theme-light] .light\:bg-purple {
  --bg-opacity: 1 !important;
  background-color: #9061F9 !important;
  background-color: rgba(144, 97, 249, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-50, [class*=theme-dark] .dark\:bg-pink-50, [class*=theme-light].light\:bg-pink-50, [class*=theme-light] .light\:bg-pink-50 {
  --bg-opacity: 1 !important;
  background-color: #FDF2F8 !important;
  background-color: rgba(253, 242, 248, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-100, [class*=theme-dark] .dark\:bg-pink-100, [class*=theme-light].light\:bg-pink-100, [class*=theme-light] .light\:bg-pink-100 {
  --bg-opacity: 1 !important;
  background-color: #FCE8F3 !important;
  background-color: rgba(252, 232, 243, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-200, [class*=theme-dark] .dark\:bg-pink-200, [class*=theme-light].light\:bg-pink-200, [class*=theme-light] .light\:bg-pink-200 {
  --bg-opacity: 1 !important;
  background-color: #FAD1E8 !important;
  background-color: rgba(250, 209, 232, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-300, [class*=theme-dark] .dark\:bg-pink-300, [class*=theme-light].light\:bg-pink-300, [class*=theme-light] .light\:bg-pink-300 {
  --bg-opacity: 1 !important;
  background-color: #F8B4D9 !important;
  background-color: rgba(248, 180, 217, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-400, [class*=theme-dark] .dark\:bg-pink-400, [class*=theme-light].light\:bg-pink-400, [class*=theme-light] .light\:bg-pink-400 {
  --bg-opacity: 1 !important;
  background-color: #F17EB8 !important;
  background-color: rgba(241, 126, 184, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-500, [class*=theme-dark] .dark\:bg-pink-500, [class*=theme-light].light\:bg-pink-500, [class*=theme-light] .light\:bg-pink-500 {
  --bg-opacity: 1 !important;
  background-color: #E74694 !important;
  background-color: rgba(231, 70, 148, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-600, [class*=theme-dark] .dark\:bg-pink-600, [class*=theme-light].light\:bg-pink-600, [class*=theme-light] .light\:bg-pink-600 {
  --bg-opacity: 1 !important;
  background-color: #D61F69 !important;
  background-color: rgba(214, 31, 105, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-700, [class*=theme-dark] .dark\:bg-pink-700, [class*=theme-light].light\:bg-pink-700, [class*=theme-light] .light\:bg-pink-700 {
  --bg-opacity: 1 !important;
  background-color: #BF125D !important;
  background-color: rgba(191, 18, 93, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-800, [class*=theme-dark] .dark\:bg-pink-800, [class*=theme-light].light\:bg-pink-800, [class*=theme-light] .light\:bg-pink-800 {
  --bg-opacity: 1 !important;
  background-color: #99154B !important;
  background-color: rgba(153, 21, 75, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink-900, [class*=theme-dark] .dark\:bg-pink-900, [class*=theme-light].light\:bg-pink-900, [class*=theme-light] .light\:bg-pink-900 {
  --bg-opacity: 1 !important;
  background-color: #751A3D !important;
  background-color: rgba(117, 26, 61, var(--bg-opacity)) !important;
}
[class*=theme-dark].dark\:bg-pink, [class*=theme-dark] .dark\:bg-pink, [class*=theme-light].light\:bg-pink, [class*=theme-light] .light\:bg-pink {
  --bg-opacity: 1 !important;
  background-color: #E74694 !important;
  background-color: rgba(231, 70, 148, var(--bg-opacity)) !important;
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--gradient-color-stops)) !important;
}
.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--gradient-color-stops)) !important;
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--gradient-color-stops)) !important;
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--gradient-color-stops)) !important;
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--gradient-color-stops)) !important;
}
.bg-gradient-to-bl {
  background-image: linear-gradient(to bottom left, var(--gradient-color-stops)) !important;
}
.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--gradient-color-stops)) !important;
}
.bg-gradient-to-tl {
  background-image: linear-gradient(to top left, var(--gradient-color-stops)) !important;
}
.from-current {
  --gradient-from-color: currentColor !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}
.from-transparent {
  --gradient-from-color: transparent !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}
.from-white {
  --gradient-from-color: #FFFFFF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}
.from-black {
  --gradient-from-color: #000000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}
.from-gray-50 {
  --gradient-from-color: #F9FAFB !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(249, 250, 251, 0)) !important;
}
.from-gray-100 {
  --gradient-from-color: #F4F5F7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 245, 247, 0)) !important;
}
.from-gray-200 {
  --gradient-from-color: #E5E7EB !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 231, 235, 0)) !important;
}
.from-gray-300 {
  --gradient-from-color: #D2D6DC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(210, 214, 220, 0)) !important;
}
.from-gray-400 {
  --gradient-from-color: #9FA6B2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 166, 178, 0)) !important;
}
.from-gray-500 {
  --gradient-from-color: #6B7280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 114, 128, 0)) !important;
}
.from-gray-600 {
  --gradient-from-color: #4B5563 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(75, 85, 99, 0)) !important;
}
.from-gray-700 {
  --gradient-from-color: #374151 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(55, 65, 81, 0)) !important;
}
.from-gray-800 {
  --gradient-from-color: #252F3F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(37, 47, 63, 0)) !important;
}
.from-gray-900 {
  --gradient-from-color: #161E2E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(22, 30, 46, 0)) !important;
}
.from-gray {
  --gradient-from-color: #6B7280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 114, 128, 0)) !important;
}
.from-cool-gray-50 {
  --gradient-from-color: #FBFDFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 253, 254, 0)) !important;
}
.from-cool-gray-100 {
  --gradient-from-color: #F1F5F9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 245, 249, 0)) !important;
}
.from-cool-gray-200 {
  --gradient-from-color: #E2E8F0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
}
.from-cool-gray-300 {
  --gradient-from-color: #CFD8E3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 216, 227, 0)) !important;
}
.from-cool-gray-400 {
  --gradient-from-color: #97A6BA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 166, 186, 0)) !important;
}
.from-cool-gray-500 {
  --gradient-from-color: #64748B !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 116, 139, 0)) !important;
}
.from-cool-gray-600 {
  --gradient-from-color: #475569 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(71, 85, 105, 0)) !important;
}
.from-cool-gray-700 {
  --gradient-from-color: #364152 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(54, 65, 82, 0)) !important;
}
.from-cool-gray-800 {
  --gradient-from-color: #27303F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 48, 63, 0)) !important;
}
.from-cool-gray-900 {
  --gradient-from-color: #1A202E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 46, 0)) !important;
}
.from-cool-gray {
  --gradient-from-color: #64748B !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 116, 139, 0)) !important;
}
.from-red-50 {
  --gradient-from-color: #FDF2F2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 242, 242, 0)) !important;
}
.from-red-100 {
  --gradient-from-color: #FDE8E8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 232, 232, 0)) !important;
}
.from-red-200 {
  --gradient-from-color: #FBD5D5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 213, 213, 0)) !important;
}
.from-red-300 {
  --gradient-from-color: #F8B4B4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 180, 180, 0)) !important;
}
.from-red-400 {
  --gradient-from-color: #F98080 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(249, 128, 128, 0)) !important;
}
.from-red-500 {
  --gradient-from-color: #F05252 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 82, 82, 0)) !important;
}
.from-red-600 {
  --gradient-from-color: #E02424 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 36, 36, 0)) !important;
}
.from-red-700 {
  --gradient-from-color: #C81E1E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 30, 30, 0)) !important;
}
.from-red-800 {
  --gradient-from-color: #9B1C1C !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 28, 28, 0)) !important;
}
.from-red-900 {
  --gradient-from-color: #771D1D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(119, 29, 29, 0)) !important;
}
.from-red {
  --gradient-from-color: #F05252 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 82, 82, 0)) !important;
}
.from-orange-50 {
  --gradient-from-color: #FFF8F1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 248, 241, 0)) !important;
}
.from-orange-100 {
  --gradient-from-color: #FEECDC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 236, 220, 0)) !important;
}
.from-orange-200 {
  --gradient-from-color: #FCD9BD !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 217, 189, 0)) !important;
}
.from-orange-300 {
  --gradient-from-color: #FDBA8C !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 186, 140, 0)) !important;
}
.from-orange-400 {
  --gradient-from-color: #FF8A4C !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 138, 76, 0)) !important;
}
.from-orange-500 {
  --gradient-from-color: #FF5A1F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 90, 31, 0)) !important;
}
.from-orange-600 {
  --gradient-from-color: #D03801 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 56, 1, 0)) !important;
}
.from-orange-700 {
  --gradient-from-color: #B43403 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(180, 52, 3, 0)) !important;
}
.from-orange-800 {
  --gradient-from-color: #8A2C0D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(138, 44, 13, 0)) !important;
}
.from-orange-900 {
  --gradient-from-color: #771D1D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(119, 29, 29, 0)) !important;
}
.from-orange {
  --gradient-from-color: #FF5A1F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 90, 31, 0)) !important;
}
.from-yellow-50 {
  --gradient-from-color: #FDFDEA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 253, 234, 0)) !important;
}
.from-yellow-100 {
  --gradient-from-color: #FDF6B2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 246, 178, 0)) !important;
}
.from-yellow-200 {
  --gradient-from-color: #FCE96A !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 233, 106, 0)) !important;
}
.from-yellow-300 {
  --gradient-from-color: #FACA15 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 202, 21, 0)) !important;
}
.from-yellow-400 {
  --gradient-from-color: #E3A008 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 160, 8, 0)) !important;
}
.from-yellow-500 {
  --gradient-from-color: #C27803 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(194, 120, 3, 0)) !important;
}
.from-yellow-600 {
  --gradient-from-color: #9F580A !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 88, 10, 0)) !important;
}
.from-yellow-700 {
  --gradient-from-color: #8E4B10 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(142, 75, 16, 0)) !important;
}
.from-yellow-800 {
  --gradient-from-color: #723B13 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(114, 59, 19, 0)) !important;
}
.from-yellow-900 {
  --gradient-from-color: #633112 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 49, 18, 0)) !important;
}
.from-yellow {
  --gradient-from-color: #C27803 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(194, 120, 3, 0)) !important;
}
.from-green-50 {
  --gradient-from-color: #F3FAF7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 250, 247, 0)) !important;
}
.from-green-100 {
  --gradient-from-color: #DEF7EC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 247, 236, 0)) !important;
}
.from-green-200 {
  --gradient-from-color: #BCF0DA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(188, 240, 218, 0)) !important;
}
.from-green-300 {
  --gradient-from-color: #84E1BC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(132, 225, 188, 0)) !important;
}
.from-green-400 {
  --gradient-from-color: #31C48D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 196, 141, 0)) !important;
}
.from-green-500 {
  --gradient-from-color: #0E9F6E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(14, 159, 110, 0)) !important;
}
.from-green-600 {
  --gradient-from-color: #057A55 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(5, 122, 85, 0)) !important;
}
.from-green-700 {
  --gradient-from-color: #046C4E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(4, 108, 78, 0)) !important;
}
.from-green-800 {
  --gradient-from-color: #03543F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 84, 63, 0)) !important;
}
.from-green-900 {
  --gradient-from-color: #014737 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(1, 71, 55, 0)) !important;
}
.from-green {
  --gradient-from-color: #0E9F6E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(14, 159, 110, 0)) !important;
}
.from-teal-50 {
  --gradient-from-color: #EDFAFA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 250, 250, 0)) !important;
}
.from-teal-100 {
  --gradient-from-color: #D5F5F6 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 245, 246, 0)) !important;
}
.from-teal-200 {
  --gradient-from-color: #AFECEF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(175, 236, 239, 0)) !important;
}
.from-teal-300 {
  --gradient-from-color: #7EDCE2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(126, 220, 226, 0)) !important;
}
.from-teal-400 {
  --gradient-from-color: #16BDCA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(22, 189, 202, 0)) !important;
}
.from-teal-500 {
  --gradient-from-color: #0694A2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(6, 148, 162, 0)) !important;
}
.from-teal-600 {
  --gradient-from-color: #047481 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(4, 116, 129, 0)) !important;
}
.from-teal-700 {
  --gradient-from-color: #036672 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 102, 114, 0)) !important;
}
.from-teal-800 {
  --gradient-from-color: #05505C !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(5, 80, 92, 0)) !important;
}
.from-teal-900 {
  --gradient-from-color: #014451 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(1, 68, 81, 0)) !important;
}
.from-teal {
  --gradient-from-color: #0694A2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(6, 148, 162, 0)) !important;
}
.from-blue-50 {
  --gradient-from-color: #EBF5FF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 245, 255, 0)) !important;
}
.from-blue-100 {
  --gradient-from-color: #E1EFFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(225, 239, 254, 0)) !important;
}
.from-blue-200 {
  --gradient-from-color: #C3DDFD !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 221, 253, 0)) !important;
}
.from-blue-300 {
  --gradient-from-color: #A4CAFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(164, 202, 254, 0)) !important;
}
.from-blue-400 {
  --gradient-from-color: #76A9FA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(118, 169, 250, 0)) !important;
}
.from-blue-500 {
  --gradient-from-color: #3F83F8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(63, 131, 248, 0)) !important;
}
.from-blue-600 {
  --gradient-from-color: #1C64F2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(28, 100, 242, 0)) !important;
}
.from-blue-700 {
  --gradient-from-color: #1A56DB !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 86, 219, 0)) !important;
}
.from-blue-800 {
  --gradient-from-color: #1E429F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(30, 66, 159, 0)) !important;
}
.from-blue-900 {
  --gradient-from-color: #233876 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 56, 118, 0)) !important;
}
.from-blue {
  --gradient-from-color: #3F83F8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(63, 131, 248, 0)) !important;
}
.from-indigo-50 {
  --gradient-from-color: #F0F5FF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 245, 255, 0)) !important;
}
.from-indigo-100 {
  --gradient-from-color: #E5EDFF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 237, 255, 0)) !important;
}
.from-indigo-200 {
  --gradient-from-color: #CDDBFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(205, 219, 254, 0)) !important;
}
.from-indigo-300 {
  --gradient-from-color: #B4C6FC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(180, 198, 252, 0)) !important;
}
.from-indigo-400 {
  --gradient-from-color: #8DA2FB !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(141, 162, 251, 0)) !important;
}
.from-indigo-500 {
  --gradient-from-color: #6875F5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 117, 245, 0)) !important;
}
.from-indigo-600 {
  --gradient-from-color: #5850EC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(88, 80, 236, 0)) !important;
}
.from-indigo-700 {
  --gradient-from-color: #5145CD !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 69, 205, 0)) !important;
}
.from-indigo-800 {
  --gradient-from-color: #42389D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 56, 157, 0)) !important;
}
.from-indigo-900 {
  --gradient-from-color: #362F78 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(54, 47, 120, 0)) !important;
}
.from-indigo {
  --gradient-from-color: #6875F5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 117, 245, 0)) !important;
}
.from-purple-50 {
  --gradient-from-color: #F6F5FF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 245, 255, 0)) !important;
}
.from-purple-100 {
  --gradient-from-color: #EDEBFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 235, 254, 0)) !important;
}
.from-purple-200 {
  --gradient-from-color: #DCD7FE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(220, 215, 254, 0)) !important;
}
.from-purple-300 {
  --gradient-from-color: #CABFFD !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(202, 191, 253, 0)) !important;
}
.from-purple-400 {
  --gradient-from-color: #AC94FA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(172, 148, 250, 0)) !important;
}
.from-purple-500 {
  --gradient-from-color: #9061F9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 97, 249, 0)) !important;
}
.from-purple-600 {
  --gradient-from-color: #7E3AF2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(126, 58, 242, 0)) !important;
}
.from-purple-700 {
  --gradient-from-color: #6C2BD9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(108, 43, 217, 0)) !important;
}
.from-purple-800 {
  --gradient-from-color: #5521B5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 33, 181, 0)) !important;
}
.from-purple-900 {
  --gradient-from-color: #4A1D96 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 29, 150, 0)) !important;
}
.from-purple {
  --gradient-from-color: #9061F9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 97, 249, 0)) !important;
}
.from-pink-50 {
  --gradient-from-color: #FDF2F8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 242, 248, 0)) !important;
}
.from-pink-100 {
  --gradient-from-color: #FCE8F3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 232, 243, 0)) !important;
}
.from-pink-200 {
  --gradient-from-color: #FAD1E8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 209, 232, 0)) !important;
}
.from-pink-300 {
  --gradient-from-color: #F8B4D9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 180, 217, 0)) !important;
}
.from-pink-400 {
  --gradient-from-color: #F17EB8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 126, 184, 0)) !important;
}
.from-pink-500 {
  --gradient-from-color: #E74694 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(231, 70, 148, 0)) !important;
}
.from-pink-600 {
  --gradient-from-color: #D61F69 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 31, 105, 0)) !important;
}
.from-pink-700 {
  --gradient-from-color: #BF125D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 18, 93, 0)) !important;
}
.from-pink-800 {
  --gradient-from-color: #99154B !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(153, 21, 75, 0)) !important;
}
.from-pink-900 {
  --gradient-from-color: #751A3D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(117, 26, 61, 0)) !important;
}
.from-pink {
  --gradient-from-color: #E74694 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(231, 70, 148, 0)) !important;
}
.via-current {
  --gradient-via-color: currentColor !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}
.via-transparent {
  --gradient-via-color: transparent !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}
.via-white {
  --gradient-via-color: #FFFFFF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}
.via-black {
  --gradient-via-color: #000000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}
.via-gray-50 {
  --gradient-via-color: #F9FAFB !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(249, 250, 251, 0)) !important;
}
.via-gray-100 {
  --gradient-via-color: #F4F5F7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 245, 247, 0)) !important;
}
.via-gray-200 {
  --gradient-via-color: #E5E7EB !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 231, 235, 0)) !important;
}
.via-gray-300 {
  --gradient-via-color: #D2D6DC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(210, 214, 220, 0)) !important;
}
.via-gray-400 {
  --gradient-via-color: #9FA6B2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 166, 178, 0)) !important;
}
.via-gray-500 {
  --gradient-via-color: #6B7280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 114, 128, 0)) !important;
}
.via-gray-600 {
  --gradient-via-color: #4B5563 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(75, 85, 99, 0)) !important;
}
.via-gray-700 {
  --gradient-via-color: #374151 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(55, 65, 81, 0)) !important;
}
.via-gray-800 {
  --gradient-via-color: #252F3F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(37, 47, 63, 0)) !important;
}
.via-gray-900 {
  --gradient-via-color: #161E2E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(22, 30, 46, 0)) !important;
}
.via-gray {
  --gradient-via-color: #6B7280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 114, 128, 0)) !important;
}
.via-cool-gray-50 {
  --gradient-via-color: #FBFDFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 253, 254, 0)) !important;
}
.via-cool-gray-100 {
  --gradient-via-color: #F1F5F9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 245, 249, 0)) !important;
}
.via-cool-gray-200 {
  --gradient-via-color: #E2E8F0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
}
.via-cool-gray-300 {
  --gradient-via-color: #CFD8E3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 216, 227, 0)) !important;
}
.via-cool-gray-400 {
  --gradient-via-color: #97A6BA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 166, 186, 0)) !important;
}
.via-cool-gray-500 {
  --gradient-via-color: #64748B !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 116, 139, 0)) !important;
}
.via-cool-gray-600 {
  --gradient-via-color: #475569 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(71, 85, 105, 0)) !important;
}
.via-cool-gray-700 {
  --gradient-via-color: #364152 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(54, 65, 82, 0)) !important;
}
.via-cool-gray-800 {
  --gradient-via-color: #27303F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 48, 63, 0)) !important;
}
.via-cool-gray-900 {
  --gradient-via-color: #1A202E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 46, 0)) !important;
}
.via-cool-gray {
  --gradient-via-color: #64748B !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 116, 139, 0)) !important;
}
.via-red-50 {
  --gradient-via-color: #FDF2F2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 242, 242, 0)) !important;
}
.via-red-100 {
  --gradient-via-color: #FDE8E8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 232, 232, 0)) !important;
}
.via-red-200 {
  --gradient-via-color: #FBD5D5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 213, 213, 0)) !important;
}
.via-red-300 {
  --gradient-via-color: #F8B4B4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 180, 180, 0)) !important;
}
.via-red-400 {
  --gradient-via-color: #F98080 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(249, 128, 128, 0)) !important;
}
.via-red-500 {
  --gradient-via-color: #F05252 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 82, 82, 0)) !important;
}
.via-red-600 {
  --gradient-via-color: #E02424 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 36, 36, 0)) !important;
}
.via-red-700 {
  --gradient-via-color: #C81E1E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 30, 30, 0)) !important;
}
.via-red-800 {
  --gradient-via-color: #9B1C1C !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 28, 28, 0)) !important;
}
.via-red-900 {
  --gradient-via-color: #771D1D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(119, 29, 29, 0)) !important;
}
.via-red {
  --gradient-via-color: #F05252 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 82, 82, 0)) !important;
}
.via-orange-50 {
  --gradient-via-color: #FFF8F1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 248, 241, 0)) !important;
}
.via-orange-100 {
  --gradient-via-color: #FEECDC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 236, 220, 0)) !important;
}
.via-orange-200 {
  --gradient-via-color: #FCD9BD !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 217, 189, 0)) !important;
}
.via-orange-300 {
  --gradient-via-color: #FDBA8C !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 186, 140, 0)) !important;
}
.via-orange-400 {
  --gradient-via-color: #FF8A4C !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 138, 76, 0)) !important;
}
.via-orange-500 {
  --gradient-via-color: #FF5A1F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 90, 31, 0)) !important;
}
.via-orange-600 {
  --gradient-via-color: #D03801 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 56, 1, 0)) !important;
}
.via-orange-700 {
  --gradient-via-color: #B43403 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(180, 52, 3, 0)) !important;
}
.via-orange-800 {
  --gradient-via-color: #8A2C0D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(138, 44, 13, 0)) !important;
}
.via-orange-900 {
  --gradient-via-color: #771D1D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(119, 29, 29, 0)) !important;
}
.via-orange {
  --gradient-via-color: #FF5A1F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 90, 31, 0)) !important;
}
.via-yellow-50 {
  --gradient-via-color: #FDFDEA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 253, 234, 0)) !important;
}
.via-yellow-100 {
  --gradient-via-color: #FDF6B2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 246, 178, 0)) !important;
}
.via-yellow-200 {
  --gradient-via-color: #FCE96A !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 233, 106, 0)) !important;
}
.via-yellow-300 {
  --gradient-via-color: #FACA15 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 202, 21, 0)) !important;
}
.via-yellow-400 {
  --gradient-via-color: #E3A008 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 160, 8, 0)) !important;
}
.via-yellow-500 {
  --gradient-via-color: #C27803 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(194, 120, 3, 0)) !important;
}
.via-yellow-600 {
  --gradient-via-color: #9F580A !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 88, 10, 0)) !important;
}
.via-yellow-700 {
  --gradient-via-color: #8E4B10 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(142, 75, 16, 0)) !important;
}
.via-yellow-800 {
  --gradient-via-color: #723B13 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(114, 59, 19, 0)) !important;
}
.via-yellow-900 {
  --gradient-via-color: #633112 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 49, 18, 0)) !important;
}
.via-yellow {
  --gradient-via-color: #C27803 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(194, 120, 3, 0)) !important;
}
.via-green-50 {
  --gradient-via-color: #F3FAF7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 250, 247, 0)) !important;
}
.via-green-100 {
  --gradient-via-color: #DEF7EC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 247, 236, 0)) !important;
}
.via-green-200 {
  --gradient-via-color: #BCF0DA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(188, 240, 218, 0)) !important;
}
.via-green-300 {
  --gradient-via-color: #84E1BC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(132, 225, 188, 0)) !important;
}
.via-green-400 {
  --gradient-via-color: #31C48D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 196, 141, 0)) !important;
}
.via-green-500 {
  --gradient-via-color: #0E9F6E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(14, 159, 110, 0)) !important;
}
.via-green-600 {
  --gradient-via-color: #057A55 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(5, 122, 85, 0)) !important;
}
.via-green-700 {
  --gradient-via-color: #046C4E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(4, 108, 78, 0)) !important;
}
.via-green-800 {
  --gradient-via-color: #03543F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 84, 63, 0)) !important;
}
.via-green-900 {
  --gradient-via-color: #014737 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(1, 71, 55, 0)) !important;
}
.via-green {
  --gradient-via-color: #0E9F6E !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(14, 159, 110, 0)) !important;
}
.via-teal-50 {
  --gradient-via-color: #EDFAFA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 250, 250, 0)) !important;
}
.via-teal-100 {
  --gradient-via-color: #D5F5F6 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 245, 246, 0)) !important;
}
.via-teal-200 {
  --gradient-via-color: #AFECEF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(175, 236, 239, 0)) !important;
}
.via-teal-300 {
  --gradient-via-color: #7EDCE2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(126, 220, 226, 0)) !important;
}
.via-teal-400 {
  --gradient-via-color: #16BDCA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(22, 189, 202, 0)) !important;
}
.via-teal-500 {
  --gradient-via-color: #0694A2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(6, 148, 162, 0)) !important;
}
.via-teal-600 {
  --gradient-via-color: #047481 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(4, 116, 129, 0)) !important;
}
.via-teal-700 {
  --gradient-via-color: #036672 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 102, 114, 0)) !important;
}
.via-teal-800 {
  --gradient-via-color: #05505C !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(5, 80, 92, 0)) !important;
}
.via-teal-900 {
  --gradient-via-color: #014451 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(1, 68, 81, 0)) !important;
}
.via-teal {
  --gradient-via-color: #0694A2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(6, 148, 162, 0)) !important;
}
.via-blue-50 {
  --gradient-via-color: #EBF5FF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 245, 255, 0)) !important;
}
.via-blue-100 {
  --gradient-via-color: #E1EFFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(225, 239, 254, 0)) !important;
}
.via-blue-200 {
  --gradient-via-color: #C3DDFD !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 221, 253, 0)) !important;
}
.via-blue-300 {
  --gradient-via-color: #A4CAFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(164, 202, 254, 0)) !important;
}
.via-blue-400 {
  --gradient-via-color: #76A9FA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(118, 169, 250, 0)) !important;
}
.via-blue-500 {
  --gradient-via-color: #3F83F8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(63, 131, 248, 0)) !important;
}
.via-blue-600 {
  --gradient-via-color: #1C64F2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(28, 100, 242, 0)) !important;
}
.via-blue-700 {
  --gradient-via-color: #1A56DB !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 86, 219, 0)) !important;
}
.via-blue-800 {
  --gradient-via-color: #1E429F !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(30, 66, 159, 0)) !important;
}
.via-blue-900 {
  --gradient-via-color: #233876 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 56, 118, 0)) !important;
}
.via-blue {
  --gradient-via-color: #3F83F8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(63, 131, 248, 0)) !important;
}
.via-indigo-50 {
  --gradient-via-color: #F0F5FF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 245, 255, 0)) !important;
}
.via-indigo-100 {
  --gradient-via-color: #E5EDFF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 237, 255, 0)) !important;
}
.via-indigo-200 {
  --gradient-via-color: #CDDBFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(205, 219, 254, 0)) !important;
}
.via-indigo-300 {
  --gradient-via-color: #B4C6FC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(180, 198, 252, 0)) !important;
}
.via-indigo-400 {
  --gradient-via-color: #8DA2FB !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(141, 162, 251, 0)) !important;
}
.via-indigo-500 {
  --gradient-via-color: #6875F5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 117, 245, 0)) !important;
}
.via-indigo-600 {
  --gradient-via-color: #5850EC !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(88, 80, 236, 0)) !important;
}
.via-indigo-700 {
  --gradient-via-color: #5145CD !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 69, 205, 0)) !important;
}
.via-indigo-800 {
  --gradient-via-color: #42389D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 56, 157, 0)) !important;
}
.via-indigo-900 {
  --gradient-via-color: #362F78 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(54, 47, 120, 0)) !important;
}
.via-indigo {
  --gradient-via-color: #6875F5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 117, 245, 0)) !important;
}
.via-purple-50 {
  --gradient-via-color: #F6F5FF !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 245, 255, 0)) !important;
}
.via-purple-100 {
  --gradient-via-color: #EDEBFE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 235, 254, 0)) !important;
}
.via-purple-200 {
  --gradient-via-color: #DCD7FE !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(220, 215, 254, 0)) !important;
}
.via-purple-300 {
  --gradient-via-color: #CABFFD !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(202, 191, 253, 0)) !important;
}
.via-purple-400 {
  --gradient-via-color: #AC94FA !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(172, 148, 250, 0)) !important;
}
.via-purple-500 {
  --gradient-via-color: #9061F9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 97, 249, 0)) !important;
}
.via-purple-600 {
  --gradient-via-color: #7E3AF2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(126, 58, 242, 0)) !important;
}
.via-purple-700 {
  --gradient-via-color: #6C2BD9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(108, 43, 217, 0)) !important;
}
.via-purple-800 {
  --gradient-via-color: #5521B5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 33, 181, 0)) !important;
}
.via-purple-900 {
  --gradient-via-color: #4A1D96 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 29, 150, 0)) !important;
}
.via-purple {
  --gradient-via-color: #9061F9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 97, 249, 0)) !important;
}
.via-pink-50 {
  --gradient-via-color: #FDF2F8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 242, 248, 0)) !important;
}
.via-pink-100 {
  --gradient-via-color: #FCE8F3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 232, 243, 0)) !important;
}
.via-pink-200 {
  --gradient-via-color: #FAD1E8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 209, 232, 0)) !important;
}
.via-pink-300 {
  --gradient-via-color: #F8B4D9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 180, 217, 0)) !important;
}
.via-pink-400 {
  --gradient-via-color: #F17EB8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 126, 184, 0)) !important;
}
.via-pink-500 {
  --gradient-via-color: #E74694 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(231, 70, 148, 0)) !important;
}
.via-pink-600 {
  --gradient-via-color: #D61F69 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 31, 105, 0)) !important;
}
.via-pink-700 {
  --gradient-via-color: #BF125D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 18, 93, 0)) !important;
}
.via-pink-800 {
  --gradient-via-color: #99154B !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(153, 21, 75, 0)) !important;
}
.via-pink-900 {
  --gradient-via-color: #751A3D !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(117, 26, 61, 0)) !important;
}
.via-pink {
  --gradient-via-color: #E74694 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(231, 70, 148, 0)) !important;
}
.to-current {
  --gradient-to-color: currentColor !important;
}
.to-transparent {
  --gradient-to-color: transparent !important;
}
.to-white {
  --gradient-to-color: #FFFFFF !important;
}
.to-black {
  --gradient-to-color: #000000 !important;
}
.to-gray-50 {
  --gradient-to-color: #F9FAFB !important;
}
.to-gray-100 {
  --gradient-to-color: #F4F5F7 !important;
}
.to-gray-200 {
  --gradient-to-color: #E5E7EB !important;
}
.to-gray-300 {
  --gradient-to-color: #D2D6DC !important;
}
.to-gray-400 {
  --gradient-to-color: #9FA6B2 !important;
}
.to-gray-500 {
  --gradient-to-color: #6B7280 !important;
}
.to-gray-600 {
  --gradient-to-color: #4B5563 !important;
}
.to-gray-700 {
  --gradient-to-color: #374151 !important;
}
.to-gray-800 {
  --gradient-to-color: #252F3F !important;
}
.to-gray-900 {
  --gradient-to-color: #161E2E !important;
}
.to-gray {
  --gradient-to-color: #6B7280 !important;
}
.to-cool-gray-50 {
  --gradient-to-color: #FBFDFE !important;
}
.to-cool-gray-100 {
  --gradient-to-color: #F1F5F9 !important;
}
.to-cool-gray-200 {
  --gradient-to-color: #E2E8F0 !important;
}
.to-cool-gray-300 {
  --gradient-to-color: #CFD8E3 !important;
}
.to-cool-gray-400 {
  --gradient-to-color: #97A6BA !important;
}
.to-cool-gray-500 {
  --gradient-to-color: #64748B !important;
}
.to-cool-gray-600 {
  --gradient-to-color: #475569 !important;
}
.to-cool-gray-700 {
  --gradient-to-color: #364152 !important;
}
.to-cool-gray-800 {
  --gradient-to-color: #27303F !important;
}
.to-cool-gray-900 {
  --gradient-to-color: #1A202E !important;
}
.to-cool-gray {
  --gradient-to-color: #64748B !important;
}
.to-red-50 {
  --gradient-to-color: #FDF2F2 !important;
}
.to-red-100 {
  --gradient-to-color: #FDE8E8 !important;
}
.to-red-200 {
  --gradient-to-color: #FBD5D5 !important;
}
.to-red-300 {
  --gradient-to-color: #F8B4B4 !important;
}
.to-red-400 {
  --gradient-to-color: #F98080 !important;
}
.to-red-500 {
  --gradient-to-color: #F05252 !important;
}
.to-red-600 {
  --gradient-to-color: #E02424 !important;
}
.to-red-700 {
  --gradient-to-color: #C81E1E !important;
}
.to-red-800 {
  --gradient-to-color: #9B1C1C !important;
}
.to-red-900 {
  --gradient-to-color: #771D1D !important;
}
.to-red {
  --gradient-to-color: #F05252 !important;
}
.to-orange-50 {
  --gradient-to-color: #FFF8F1 !important;
}
.to-orange-100 {
  --gradient-to-color: #FEECDC !important;
}
.to-orange-200 {
  --gradient-to-color: #FCD9BD !important;
}
.to-orange-300 {
  --gradient-to-color: #FDBA8C !important;
}
.to-orange-400 {
  --gradient-to-color: #FF8A4C !important;
}
.to-orange-500 {
  --gradient-to-color: #FF5A1F !important;
}
.to-orange-600 {
  --gradient-to-color: #D03801 !important;
}
.to-orange-700 {
  --gradient-to-color: #B43403 !important;
}
.to-orange-800 {
  --gradient-to-color: #8A2C0D !important;
}
.to-orange-900 {
  --gradient-to-color: #771D1D !important;
}
.to-orange {
  --gradient-to-color: #FF5A1F !important;
}
.to-yellow-50 {
  --gradient-to-color: #FDFDEA !important;
}
.to-yellow-100 {
  --gradient-to-color: #FDF6B2 !important;
}
.to-yellow-200 {
  --gradient-to-color: #FCE96A !important;
}
.to-yellow-300 {
  --gradient-to-color: #FACA15 !important;
}
.to-yellow-400 {
  --gradient-to-color: #E3A008 !important;
}
.to-yellow-500 {
  --gradient-to-color: #C27803 !important;
}
.to-yellow-600 {
  --gradient-to-color: #9F580A !important;
}
.to-yellow-700 {
  --gradient-to-color: #8E4B10 !important;
}
.to-yellow-800 {
  --gradient-to-color: #723B13 !important;
}
.to-yellow-900 {
  --gradient-to-color: #633112 !important;
}
.to-yellow {
  --gradient-to-color: #C27803 !important;
}
.to-green-50 {
  --gradient-to-color: #F3FAF7 !important;
}
.to-green-100 {
  --gradient-to-color: #DEF7EC !important;
}
.to-green-200 {
  --gradient-to-color: #BCF0DA !important;
}
.to-green-300 {
  --gradient-to-color: #84E1BC !important;
}
.to-green-400 {
  --gradient-to-color: #31C48D !important;
}
.to-green-500 {
  --gradient-to-color: #0E9F6E !important;
}
.to-green-600 {
  --gradient-to-color: #057A55 !important;
}
.to-green-700 {
  --gradient-to-color: #046C4E !important;
}
.to-green-800 {
  --gradient-to-color: #03543F !important;
}
.to-green-900 {
  --gradient-to-color: #014737 !important;
}
.to-green {
  --gradient-to-color: #0E9F6E !important;
}
.to-teal-50 {
  --gradient-to-color: #EDFAFA !important;
}
.to-teal-100 {
  --gradient-to-color: #D5F5F6 !important;
}
.to-teal-200 {
  --gradient-to-color: #AFECEF !important;
}
.to-teal-300 {
  --gradient-to-color: #7EDCE2 !important;
}
.to-teal-400 {
  --gradient-to-color: #16BDCA !important;
}
.to-teal-500 {
  --gradient-to-color: #0694A2 !important;
}
.to-teal-600 {
  --gradient-to-color: #047481 !important;
}
.to-teal-700 {
  --gradient-to-color: #036672 !important;
}
.to-teal-800 {
  --gradient-to-color: #05505C !important;
}
.to-teal-900 {
  --gradient-to-color: #014451 !important;
}
.to-teal {
  --gradient-to-color: #0694A2 !important;
}
.to-blue-50 {
  --gradient-to-color: #EBF5FF !important;
}
.to-blue-100 {
  --gradient-to-color: #E1EFFE !important;
}
.to-blue-200 {
  --gradient-to-color: #C3DDFD !important;
}
.to-blue-300 {
  --gradient-to-color: #A4CAFE !important;
}
.to-blue-400 {
  --gradient-to-color: #76A9FA !important;
}
.to-blue-500 {
  --gradient-to-color: #3F83F8 !important;
}
.to-blue-600 {
  --gradient-to-color: #1C64F2 !important;
}
.to-blue-700 {
  --gradient-to-color: #1A56DB !important;
}
.to-blue-800 {
  --gradient-to-color: #1E429F !important;
}
.to-blue-900 {
  --gradient-to-color: #233876 !important;
}
.to-blue {
  --gradient-to-color: #3F83F8 !important;
}
.to-indigo-50 {
  --gradient-to-color: #F0F5FF !important;
}
.to-indigo-100 {
  --gradient-to-color: #E5EDFF !important;
}
.to-indigo-200 {
  --gradient-to-color: #CDDBFE !important;
}
.to-indigo-300 {
  --gradient-to-color: #B4C6FC !important;
}
.to-indigo-400 {
  --gradient-to-color: #8DA2FB !important;
}
.to-indigo-500 {
  --gradient-to-color: #6875F5 !important;
}
.to-indigo-600 {
  --gradient-to-color: #5850EC !important;
}
.to-indigo-700 {
  --gradient-to-color: #5145CD !important;
}
.to-indigo-800 {
  --gradient-to-color: #42389D !important;
}
.to-indigo-900 {
  --gradient-to-color: #362F78 !important;
}
.to-indigo {
  --gradient-to-color: #6875F5 !important;
}
.to-purple-50 {
  --gradient-to-color: #F6F5FF !important;
}
.to-purple-100 {
  --gradient-to-color: #EDEBFE !important;
}
.to-purple-200 {
  --gradient-to-color: #DCD7FE !important;
}
.to-purple-300 {
  --gradient-to-color: #CABFFD !important;
}
.to-purple-400 {
  --gradient-to-color: #AC94FA !important;
}
.to-purple-500 {
  --gradient-to-color: #9061F9 !important;
}
.to-purple-600 {
  --gradient-to-color: #7E3AF2 !important;
}
.to-purple-700 {
  --gradient-to-color: #6C2BD9 !important;
}
.to-purple-800 {
  --gradient-to-color: #5521B5 !important;
}
.to-purple-900 {
  --gradient-to-color: #4A1D96 !important;
}
.to-purple {
  --gradient-to-color: #9061F9 !important;
}
.to-pink-50 {
  --gradient-to-color: #FDF2F8 !important;
}
.to-pink-100 {
  --gradient-to-color: #FCE8F3 !important;
}
.to-pink-200 {
  --gradient-to-color: #FAD1E8 !important;
}
.to-pink-300 {
  --gradient-to-color: #F8B4D9 !important;
}
.to-pink-400 {
  --gradient-to-color: #F17EB8 !important;
}
.to-pink-500 {
  --gradient-to-color: #E74694 !important;
}
.to-pink-600 {
  --gradient-to-color: #D61F69 !important;
}
.to-pink-700 {
  --gradient-to-color: #BF125D !important;
}
.to-pink-800 {
  --gradient-to-color: #99154B !important;
}
.to-pink-900 {
  --gradient-to-color: #751A3D !important;
}
.to-pink {
  --gradient-to-color: #E74694 !important;
}
.bg-opacity-0 {
  --bg-opacity: 0 !important;
}
.bg-opacity-12 {
  --bg-opacity: 0.12 !important;
}
.bg-opacity-25 {
  --bg-opacity: 0.25 !important;
}
.bg-opacity-38 {
  --bg-opacity: 0.38 !important;
}
.bg-opacity-50 {
  --bg-opacity: 0.5 !important;
}
.bg-opacity-54 {
  --bg-opacity: 0.54 !important;
}
.bg-opacity-70 {
  --bg-opacity: 0.70 !important;
}
.bg-opacity-75 {
  --bg-opacity: 0.75 !important;
}
.bg-opacity-84 {
  --bg-opacity: 0.84 !important;
}
.bg-opacity-100 {
  --bg-opacity: 1 !important;
}
.bg-bottom {
  background-position: bottom !important;
}
.bg-center {
  background-position: center !important;
}
.bg-left {
  background-position: left !important;
}
.bg-left-bottom {
  background-position: left bottom !important;
}
.bg-left-top {
  background-position: left top !important;
}
.bg-right {
  background-position: right !important;
}
.bg-right-bottom {
  background-position: right bottom !important;
}
.bg-right-top {
  background-position: right top !important;
}
.bg-top {
  background-position: top !important;
}
.bg-repeat {
  background-repeat: repeat !important;
}
.bg-no-repeat {
  background-repeat: no-repeat !important;
}
.bg-repeat-x {
  background-repeat: repeat-x !important;
}
.bg-repeat-y {
  background-repeat: repeat-y !important;
}
.bg-repeat-round {
  background-repeat: round !important;
}
.bg-repeat-space {
  background-repeat: space !important;
}
.bg-auto {
  background-size: auto !important;
}
.bg-cover {
  background-size: cover !important;
}
.bg-contain {
  background-size: contain !important;
}
.border-collapse {
  border-collapse: collapse !important;
}
.border-separate {
  border-collapse: separate !important;
}
.border-current {
  border-color: currentColor !important;
}
.border-transparent {
  border-color: transparent !important;
}
.border-white {
  --border-opacity: 1 !important;
  border-color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
}
.border-black {
  --border-opacity: 1 !important;
  border-color: #000000 !important;
  border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
}
.border-gray-50 {
  --border-opacity: 1 !important;
  border-color: #F9FAFB !important;
  border-color: rgba(249, 250, 251, var(--border-opacity)) !important;
}
.border-gray-100 {
  --border-opacity: 1 !important;
  border-color: #F4F5F7 !important;
  border-color: rgba(244, 245, 247, var(--border-opacity)) !important;
}
.border-gray-200 {
  --border-opacity: 1 !important;
  border-color: #E5E7EB !important;
  border-color: rgba(229, 231, 235, var(--border-opacity)) !important;
}
.border-gray-300 {
  --border-opacity: 1 !important;
  border-color: #D2D6DC !important;
  border-color: rgba(210, 214, 220, var(--border-opacity)) !important;
}
.border-gray-400 {
  --border-opacity: 1 !important;
  border-color: #9FA6B2 !important;
  border-color: rgba(159, 166, 178, var(--border-opacity)) !important;
}
.border-gray-500 {
  --border-opacity: 1 !important;
  border-color: #6B7280 !important;
  border-color: rgba(107, 114, 128, var(--border-opacity)) !important;
}
.border-gray-600 {
  --border-opacity: 1 !important;
  border-color: #4B5563 !important;
  border-color: rgba(75, 85, 99, var(--border-opacity)) !important;
}
.border-gray-700 {
  --border-opacity: 1 !important;
  border-color: #374151 !important;
  border-color: rgba(55, 65, 81, var(--border-opacity)) !important;
}
.border-gray-800 {
  --border-opacity: 1 !important;
  border-color: #252F3F !important;
  border-color: rgba(37, 47, 63, var(--border-opacity)) !important;
}
.border-gray-900 {
  --border-opacity: 1 !important;
  border-color: #161E2E !important;
  border-color: rgba(22, 30, 46, var(--border-opacity)) !important;
}
.border-gray {
  --border-opacity: 1 !important;
  border-color: #6B7280 !important;
  border-color: rgba(107, 114, 128, var(--border-opacity)) !important;
}
.border-cool-gray-50 {
  --border-opacity: 1 !important;
  border-color: #FBFDFE !important;
  border-color: rgba(251, 253, 254, var(--border-opacity)) !important;
}
.border-cool-gray-100 {
  --border-opacity: 1 !important;
  border-color: #F1F5F9 !important;
  border-color: rgba(241, 245, 249, var(--border-opacity)) !important;
}
.border-cool-gray-200 {
  --border-opacity: 1 !important;
  border-color: #E2E8F0 !important;
  border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
}
.border-cool-gray-300 {
  --border-opacity: 1 !important;
  border-color: #CFD8E3 !important;
  border-color: rgba(207, 216, 227, var(--border-opacity)) !important;
}
.border-cool-gray-400 {
  --border-opacity: 1 !important;
  border-color: #97A6BA !important;
  border-color: rgba(151, 166, 186, var(--border-opacity)) !important;
}
.border-cool-gray-500 {
  --border-opacity: 1 !important;
  border-color: #64748B !important;
  border-color: rgba(100, 116, 139, var(--border-opacity)) !important;
}
.border-cool-gray-600 {
  --border-opacity: 1 !important;
  border-color: #475569 !important;
  border-color: rgba(71, 85, 105, var(--border-opacity)) !important;
}
.border-cool-gray-700 {
  --border-opacity: 1 !important;
  border-color: #364152 !important;
  border-color: rgba(54, 65, 82, var(--border-opacity)) !important;
}
.border-cool-gray-800 {
  --border-opacity: 1 !important;
  border-color: #27303F !important;
  border-color: rgba(39, 48, 63, var(--border-opacity)) !important;
}
.border-cool-gray-900 {
  --border-opacity: 1 !important;
  border-color: #1A202E !important;
  border-color: rgba(26, 32, 46, var(--border-opacity)) !important;
}
.border-cool-gray {
  --border-opacity: 1 !important;
  border-color: #64748B !important;
  border-color: rgba(100, 116, 139, var(--border-opacity)) !important;
}
.border-red-50 {
  --border-opacity: 1 !important;
  border-color: #FDF2F2 !important;
  border-color: rgba(253, 242, 242, var(--border-opacity)) !important;
}
.border-red-100 {
  --border-opacity: 1 !important;
  border-color: #FDE8E8 !important;
  border-color: rgba(253, 232, 232, var(--border-opacity)) !important;
}
.border-red-200 {
  --border-opacity: 1 !important;
  border-color: #FBD5D5 !important;
  border-color: rgba(251, 213, 213, var(--border-opacity)) !important;
}
.border-red-300 {
  --border-opacity: 1 !important;
  border-color: #F8B4B4 !important;
  border-color: rgba(248, 180, 180, var(--border-opacity)) !important;
}
.border-red-400 {
  --border-opacity: 1 !important;
  border-color: #F98080 !important;
  border-color: rgba(249, 128, 128, var(--border-opacity)) !important;
}
.border-red-500 {
  --border-opacity: 1 !important;
  border-color: #F05252 !important;
  border-color: rgba(240, 82, 82, var(--border-opacity)) !important;
}
.border-red-600 {
  --border-opacity: 1 !important;
  border-color: #E02424 !important;
  border-color: rgba(224, 36, 36, var(--border-opacity)) !important;
}
.border-red-700 {
  --border-opacity: 1 !important;
  border-color: #C81E1E !important;
  border-color: rgba(200, 30, 30, var(--border-opacity)) !important;
}
.border-red-800 {
  --border-opacity: 1 !important;
  border-color: #9B1C1C !important;
  border-color: rgba(155, 28, 28, var(--border-opacity)) !important;
}
.border-red-900 {
  --border-opacity: 1 !important;
  border-color: #771D1D !important;
  border-color: rgba(119, 29, 29, var(--border-opacity)) !important;
}
.border-red {
  --border-opacity: 1 !important;
  border-color: #F05252 !important;
  border-color: rgba(240, 82, 82, var(--border-opacity)) !important;
}
.border-orange-50 {
  --border-opacity: 1 !important;
  border-color: #FFF8F1 !important;
  border-color: rgba(255, 248, 241, var(--border-opacity)) !important;
}
.border-orange-100 {
  --border-opacity: 1 !important;
  border-color: #FEECDC !important;
  border-color: rgba(254, 236, 220, var(--border-opacity)) !important;
}
.border-orange-200 {
  --border-opacity: 1 !important;
  border-color: #FCD9BD !important;
  border-color: rgba(252, 217, 189, var(--border-opacity)) !important;
}
.border-orange-300 {
  --border-opacity: 1 !important;
  border-color: #FDBA8C !important;
  border-color: rgba(253, 186, 140, var(--border-opacity)) !important;
}
.border-orange-400 {
  --border-opacity: 1 !important;
  border-color: #FF8A4C !important;
  border-color: rgba(255, 138, 76, var(--border-opacity)) !important;
}
.border-orange-500 {
  --border-opacity: 1 !important;
  border-color: #FF5A1F !important;
  border-color: rgba(255, 90, 31, var(--border-opacity)) !important;
}
.border-orange-600 {
  --border-opacity: 1 !important;
  border-color: #D03801 !important;
  border-color: rgba(208, 56, 1, var(--border-opacity)) !important;
}
.border-orange-700 {
  --border-opacity: 1 !important;
  border-color: #B43403 !important;
  border-color: rgba(180, 52, 3, var(--border-opacity)) !important;
}
.border-orange-800 {
  --border-opacity: 1 !important;
  border-color: #8A2C0D !important;
  border-color: rgba(138, 44, 13, var(--border-opacity)) !important;
}
.border-orange-900 {
  --border-opacity: 1 !important;
  border-color: #771D1D !important;
  border-color: rgba(119, 29, 29, var(--border-opacity)) !important;
}
.border-orange {
  --border-opacity: 1 !important;
  border-color: #FF5A1F !important;
  border-color: rgba(255, 90, 31, var(--border-opacity)) !important;
}
.border-yellow-50 {
  --border-opacity: 1 !important;
  border-color: #FDFDEA !important;
  border-color: rgba(253, 253, 234, var(--border-opacity)) !important;
}
.border-yellow-100 {
  --border-opacity: 1 !important;
  border-color: #FDF6B2 !important;
  border-color: rgba(253, 246, 178, var(--border-opacity)) !important;
}
.border-yellow-200 {
  --border-opacity: 1 !important;
  border-color: #FCE96A !important;
  border-color: rgba(252, 233, 106, var(--border-opacity)) !important;
}
.border-yellow-300 {
  --border-opacity: 1 !important;
  border-color: #FACA15 !important;
  border-color: rgba(250, 202, 21, var(--border-opacity)) !important;
}
.border-yellow-400 {
  --border-opacity: 1 !important;
  border-color: #E3A008 !important;
  border-color: rgba(227, 160, 8, var(--border-opacity)) !important;
}
.border-yellow-500 {
  --border-opacity: 1 !important;
  border-color: #C27803 !important;
  border-color: rgba(194, 120, 3, var(--border-opacity)) !important;
}
.border-yellow-600 {
  --border-opacity: 1 !important;
  border-color: #9F580A !important;
  border-color: rgba(159, 88, 10, var(--border-opacity)) !important;
}
.border-yellow-700 {
  --border-opacity: 1 !important;
  border-color: #8E4B10 !important;
  border-color: rgba(142, 75, 16, var(--border-opacity)) !important;
}
.border-yellow-800 {
  --border-opacity: 1 !important;
  border-color: #723B13 !important;
  border-color: rgba(114, 59, 19, var(--border-opacity)) !important;
}
.border-yellow-900 {
  --border-opacity: 1 !important;
  border-color: #633112 !important;
  border-color: rgba(99, 49, 18, var(--border-opacity)) !important;
}
.border-yellow {
  --border-opacity: 1 !important;
  border-color: #C27803 !important;
  border-color: rgba(194, 120, 3, var(--border-opacity)) !important;
}
.border-green-50 {
  --border-opacity: 1 !important;
  border-color: #F3FAF7 !important;
  border-color: rgba(243, 250, 247, var(--border-opacity)) !important;
}
.border-green-100 {
  --border-opacity: 1 !important;
  border-color: #DEF7EC !important;
  border-color: rgba(222, 247, 236, var(--border-opacity)) !important;
}
.border-green-200 {
  --border-opacity: 1 !important;
  border-color: #BCF0DA !important;
  border-color: rgba(188, 240, 218, var(--border-opacity)) !important;
}
.border-green-300 {
  --border-opacity: 1 !important;
  border-color: #84E1BC !important;
  border-color: rgba(132, 225, 188, var(--border-opacity)) !important;
}
.border-green-400 {
  --border-opacity: 1 !important;
  border-color: #31C48D !important;
  border-color: rgba(49, 196, 141, var(--border-opacity)) !important;
}
.border-green-500 {
  --border-opacity: 1 !important;
  border-color: #0E9F6E !important;
  border-color: rgba(14, 159, 110, var(--border-opacity)) !important;
}
.border-green-600 {
  --border-opacity: 1 !important;
  border-color: #057A55 !important;
  border-color: rgba(5, 122, 85, var(--border-opacity)) !important;
}
.border-green-700 {
  --border-opacity: 1 !important;
  border-color: #046C4E !important;
  border-color: rgba(4, 108, 78, var(--border-opacity)) !important;
}
.border-green-800 {
  --border-opacity: 1 !important;
  border-color: #03543F !important;
  border-color: rgba(3, 84, 63, var(--border-opacity)) !important;
}
.border-green-900 {
  --border-opacity: 1 !important;
  border-color: #014737 !important;
  border-color: rgba(1, 71, 55, var(--border-opacity)) !important;
}
.border-green {
  --border-opacity: 1 !important;
  border-color: #0E9F6E !important;
  border-color: rgba(14, 159, 110, var(--border-opacity)) !important;
}
.border-teal-50 {
  --border-opacity: 1 !important;
  border-color: #EDFAFA !important;
  border-color: rgba(237, 250, 250, var(--border-opacity)) !important;
}
.border-teal-100 {
  --border-opacity: 1 !important;
  border-color: #D5F5F6 !important;
  border-color: rgba(213, 245, 246, var(--border-opacity)) !important;
}
.border-teal-200 {
  --border-opacity: 1 !important;
  border-color: #AFECEF !important;
  border-color: rgba(175, 236, 239, var(--border-opacity)) !important;
}
.border-teal-300 {
  --border-opacity: 1 !important;
  border-color: #7EDCE2 !important;
  border-color: rgba(126, 220, 226, var(--border-opacity)) !important;
}
.border-teal-400 {
  --border-opacity: 1 !important;
  border-color: #16BDCA !important;
  border-color: rgba(22, 189, 202, var(--border-opacity)) !important;
}
.border-teal-500 {
  --border-opacity: 1 !important;
  border-color: #0694A2 !important;
  border-color: rgba(6, 148, 162, var(--border-opacity)) !important;
}
.border-teal-600 {
  --border-opacity: 1 !important;
  border-color: #047481 !important;
  border-color: rgba(4, 116, 129, var(--border-opacity)) !important;
}
.border-teal-700 {
  --border-opacity: 1 !important;
  border-color: #036672 !important;
  border-color: rgba(3, 102, 114, var(--border-opacity)) !important;
}
.border-teal-800 {
  --border-opacity: 1 !important;
  border-color: #05505C !important;
  border-color: rgba(5, 80, 92, var(--border-opacity)) !important;
}
.border-teal-900 {
  --border-opacity: 1 !important;
  border-color: #014451 !important;
  border-color: rgba(1, 68, 81, var(--border-opacity)) !important;
}
.border-teal {
  --border-opacity: 1 !important;
  border-color: #0694A2 !important;
  border-color: rgba(6, 148, 162, var(--border-opacity)) !important;
}
.border-blue-50 {
  --border-opacity: 1 !important;
  border-color: #EBF5FF !important;
  border-color: rgba(235, 245, 255, var(--border-opacity)) !important;
}
.border-blue-100 {
  --border-opacity: 1 !important;
  border-color: #E1EFFE !important;
  border-color: rgba(225, 239, 254, var(--border-opacity)) !important;
}
.border-blue-200 {
  --border-opacity: 1 !important;
  border-color: #C3DDFD !important;
  border-color: rgba(195, 221, 253, var(--border-opacity)) !important;
}
.border-blue-300 {
  --border-opacity: 1 !important;
  border-color: #A4CAFE !important;
  border-color: rgba(164, 202, 254, var(--border-opacity)) !important;
}
.border-blue-400 {
  --border-opacity: 1 !important;
  border-color: #76A9FA !important;
  border-color: rgba(118, 169, 250, var(--border-opacity)) !important;
}
.border-blue-500 {
  --border-opacity: 1 !important;
  border-color: #3F83F8 !important;
  border-color: rgba(63, 131, 248, var(--border-opacity)) !important;
}
.border-blue-600 {
  --border-opacity: 1 !important;
  border-color: #1C64F2 !important;
  border-color: rgba(28, 100, 242, var(--border-opacity)) !important;
}
.border-blue-700 {
  --border-opacity: 1 !important;
  border-color: #1A56DB !important;
  border-color: rgba(26, 86, 219, var(--border-opacity)) !important;
}
.border-blue-800 {
  --border-opacity: 1 !important;
  border-color: #1E429F !important;
  border-color: rgba(30, 66, 159, var(--border-opacity)) !important;
}
.border-blue-900 {
  --border-opacity: 1 !important;
  border-color: #233876 !important;
  border-color: rgba(35, 56, 118, var(--border-opacity)) !important;
}
.border-blue {
  --border-opacity: 1 !important;
  border-color: #3F83F8 !important;
  border-color: rgba(63, 131, 248, var(--border-opacity)) !important;
}
.border-indigo-50 {
  --border-opacity: 1 !important;
  border-color: #F0F5FF !important;
  border-color: rgba(240, 245, 255, var(--border-opacity)) !important;
}
.border-indigo-100 {
  --border-opacity: 1 !important;
  border-color: #E5EDFF !important;
  border-color: rgba(229, 237, 255, var(--border-opacity)) !important;
}
.border-indigo-200 {
  --border-opacity: 1 !important;
  border-color: #CDDBFE !important;
  border-color: rgba(205, 219, 254, var(--border-opacity)) !important;
}
.border-indigo-300 {
  --border-opacity: 1 !important;
  border-color: #B4C6FC !important;
  border-color: rgba(180, 198, 252, var(--border-opacity)) !important;
}
.border-indigo-400 {
  --border-opacity: 1 !important;
  border-color: #8DA2FB !important;
  border-color: rgba(141, 162, 251, var(--border-opacity)) !important;
}
.border-indigo-500 {
  --border-opacity: 1 !important;
  border-color: #6875F5 !important;
  border-color: rgba(104, 117, 245, var(--border-opacity)) !important;
}
.border-indigo-600 {
  --border-opacity: 1 !important;
  border-color: #5850EC !important;
  border-color: rgba(88, 80, 236, var(--border-opacity)) !important;
}
.border-indigo-700 {
  --border-opacity: 1 !important;
  border-color: #5145CD !important;
  border-color: rgba(81, 69, 205, var(--border-opacity)) !important;
}
.border-indigo-800 {
  --border-opacity: 1 !important;
  border-color: #42389D !important;
  border-color: rgba(66, 56, 157, var(--border-opacity)) !important;
}
.border-indigo-900 {
  --border-opacity: 1 !important;
  border-color: #362F78 !important;
  border-color: rgba(54, 47, 120, var(--border-opacity)) !important;
}
.border-indigo {
  --border-opacity: 1 !important;
  border-color: #6875F5 !important;
  border-color: rgba(104, 117, 245, var(--border-opacity)) !important;
}
.border-purple-50 {
  --border-opacity: 1 !important;
  border-color: #F6F5FF !important;
  border-color: rgba(246, 245, 255, var(--border-opacity)) !important;
}
.border-purple-100 {
  --border-opacity: 1 !important;
  border-color: #EDEBFE !important;
  border-color: rgba(237, 235, 254, var(--border-opacity)) !important;
}
.border-purple-200 {
  --border-opacity: 1 !important;
  border-color: #DCD7FE !important;
  border-color: rgba(220, 215, 254, var(--border-opacity)) !important;
}
.border-purple-300 {
  --border-opacity: 1 !important;
  border-color: #CABFFD !important;
  border-color: rgba(202, 191, 253, var(--border-opacity)) !important;
}
.border-purple-400 {
  --border-opacity: 1 !important;
  border-color: #AC94FA !important;
  border-color: rgba(172, 148, 250, var(--border-opacity)) !important;
}
.border-purple-500 {
  --border-opacity: 1 !important;
  border-color: #9061F9 !important;
  border-color: rgba(144, 97, 249, var(--border-opacity)) !important;
}
.border-purple-600 {
  --border-opacity: 1 !important;
  border-color: #7E3AF2 !important;
  border-color: rgba(126, 58, 242, var(--border-opacity)) !important;
}
.border-purple-700 {
  --border-opacity: 1 !important;
  border-color: #6C2BD9 !important;
  border-color: rgba(108, 43, 217, var(--border-opacity)) !important;
}
.border-purple-800 {
  --border-opacity: 1 !important;
  border-color: #5521B5 !important;
  border-color: rgba(85, 33, 181, var(--border-opacity)) !important;
}
.border-purple-900 {
  --border-opacity: 1 !important;
  border-color: #4A1D96 !important;
  border-color: rgba(74, 29, 150, var(--border-opacity)) !important;
}
.border-purple {
  --border-opacity: 1 !important;
  border-color: #9061F9 !important;
  border-color: rgba(144, 97, 249, var(--border-opacity)) !important;
}
.border-pink-50 {
  --border-opacity: 1 !important;
  border-color: #FDF2F8 !important;
  border-color: rgba(253, 242, 248, var(--border-opacity)) !important;
}
.border-pink-100 {
  --border-opacity: 1 !important;
  border-color: #FCE8F3 !important;
  border-color: rgba(252, 232, 243, var(--border-opacity)) !important;
}
.border-pink-200 {
  --border-opacity: 1 !important;
  border-color: #FAD1E8 !important;
  border-color: rgba(250, 209, 232, var(--border-opacity)) !important;
}
.border-pink-300 {
  --border-opacity: 1 !important;
  border-color: #F8B4D9 !important;
  border-color: rgba(248, 180, 217, var(--border-opacity)) !important;
}
.border-pink-400 {
  --border-opacity: 1 !important;
  border-color: #F17EB8 !important;
  border-color: rgba(241, 126, 184, var(--border-opacity)) !important;
}
.border-pink-500 {
  --border-opacity: 1 !important;
  border-color: #E74694 !important;
  border-color: rgba(231, 70, 148, var(--border-opacity)) !important;
}
.border-pink-600 {
  --border-opacity: 1 !important;
  border-color: #D61F69 !important;
  border-color: rgba(214, 31, 105, var(--border-opacity)) !important;
}
.border-pink-700 {
  --border-opacity: 1 !important;
  border-color: #BF125D !important;
  border-color: rgba(191, 18, 93, var(--border-opacity)) !important;
}
.border-pink-800 {
  --border-opacity: 1 !important;
  border-color: #99154B !important;
  border-color: rgba(153, 21, 75, var(--border-opacity)) !important;
}
.border-pink-900 {
  --border-opacity: 1 !important;
  border-color: #751A3D !important;
  border-color: rgba(117, 26, 61, var(--border-opacity)) !important;
}
.border-pink {
  --border-opacity: 1 !important;
  border-color: #E74694 !important;
  border-color: rgba(231, 70, 148, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-current, [class*=theme-dark] .dark\:border-current, [class*=theme-light].light\:border-current, [class*=theme-light] .light\:border-current {
  border-color: currentColor !important;
}
[class*=theme-dark].dark\:border-transparent, [class*=theme-dark] .dark\:border-transparent, [class*=theme-light].light\:border-transparent, [class*=theme-light] .light\:border-transparent {
  border-color: transparent !important;
}
[class*=theme-dark].dark\:border-white, [class*=theme-dark] .dark\:border-white, [class*=theme-light].light\:border-white, [class*=theme-light] .light\:border-white {
  --border-opacity: 1 !important;
  border-color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-black, [class*=theme-dark] .dark\:border-black, [class*=theme-light].light\:border-black, [class*=theme-light] .light\:border-black {
  --border-opacity: 1 !important;
  border-color: #000000 !important;
  border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-50, [class*=theme-dark] .dark\:border-gray-50, [class*=theme-light].light\:border-gray-50, [class*=theme-light] .light\:border-gray-50 {
  --border-opacity: 1 !important;
  border-color: #F9FAFB !important;
  border-color: rgba(249, 250, 251, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-100, [class*=theme-dark] .dark\:border-gray-100, [class*=theme-light].light\:border-gray-100, [class*=theme-light] .light\:border-gray-100 {
  --border-opacity: 1 !important;
  border-color: #F4F5F7 !important;
  border-color: rgba(244, 245, 247, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-200, [class*=theme-dark] .dark\:border-gray-200, [class*=theme-light].light\:border-gray-200, [class*=theme-light] .light\:border-gray-200 {
  --border-opacity: 1 !important;
  border-color: #E5E7EB !important;
  border-color: rgba(229, 231, 235, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-300, [class*=theme-dark] .dark\:border-gray-300, [class*=theme-light].light\:border-gray-300, [class*=theme-light] .light\:border-gray-300 {
  --border-opacity: 1 !important;
  border-color: #D2D6DC !important;
  border-color: rgba(210, 214, 220, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-400, [class*=theme-dark] .dark\:border-gray-400, [class*=theme-light].light\:border-gray-400, [class*=theme-light] .light\:border-gray-400 {
  --border-opacity: 1 !important;
  border-color: #9FA6B2 !important;
  border-color: rgba(159, 166, 178, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-500, [class*=theme-dark] .dark\:border-gray-500, [class*=theme-light].light\:border-gray-500, [class*=theme-light] .light\:border-gray-500 {
  --border-opacity: 1 !important;
  border-color: #6B7280 !important;
  border-color: rgba(107, 114, 128, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-600, [class*=theme-dark] .dark\:border-gray-600, [class*=theme-light].light\:border-gray-600, [class*=theme-light] .light\:border-gray-600 {
  --border-opacity: 1 !important;
  border-color: #4B5563 !important;
  border-color: rgba(75, 85, 99, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-700, [class*=theme-dark] .dark\:border-gray-700, [class*=theme-light].light\:border-gray-700, [class*=theme-light] .light\:border-gray-700 {
  --border-opacity: 1 !important;
  border-color: #374151 !important;
  border-color: rgba(55, 65, 81, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-800, [class*=theme-dark] .dark\:border-gray-800, [class*=theme-light].light\:border-gray-800, [class*=theme-light] .light\:border-gray-800 {
  --border-opacity: 1 !important;
  border-color: #252F3F !important;
  border-color: rgba(37, 47, 63, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray-900, [class*=theme-dark] .dark\:border-gray-900, [class*=theme-light].light\:border-gray-900, [class*=theme-light] .light\:border-gray-900 {
  --border-opacity: 1 !important;
  border-color: #161E2E !important;
  border-color: rgba(22, 30, 46, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-gray, [class*=theme-dark] .dark\:border-gray, [class*=theme-light].light\:border-gray, [class*=theme-light] .light\:border-gray {
  --border-opacity: 1 !important;
  border-color: #6B7280 !important;
  border-color: rgba(107, 114, 128, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-50, [class*=theme-dark] .dark\:border-cool-gray-50, [class*=theme-light].light\:border-cool-gray-50, [class*=theme-light] .light\:border-cool-gray-50 {
  --border-opacity: 1 !important;
  border-color: #FBFDFE !important;
  border-color: rgba(251, 253, 254, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-100, [class*=theme-dark] .dark\:border-cool-gray-100, [class*=theme-light].light\:border-cool-gray-100, [class*=theme-light] .light\:border-cool-gray-100 {
  --border-opacity: 1 !important;
  border-color: #F1F5F9 !important;
  border-color: rgba(241, 245, 249, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-200, [class*=theme-dark] .dark\:border-cool-gray-200, [class*=theme-light].light\:border-cool-gray-200, [class*=theme-light] .light\:border-cool-gray-200 {
  --border-opacity: 1 !important;
  border-color: #E2E8F0 !important;
  border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-300, [class*=theme-dark] .dark\:border-cool-gray-300, [class*=theme-light].light\:border-cool-gray-300, [class*=theme-light] .light\:border-cool-gray-300 {
  --border-opacity: 1 !important;
  border-color: #CFD8E3 !important;
  border-color: rgba(207, 216, 227, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-400, [class*=theme-dark] .dark\:border-cool-gray-400, [class*=theme-light].light\:border-cool-gray-400, [class*=theme-light] .light\:border-cool-gray-400 {
  --border-opacity: 1 !important;
  border-color: #97A6BA !important;
  border-color: rgba(151, 166, 186, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-500, [class*=theme-dark] .dark\:border-cool-gray-500, [class*=theme-light].light\:border-cool-gray-500, [class*=theme-light] .light\:border-cool-gray-500 {
  --border-opacity: 1 !important;
  border-color: #64748B !important;
  border-color: rgba(100, 116, 139, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-600, [class*=theme-dark] .dark\:border-cool-gray-600, [class*=theme-light].light\:border-cool-gray-600, [class*=theme-light] .light\:border-cool-gray-600 {
  --border-opacity: 1 !important;
  border-color: #475569 !important;
  border-color: rgba(71, 85, 105, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-700, [class*=theme-dark] .dark\:border-cool-gray-700, [class*=theme-light].light\:border-cool-gray-700, [class*=theme-light] .light\:border-cool-gray-700 {
  --border-opacity: 1 !important;
  border-color: #364152 !important;
  border-color: rgba(54, 65, 82, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-800, [class*=theme-dark] .dark\:border-cool-gray-800, [class*=theme-light].light\:border-cool-gray-800, [class*=theme-light] .light\:border-cool-gray-800 {
  --border-opacity: 1 !important;
  border-color: #27303F !important;
  border-color: rgba(39, 48, 63, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray-900, [class*=theme-dark] .dark\:border-cool-gray-900, [class*=theme-light].light\:border-cool-gray-900, [class*=theme-light] .light\:border-cool-gray-900 {
  --border-opacity: 1 !important;
  border-color: #1A202E !important;
  border-color: rgba(26, 32, 46, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-cool-gray, [class*=theme-dark] .dark\:border-cool-gray, [class*=theme-light].light\:border-cool-gray, [class*=theme-light] .light\:border-cool-gray {
  --border-opacity: 1 !important;
  border-color: #64748B !important;
  border-color: rgba(100, 116, 139, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-50, [class*=theme-dark] .dark\:border-red-50, [class*=theme-light].light\:border-red-50, [class*=theme-light] .light\:border-red-50 {
  --border-opacity: 1 !important;
  border-color: #FDF2F2 !important;
  border-color: rgba(253, 242, 242, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-100, [class*=theme-dark] .dark\:border-red-100, [class*=theme-light].light\:border-red-100, [class*=theme-light] .light\:border-red-100 {
  --border-opacity: 1 !important;
  border-color: #FDE8E8 !important;
  border-color: rgba(253, 232, 232, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-200, [class*=theme-dark] .dark\:border-red-200, [class*=theme-light].light\:border-red-200, [class*=theme-light] .light\:border-red-200 {
  --border-opacity: 1 !important;
  border-color: #FBD5D5 !important;
  border-color: rgba(251, 213, 213, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-300, [class*=theme-dark] .dark\:border-red-300, [class*=theme-light].light\:border-red-300, [class*=theme-light] .light\:border-red-300 {
  --border-opacity: 1 !important;
  border-color: #F8B4B4 !important;
  border-color: rgba(248, 180, 180, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-400, [class*=theme-dark] .dark\:border-red-400, [class*=theme-light].light\:border-red-400, [class*=theme-light] .light\:border-red-400 {
  --border-opacity: 1 !important;
  border-color: #F98080 !important;
  border-color: rgba(249, 128, 128, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-500, [class*=theme-dark] .dark\:border-red-500, [class*=theme-light].light\:border-red-500, [class*=theme-light] .light\:border-red-500 {
  --border-opacity: 1 !important;
  border-color: #F05252 !important;
  border-color: rgba(240, 82, 82, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-600, [class*=theme-dark] .dark\:border-red-600, [class*=theme-light].light\:border-red-600, [class*=theme-light] .light\:border-red-600 {
  --border-opacity: 1 !important;
  border-color: #E02424 !important;
  border-color: rgba(224, 36, 36, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-700, [class*=theme-dark] .dark\:border-red-700, [class*=theme-light].light\:border-red-700, [class*=theme-light] .light\:border-red-700 {
  --border-opacity: 1 !important;
  border-color: #C81E1E !important;
  border-color: rgba(200, 30, 30, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-800, [class*=theme-dark] .dark\:border-red-800, [class*=theme-light].light\:border-red-800, [class*=theme-light] .light\:border-red-800 {
  --border-opacity: 1 !important;
  border-color: #9B1C1C !important;
  border-color: rgba(155, 28, 28, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red-900, [class*=theme-dark] .dark\:border-red-900, [class*=theme-light].light\:border-red-900, [class*=theme-light] .light\:border-red-900 {
  --border-opacity: 1 !important;
  border-color: #771D1D !important;
  border-color: rgba(119, 29, 29, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-red, [class*=theme-dark] .dark\:border-red, [class*=theme-light].light\:border-red, [class*=theme-light] .light\:border-red {
  --border-opacity: 1 !important;
  border-color: #F05252 !important;
  border-color: rgba(240, 82, 82, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-50, [class*=theme-dark] .dark\:border-orange-50, [class*=theme-light].light\:border-orange-50, [class*=theme-light] .light\:border-orange-50 {
  --border-opacity: 1 !important;
  border-color: #FFF8F1 !important;
  border-color: rgba(255, 248, 241, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-100, [class*=theme-dark] .dark\:border-orange-100, [class*=theme-light].light\:border-orange-100, [class*=theme-light] .light\:border-orange-100 {
  --border-opacity: 1 !important;
  border-color: #FEECDC !important;
  border-color: rgba(254, 236, 220, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-200, [class*=theme-dark] .dark\:border-orange-200, [class*=theme-light].light\:border-orange-200, [class*=theme-light] .light\:border-orange-200 {
  --border-opacity: 1 !important;
  border-color: #FCD9BD !important;
  border-color: rgba(252, 217, 189, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-300, [class*=theme-dark] .dark\:border-orange-300, [class*=theme-light].light\:border-orange-300, [class*=theme-light] .light\:border-orange-300 {
  --border-opacity: 1 !important;
  border-color: #FDBA8C !important;
  border-color: rgba(253, 186, 140, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-400, [class*=theme-dark] .dark\:border-orange-400, [class*=theme-light].light\:border-orange-400, [class*=theme-light] .light\:border-orange-400 {
  --border-opacity: 1 !important;
  border-color: #FF8A4C !important;
  border-color: rgba(255, 138, 76, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-500, [class*=theme-dark] .dark\:border-orange-500, [class*=theme-light].light\:border-orange-500, [class*=theme-light] .light\:border-orange-500 {
  --border-opacity: 1 !important;
  border-color: #FF5A1F !important;
  border-color: rgba(255, 90, 31, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-600, [class*=theme-dark] .dark\:border-orange-600, [class*=theme-light].light\:border-orange-600, [class*=theme-light] .light\:border-orange-600 {
  --border-opacity: 1 !important;
  border-color: #D03801 !important;
  border-color: rgba(208, 56, 1, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-700, [class*=theme-dark] .dark\:border-orange-700, [class*=theme-light].light\:border-orange-700, [class*=theme-light] .light\:border-orange-700 {
  --border-opacity: 1 !important;
  border-color: #B43403 !important;
  border-color: rgba(180, 52, 3, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-800, [class*=theme-dark] .dark\:border-orange-800, [class*=theme-light].light\:border-orange-800, [class*=theme-light] .light\:border-orange-800 {
  --border-opacity: 1 !important;
  border-color: #8A2C0D !important;
  border-color: rgba(138, 44, 13, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange-900, [class*=theme-dark] .dark\:border-orange-900, [class*=theme-light].light\:border-orange-900, [class*=theme-light] .light\:border-orange-900 {
  --border-opacity: 1 !important;
  border-color: #771D1D !important;
  border-color: rgba(119, 29, 29, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-orange, [class*=theme-dark] .dark\:border-orange, [class*=theme-light].light\:border-orange, [class*=theme-light] .light\:border-orange {
  --border-opacity: 1 !important;
  border-color: #FF5A1F !important;
  border-color: rgba(255, 90, 31, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-50, [class*=theme-dark] .dark\:border-yellow-50, [class*=theme-light].light\:border-yellow-50, [class*=theme-light] .light\:border-yellow-50 {
  --border-opacity: 1 !important;
  border-color: #FDFDEA !important;
  border-color: rgba(253, 253, 234, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-100, [class*=theme-dark] .dark\:border-yellow-100, [class*=theme-light].light\:border-yellow-100, [class*=theme-light] .light\:border-yellow-100 {
  --border-opacity: 1 !important;
  border-color: #FDF6B2 !important;
  border-color: rgba(253, 246, 178, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-200, [class*=theme-dark] .dark\:border-yellow-200, [class*=theme-light].light\:border-yellow-200, [class*=theme-light] .light\:border-yellow-200 {
  --border-opacity: 1 !important;
  border-color: #FCE96A !important;
  border-color: rgba(252, 233, 106, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-300, [class*=theme-dark] .dark\:border-yellow-300, [class*=theme-light].light\:border-yellow-300, [class*=theme-light] .light\:border-yellow-300 {
  --border-opacity: 1 !important;
  border-color: #FACA15 !important;
  border-color: rgba(250, 202, 21, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-400, [class*=theme-dark] .dark\:border-yellow-400, [class*=theme-light].light\:border-yellow-400, [class*=theme-light] .light\:border-yellow-400 {
  --border-opacity: 1 !important;
  border-color: #E3A008 !important;
  border-color: rgba(227, 160, 8, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-500, [class*=theme-dark] .dark\:border-yellow-500, [class*=theme-light].light\:border-yellow-500, [class*=theme-light] .light\:border-yellow-500 {
  --border-opacity: 1 !important;
  border-color: #C27803 !important;
  border-color: rgba(194, 120, 3, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-600, [class*=theme-dark] .dark\:border-yellow-600, [class*=theme-light].light\:border-yellow-600, [class*=theme-light] .light\:border-yellow-600 {
  --border-opacity: 1 !important;
  border-color: #9F580A !important;
  border-color: rgba(159, 88, 10, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-700, [class*=theme-dark] .dark\:border-yellow-700, [class*=theme-light].light\:border-yellow-700, [class*=theme-light] .light\:border-yellow-700 {
  --border-opacity: 1 !important;
  border-color: #8E4B10 !important;
  border-color: rgba(142, 75, 16, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-800, [class*=theme-dark] .dark\:border-yellow-800, [class*=theme-light].light\:border-yellow-800, [class*=theme-light] .light\:border-yellow-800 {
  --border-opacity: 1 !important;
  border-color: #723B13 !important;
  border-color: rgba(114, 59, 19, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow-900, [class*=theme-dark] .dark\:border-yellow-900, [class*=theme-light].light\:border-yellow-900, [class*=theme-light] .light\:border-yellow-900 {
  --border-opacity: 1 !important;
  border-color: #633112 !important;
  border-color: rgba(99, 49, 18, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-yellow, [class*=theme-dark] .dark\:border-yellow, [class*=theme-light].light\:border-yellow, [class*=theme-light] .light\:border-yellow {
  --border-opacity: 1 !important;
  border-color: #C27803 !important;
  border-color: rgba(194, 120, 3, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-50, [class*=theme-dark] .dark\:border-green-50, [class*=theme-light].light\:border-green-50, [class*=theme-light] .light\:border-green-50 {
  --border-opacity: 1 !important;
  border-color: #F3FAF7 !important;
  border-color: rgba(243, 250, 247, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-100, [class*=theme-dark] .dark\:border-green-100, [class*=theme-light].light\:border-green-100, [class*=theme-light] .light\:border-green-100 {
  --border-opacity: 1 !important;
  border-color: #DEF7EC !important;
  border-color: rgba(222, 247, 236, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-200, [class*=theme-dark] .dark\:border-green-200, [class*=theme-light].light\:border-green-200, [class*=theme-light] .light\:border-green-200 {
  --border-opacity: 1 !important;
  border-color: #BCF0DA !important;
  border-color: rgba(188, 240, 218, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-300, [class*=theme-dark] .dark\:border-green-300, [class*=theme-light].light\:border-green-300, [class*=theme-light] .light\:border-green-300 {
  --border-opacity: 1 !important;
  border-color: #84E1BC !important;
  border-color: rgba(132, 225, 188, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-400, [class*=theme-dark] .dark\:border-green-400, [class*=theme-light].light\:border-green-400, [class*=theme-light] .light\:border-green-400 {
  --border-opacity: 1 !important;
  border-color: #31C48D !important;
  border-color: rgba(49, 196, 141, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-500, [class*=theme-dark] .dark\:border-green-500, [class*=theme-light].light\:border-green-500, [class*=theme-light] .light\:border-green-500 {
  --border-opacity: 1 !important;
  border-color: #0E9F6E !important;
  border-color: rgba(14, 159, 110, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-600, [class*=theme-dark] .dark\:border-green-600, [class*=theme-light].light\:border-green-600, [class*=theme-light] .light\:border-green-600 {
  --border-opacity: 1 !important;
  border-color: #057A55 !important;
  border-color: rgba(5, 122, 85, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-700, [class*=theme-dark] .dark\:border-green-700, [class*=theme-light].light\:border-green-700, [class*=theme-light] .light\:border-green-700 {
  --border-opacity: 1 !important;
  border-color: #046C4E !important;
  border-color: rgba(4, 108, 78, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-800, [class*=theme-dark] .dark\:border-green-800, [class*=theme-light].light\:border-green-800, [class*=theme-light] .light\:border-green-800 {
  --border-opacity: 1 !important;
  border-color: #03543F !important;
  border-color: rgba(3, 84, 63, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green-900, [class*=theme-dark] .dark\:border-green-900, [class*=theme-light].light\:border-green-900, [class*=theme-light] .light\:border-green-900 {
  --border-opacity: 1 !important;
  border-color: #014737 !important;
  border-color: rgba(1, 71, 55, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-green, [class*=theme-dark] .dark\:border-green, [class*=theme-light].light\:border-green, [class*=theme-light] .light\:border-green {
  --border-opacity: 1 !important;
  border-color: #0E9F6E !important;
  border-color: rgba(14, 159, 110, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-50, [class*=theme-dark] .dark\:border-teal-50, [class*=theme-light].light\:border-teal-50, [class*=theme-light] .light\:border-teal-50 {
  --border-opacity: 1 !important;
  border-color: #EDFAFA !important;
  border-color: rgba(237, 250, 250, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-100, [class*=theme-dark] .dark\:border-teal-100, [class*=theme-light].light\:border-teal-100, [class*=theme-light] .light\:border-teal-100 {
  --border-opacity: 1 !important;
  border-color: #D5F5F6 !important;
  border-color: rgba(213, 245, 246, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-200, [class*=theme-dark] .dark\:border-teal-200, [class*=theme-light].light\:border-teal-200, [class*=theme-light] .light\:border-teal-200 {
  --border-opacity: 1 !important;
  border-color: #AFECEF !important;
  border-color: rgba(175, 236, 239, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-300, [class*=theme-dark] .dark\:border-teal-300, [class*=theme-light].light\:border-teal-300, [class*=theme-light] .light\:border-teal-300 {
  --border-opacity: 1 !important;
  border-color: #7EDCE2 !important;
  border-color: rgba(126, 220, 226, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-400, [class*=theme-dark] .dark\:border-teal-400, [class*=theme-light].light\:border-teal-400, [class*=theme-light] .light\:border-teal-400 {
  --border-opacity: 1 !important;
  border-color: #16BDCA !important;
  border-color: rgba(22, 189, 202, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-500, [class*=theme-dark] .dark\:border-teal-500, [class*=theme-light].light\:border-teal-500, [class*=theme-light] .light\:border-teal-500 {
  --border-opacity: 1 !important;
  border-color: #0694A2 !important;
  border-color: rgba(6, 148, 162, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-600, [class*=theme-dark] .dark\:border-teal-600, [class*=theme-light].light\:border-teal-600, [class*=theme-light] .light\:border-teal-600 {
  --border-opacity: 1 !important;
  border-color: #047481 !important;
  border-color: rgba(4, 116, 129, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-700, [class*=theme-dark] .dark\:border-teal-700, [class*=theme-light].light\:border-teal-700, [class*=theme-light] .light\:border-teal-700 {
  --border-opacity: 1 !important;
  border-color: #036672 !important;
  border-color: rgba(3, 102, 114, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-800, [class*=theme-dark] .dark\:border-teal-800, [class*=theme-light].light\:border-teal-800, [class*=theme-light] .light\:border-teal-800 {
  --border-opacity: 1 !important;
  border-color: #05505C !important;
  border-color: rgba(5, 80, 92, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal-900, [class*=theme-dark] .dark\:border-teal-900, [class*=theme-light].light\:border-teal-900, [class*=theme-light] .light\:border-teal-900 {
  --border-opacity: 1 !important;
  border-color: #014451 !important;
  border-color: rgba(1, 68, 81, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-teal, [class*=theme-dark] .dark\:border-teal, [class*=theme-light].light\:border-teal, [class*=theme-light] .light\:border-teal {
  --border-opacity: 1 !important;
  border-color: #0694A2 !important;
  border-color: rgba(6, 148, 162, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-50, [class*=theme-dark] .dark\:border-blue-50, [class*=theme-light].light\:border-blue-50, [class*=theme-light] .light\:border-blue-50 {
  --border-opacity: 1 !important;
  border-color: #EBF5FF !important;
  border-color: rgba(235, 245, 255, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-100, [class*=theme-dark] .dark\:border-blue-100, [class*=theme-light].light\:border-blue-100, [class*=theme-light] .light\:border-blue-100 {
  --border-opacity: 1 !important;
  border-color: #E1EFFE !important;
  border-color: rgba(225, 239, 254, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-200, [class*=theme-dark] .dark\:border-blue-200, [class*=theme-light].light\:border-blue-200, [class*=theme-light] .light\:border-blue-200 {
  --border-opacity: 1 !important;
  border-color: #C3DDFD !important;
  border-color: rgba(195, 221, 253, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-300, [class*=theme-dark] .dark\:border-blue-300, [class*=theme-light].light\:border-blue-300, [class*=theme-light] .light\:border-blue-300 {
  --border-opacity: 1 !important;
  border-color: #A4CAFE !important;
  border-color: rgba(164, 202, 254, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-400, [class*=theme-dark] .dark\:border-blue-400, [class*=theme-light].light\:border-blue-400, [class*=theme-light] .light\:border-blue-400 {
  --border-opacity: 1 !important;
  border-color: #76A9FA !important;
  border-color: rgba(118, 169, 250, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-500, [class*=theme-dark] .dark\:border-blue-500, [class*=theme-light].light\:border-blue-500, [class*=theme-light] .light\:border-blue-500 {
  --border-opacity: 1 !important;
  border-color: #3F83F8 !important;
  border-color: rgba(63, 131, 248, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-600, [class*=theme-dark] .dark\:border-blue-600, [class*=theme-light].light\:border-blue-600, [class*=theme-light] .light\:border-blue-600 {
  --border-opacity: 1 !important;
  border-color: #1C64F2 !important;
  border-color: rgba(28, 100, 242, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-700, [class*=theme-dark] .dark\:border-blue-700, [class*=theme-light].light\:border-blue-700, [class*=theme-light] .light\:border-blue-700 {
  --border-opacity: 1 !important;
  border-color: #1A56DB !important;
  border-color: rgba(26, 86, 219, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-800, [class*=theme-dark] .dark\:border-blue-800, [class*=theme-light].light\:border-blue-800, [class*=theme-light] .light\:border-blue-800 {
  --border-opacity: 1 !important;
  border-color: #1E429F !important;
  border-color: rgba(30, 66, 159, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue-900, [class*=theme-dark] .dark\:border-blue-900, [class*=theme-light].light\:border-blue-900, [class*=theme-light] .light\:border-blue-900 {
  --border-opacity: 1 !important;
  border-color: #233876 !important;
  border-color: rgba(35, 56, 118, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-blue, [class*=theme-dark] .dark\:border-blue, [class*=theme-light].light\:border-blue, [class*=theme-light] .light\:border-blue {
  --border-opacity: 1 !important;
  border-color: #3F83F8 !important;
  border-color: rgba(63, 131, 248, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-50, [class*=theme-dark] .dark\:border-indigo-50, [class*=theme-light].light\:border-indigo-50, [class*=theme-light] .light\:border-indigo-50 {
  --border-opacity: 1 !important;
  border-color: #F0F5FF !important;
  border-color: rgba(240, 245, 255, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-100, [class*=theme-dark] .dark\:border-indigo-100, [class*=theme-light].light\:border-indigo-100, [class*=theme-light] .light\:border-indigo-100 {
  --border-opacity: 1 !important;
  border-color: #E5EDFF !important;
  border-color: rgba(229, 237, 255, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-200, [class*=theme-dark] .dark\:border-indigo-200, [class*=theme-light].light\:border-indigo-200, [class*=theme-light] .light\:border-indigo-200 {
  --border-opacity: 1 !important;
  border-color: #CDDBFE !important;
  border-color: rgba(205, 219, 254, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-300, [class*=theme-dark] .dark\:border-indigo-300, [class*=theme-light].light\:border-indigo-300, [class*=theme-light] .light\:border-indigo-300 {
  --border-opacity: 1 !important;
  border-color: #B4C6FC !important;
  border-color: rgba(180, 198, 252, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-400, [class*=theme-dark] .dark\:border-indigo-400, [class*=theme-light].light\:border-indigo-400, [class*=theme-light] .light\:border-indigo-400 {
  --border-opacity: 1 !important;
  border-color: #8DA2FB !important;
  border-color: rgba(141, 162, 251, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-500, [class*=theme-dark] .dark\:border-indigo-500, [class*=theme-light].light\:border-indigo-500, [class*=theme-light] .light\:border-indigo-500 {
  --border-opacity: 1 !important;
  border-color: #6875F5 !important;
  border-color: rgba(104, 117, 245, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-600, [class*=theme-dark] .dark\:border-indigo-600, [class*=theme-light].light\:border-indigo-600, [class*=theme-light] .light\:border-indigo-600 {
  --border-opacity: 1 !important;
  border-color: #5850EC !important;
  border-color: rgba(88, 80, 236, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-700, [class*=theme-dark] .dark\:border-indigo-700, [class*=theme-light].light\:border-indigo-700, [class*=theme-light] .light\:border-indigo-700 {
  --border-opacity: 1 !important;
  border-color: #5145CD !important;
  border-color: rgba(81, 69, 205, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-800, [class*=theme-dark] .dark\:border-indigo-800, [class*=theme-light].light\:border-indigo-800, [class*=theme-light] .light\:border-indigo-800 {
  --border-opacity: 1 !important;
  border-color: #42389D !important;
  border-color: rgba(66, 56, 157, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo-900, [class*=theme-dark] .dark\:border-indigo-900, [class*=theme-light].light\:border-indigo-900, [class*=theme-light] .light\:border-indigo-900 {
  --border-opacity: 1 !important;
  border-color: #362F78 !important;
  border-color: rgba(54, 47, 120, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-indigo, [class*=theme-dark] .dark\:border-indigo, [class*=theme-light].light\:border-indigo, [class*=theme-light] .light\:border-indigo {
  --border-opacity: 1 !important;
  border-color: #6875F5 !important;
  border-color: rgba(104, 117, 245, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-50, [class*=theme-dark] .dark\:border-purple-50, [class*=theme-light].light\:border-purple-50, [class*=theme-light] .light\:border-purple-50 {
  --border-opacity: 1 !important;
  border-color: #F6F5FF !important;
  border-color: rgba(246, 245, 255, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-100, [class*=theme-dark] .dark\:border-purple-100, [class*=theme-light].light\:border-purple-100, [class*=theme-light] .light\:border-purple-100 {
  --border-opacity: 1 !important;
  border-color: #EDEBFE !important;
  border-color: rgba(237, 235, 254, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-200, [class*=theme-dark] .dark\:border-purple-200, [class*=theme-light].light\:border-purple-200, [class*=theme-light] .light\:border-purple-200 {
  --border-opacity: 1 !important;
  border-color: #DCD7FE !important;
  border-color: rgba(220, 215, 254, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-300, [class*=theme-dark] .dark\:border-purple-300, [class*=theme-light].light\:border-purple-300, [class*=theme-light] .light\:border-purple-300 {
  --border-opacity: 1 !important;
  border-color: #CABFFD !important;
  border-color: rgba(202, 191, 253, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-400, [class*=theme-dark] .dark\:border-purple-400, [class*=theme-light].light\:border-purple-400, [class*=theme-light] .light\:border-purple-400 {
  --border-opacity: 1 !important;
  border-color: #AC94FA !important;
  border-color: rgba(172, 148, 250, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-500, [class*=theme-dark] .dark\:border-purple-500, [class*=theme-light].light\:border-purple-500, [class*=theme-light] .light\:border-purple-500 {
  --border-opacity: 1 !important;
  border-color: #9061F9 !important;
  border-color: rgba(144, 97, 249, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-600, [class*=theme-dark] .dark\:border-purple-600, [class*=theme-light].light\:border-purple-600, [class*=theme-light] .light\:border-purple-600 {
  --border-opacity: 1 !important;
  border-color: #7E3AF2 !important;
  border-color: rgba(126, 58, 242, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-700, [class*=theme-dark] .dark\:border-purple-700, [class*=theme-light].light\:border-purple-700, [class*=theme-light] .light\:border-purple-700 {
  --border-opacity: 1 !important;
  border-color: #6C2BD9 !important;
  border-color: rgba(108, 43, 217, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-800, [class*=theme-dark] .dark\:border-purple-800, [class*=theme-light].light\:border-purple-800, [class*=theme-light] .light\:border-purple-800 {
  --border-opacity: 1 !important;
  border-color: #5521B5 !important;
  border-color: rgba(85, 33, 181, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple-900, [class*=theme-dark] .dark\:border-purple-900, [class*=theme-light].light\:border-purple-900, [class*=theme-light] .light\:border-purple-900 {
  --border-opacity: 1 !important;
  border-color: #4A1D96 !important;
  border-color: rgba(74, 29, 150, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-purple, [class*=theme-dark] .dark\:border-purple, [class*=theme-light].light\:border-purple, [class*=theme-light] .light\:border-purple {
  --border-opacity: 1 !important;
  border-color: #9061F9 !important;
  border-color: rgba(144, 97, 249, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-50, [class*=theme-dark] .dark\:border-pink-50, [class*=theme-light].light\:border-pink-50, [class*=theme-light] .light\:border-pink-50 {
  --border-opacity: 1 !important;
  border-color: #FDF2F8 !important;
  border-color: rgba(253, 242, 248, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-100, [class*=theme-dark] .dark\:border-pink-100, [class*=theme-light].light\:border-pink-100, [class*=theme-light] .light\:border-pink-100 {
  --border-opacity: 1 !important;
  border-color: #FCE8F3 !important;
  border-color: rgba(252, 232, 243, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-200, [class*=theme-dark] .dark\:border-pink-200, [class*=theme-light].light\:border-pink-200, [class*=theme-light] .light\:border-pink-200 {
  --border-opacity: 1 !important;
  border-color: #FAD1E8 !important;
  border-color: rgba(250, 209, 232, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-300, [class*=theme-dark] .dark\:border-pink-300, [class*=theme-light].light\:border-pink-300, [class*=theme-light] .light\:border-pink-300 {
  --border-opacity: 1 !important;
  border-color: #F8B4D9 !important;
  border-color: rgba(248, 180, 217, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-400, [class*=theme-dark] .dark\:border-pink-400, [class*=theme-light].light\:border-pink-400, [class*=theme-light] .light\:border-pink-400 {
  --border-opacity: 1 !important;
  border-color: #F17EB8 !important;
  border-color: rgba(241, 126, 184, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-500, [class*=theme-dark] .dark\:border-pink-500, [class*=theme-light].light\:border-pink-500, [class*=theme-light] .light\:border-pink-500 {
  --border-opacity: 1 !important;
  border-color: #E74694 !important;
  border-color: rgba(231, 70, 148, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-600, [class*=theme-dark] .dark\:border-pink-600, [class*=theme-light].light\:border-pink-600, [class*=theme-light] .light\:border-pink-600 {
  --border-opacity: 1 !important;
  border-color: #D61F69 !important;
  border-color: rgba(214, 31, 105, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-700, [class*=theme-dark] .dark\:border-pink-700, [class*=theme-light].light\:border-pink-700, [class*=theme-light] .light\:border-pink-700 {
  --border-opacity: 1 !important;
  border-color: #BF125D !important;
  border-color: rgba(191, 18, 93, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-800, [class*=theme-dark] .dark\:border-pink-800, [class*=theme-light].light\:border-pink-800, [class*=theme-light] .light\:border-pink-800 {
  --border-opacity: 1 !important;
  border-color: #99154B !important;
  border-color: rgba(153, 21, 75, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink-900, [class*=theme-dark] .dark\:border-pink-900, [class*=theme-light].light\:border-pink-900, [class*=theme-light] .light\:border-pink-900 {
  --border-opacity: 1 !important;
  border-color: #751A3D !important;
  border-color: rgba(117, 26, 61, var(--border-opacity)) !important;
}
[class*=theme-dark].dark\:border-pink, [class*=theme-dark] .dark\:border-pink, [class*=theme-light].light\:border-pink, [class*=theme-light] .light\:border-pink {
  --border-opacity: 1 !important;
  border-color: #E74694 !important;
  border-color: rgba(231, 70, 148, var(--border-opacity)) !important;
}
.border-opacity-0 {
  --border-opacity: 0 !important;
}
.border-opacity-12 {
  --border-opacity: 0.12 !important;
}
.border-opacity-25 {
  --border-opacity: 0.25 !important;
}
.border-opacity-38 {
  --border-opacity: 0.38 !important;
}
.border-opacity-50 {
  --border-opacity: 0.5 !important;
}
.border-opacity-54 {
  --border-opacity: 0.54 !important;
}
.border-opacity-70 {
  --border-opacity: 0.70 !important;
}
.border-opacity-75 {
  --border-opacity: 0.75 !important;
}
.border-opacity-84 {
  --border-opacity: 0.84 !important;
}
.border-opacity-100 {
  --border-opacity: 1 !important;
}
.rounded-none {
  border-radius: 0 !important;
}
.rounded-sm {
  border-radius: 0.125rem !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-md {
  border-radius: 0.375rem !important;
}
.rounded-lg {
  border-radius: 0.5rem !important;
}
.rounded-full {
  border-radius: 9999px !important;
}
.rounded-t-none {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.rounded-r-none {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.rounded-b-none {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.rounded-l-none {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.rounded-t-sm {
  border-top-left-radius: 0.125rem !important;
  border-top-right-radius: 0.125rem !important;
}
.rounded-r-sm {
  border-top-right-radius: 0.125rem !important;
  border-bottom-right-radius: 0.125rem !important;
}
.rounded-b-sm {
  border-bottom-right-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}
.rounded-l-sm {
  border-top-left-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}
.rounded-t {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-r {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-b {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-l {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-t-md {
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}
.rounded-r-md {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}
.rounded-b-md {
  border-bottom-right-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}
.rounded-l-md {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}
.rounded-r-lg {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}
.rounded-b-lg {
  border-bottom-right-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}
.rounded-l-lg {
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}
.rounded-t-full {
  border-top-left-radius: 9999px !important;
  border-top-right-radius: 9999px !important;
}
.rounded-r-full {
  border-top-right-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}
.rounded-b-full {
  border-bottom-right-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}
.rounded-l-full {
  border-top-left-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}
.rounded-tl-none {
  border-top-left-radius: 0 !important;
}
.rounded-tr-none {
  border-top-right-radius: 0 !important;
}
.rounded-br-none {
  border-bottom-right-radius: 0 !important;
}
.rounded-bl-none {
  border-bottom-left-radius: 0 !important;
}
.rounded-tl-sm {
  border-top-left-radius: 0.125rem !important;
}
.rounded-tr-sm {
  border-top-right-radius: 0.125rem !important;
}
.rounded-br-sm {
  border-bottom-right-radius: 0.125rem !important;
}
.rounded-bl-sm {
  border-bottom-left-radius: 0.125rem !important;
}
.rounded-tl {
  border-top-left-radius: 0.25rem !important;
}
.rounded-tr {
  border-top-right-radius: 0.25rem !important;
}
.rounded-br {
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bl {
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-tl-md {
  border-top-left-radius: 0.375rem !important;
}
.rounded-tr-md {
  border-top-right-radius: 0.375rem !important;
}
.rounded-br-md {
  border-bottom-right-radius: 0.375rem !important;
}
.rounded-bl-md {
  border-bottom-left-radius: 0.375rem !important;
}
.rounded-tl-lg {
  border-top-left-radius: 0.5rem !important;
}
.rounded-tr-lg {
  border-top-right-radius: 0.5rem !important;
}
.rounded-br-lg {
  border-bottom-right-radius: 0.5rem !important;
}
.rounded-bl-lg {
  border-bottom-left-radius: 0.5rem !important;
}
.rounded-tl-full {
  border-top-left-radius: 9999px !important;
}
.rounded-tr-full {
  border-top-right-radius: 9999px !important;
}
.rounded-br-full {
  border-bottom-right-radius: 9999px !important;
}
.rounded-bl-full {
  border-bottom-left-radius: 9999px !important;
}
.border-solid {
  border-style: solid !important;
}
.border-dashed {
  border-style: dashed !important;
}
.border-dotted {
  border-style: dotted !important;
}
.border-double {
  border-style: double !important;
}
.border-none {
  border-style: none !important;
}
.border-0 {
  border-width: 0 !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-4 {
  border-width: 4px !important;
}
.border-8 {
  border-width: 8px !important;
}
.border {
  border-width: 1px !important;
}
.border-t-0 {
  border-top-width: 0 !important;
}
.border-r-0 {
  border-right-width: 0 !important;
}
.border-b-0 {
  border-bottom-width: 0 !important;
}
.border-l-0 {
  border-left-width: 0 !important;
}
.border-t-2 {
  border-top-width: 2px !important;
}
.border-r-2 {
  border-right-width: 2px !important;
}
.border-b-2 {
  border-bottom-width: 2px !important;
}
.border-l-2 {
  border-left-width: 2px !important;
}
.border-t-4 {
  border-top-width: 4px !important;
}
.border-r-4 {
  border-right-width: 4px !important;
}
.border-b-4 {
  border-bottom-width: 4px !important;
}
.border-l-4 {
  border-left-width: 4px !important;
}
.border-t-8 {
  border-top-width: 8px !important;
}
.border-r-8 {
  border-right-width: 8px !important;
}
.border-b-8 {
  border-bottom-width: 8px !important;
}
.border-l-8 {
  border-left-width: 8px !important;
}
.border-t {
  border-top-width: 1px !important;
}
.border-r {
  border-right-width: 1px !important;
}
.border-b {
  border-bottom-width: 1px !important;
}
.border-l {
  border-left-width: 1px !important;
}
.first\:border-0:first-child {
  border-width: 0 !important;
}
.first\:border-2:first-child {
  border-width: 2px !important;
}
.first\:border-4:first-child {
  border-width: 4px !important;
}
.first\:border-8:first-child {
  border-width: 8px !important;
}
.first\:border:first-child {
  border-width: 1px !important;
}
.first\:border-t-0:first-child {
  border-top-width: 0 !important;
}
.first\:border-r-0:first-child {
  border-right-width: 0 !important;
}
.first\:border-b-0:first-child {
  border-bottom-width: 0 !important;
}
.first\:border-l-0:first-child {
  border-left-width: 0 !important;
}
.first\:border-t-2:first-child {
  border-top-width: 2px !important;
}
.first\:border-r-2:first-child {
  border-right-width: 2px !important;
}
.first\:border-b-2:first-child {
  border-bottom-width: 2px !important;
}
.first\:border-l-2:first-child {
  border-left-width: 2px !important;
}
.first\:border-t-4:first-child {
  border-top-width: 4px !important;
}
.first\:border-r-4:first-child {
  border-right-width: 4px !important;
}
.first\:border-b-4:first-child {
  border-bottom-width: 4px !important;
}
.first\:border-l-4:first-child {
  border-left-width: 4px !important;
}
.first\:border-t-8:first-child {
  border-top-width: 8px !important;
}
.first\:border-r-8:first-child {
  border-right-width: 8px !important;
}
.first\:border-b-8:first-child {
  border-bottom-width: 8px !important;
}
.first\:border-l-8:first-child {
  border-left-width: 8px !important;
}
.first\:border-t:first-child {
  border-top-width: 1px !important;
}
.first\:border-r:first-child {
  border-right-width: 1px !important;
}
.first\:border-b:first-child {
  border-bottom-width: 1px !important;
}
.first\:border-l:first-child {
  border-left-width: 1px !important;
}
.last\:border-0:last-child {
  border-width: 0 !important;
}
.last\:border-2:last-child {
  border-width: 2px !important;
}
.last\:border-4:last-child {
  border-width: 4px !important;
}
.last\:border-8:last-child {
  border-width: 8px !important;
}
.last\:border:last-child {
  border-width: 1px !important;
}
.last\:border-t-0:last-child {
  border-top-width: 0 !important;
}
.last\:border-r-0:last-child {
  border-right-width: 0 !important;
}
.last\:border-b-0:last-child {
  border-bottom-width: 0 !important;
}
.last\:border-l-0:last-child {
  border-left-width: 0 !important;
}
.last\:border-t-2:last-child {
  border-top-width: 2px !important;
}
.last\:border-r-2:last-child {
  border-right-width: 2px !important;
}
.last\:border-b-2:last-child {
  border-bottom-width: 2px !important;
}
.last\:border-l-2:last-child {
  border-left-width: 2px !important;
}
.last\:border-t-4:last-child {
  border-top-width: 4px !important;
}
.last\:border-r-4:last-child {
  border-right-width: 4px !important;
}
.last\:border-b-4:last-child {
  border-bottom-width: 4px !important;
}
.last\:border-l-4:last-child {
  border-left-width: 4px !important;
}
.last\:border-t-8:last-child {
  border-top-width: 8px !important;
}
.last\:border-r-8:last-child {
  border-right-width: 8px !important;
}
.last\:border-b-8:last-child {
  border-bottom-width: 8px !important;
}
.last\:border-l-8:last-child {
  border-left-width: 8px !important;
}
.last\:border-t:last-child {
  border-top-width: 1px !important;
}
.last\:border-r:last-child {
  border-right-width: 1px !important;
}
.last\:border-b:last-child {
  border-bottom-width: 1px !important;
}
.last\:border-l:last-child {
  border-left-width: 1px !important;
}
.box-border {
  box-sizing: border-box !important;
}
.box-content {
  box-sizing: content-box !important;
}
.cursor-auto {
  cursor: auto !important;
}
.cursor-default {
  cursor: default !important;
}
.cursor-pointer {
  cursor: pointer !important;
}
.cursor-wait {
  cursor: wait !important;
}
.cursor-text {
  cursor: text !important;
}
.cursor-move {
  cursor: move !important;
}
.cursor-not-allowed {
  cursor: not-allowed !important;
}
.block {
  display: block !important;
}
.inline-block {
  display: inline-block !important;
}
.inline {
  display: inline !important;
}
.flex {
  display: flex !important;
}
.inline-flex {
  display: inline-flex !important;
}
.table {
  display: table !important;
}
.table-caption {
  display: table-caption !important;
}
.table-cell {
  display: table-cell !important;
}
.table-column {
  display: table-column !important;
}
.table-column-group {
  display: table-column-group !important;
}
.table-footer-group {
  display: table-footer-group !important;
}
.table-header-group {
  display: table-header-group !important;
}
.table-row-group {
  display: table-row-group !important;
}
.table-row {
  display: table-row !important;
}
.flow-root {
  display: flow-root !important;
}
.grid {
  display: grid !important;
}
.inline-grid {
  display: inline-grid !important;
}
.contents {
  display: contents !important;
}
.hidden {
  display: none !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-col-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.flex-no-wrap {
  flex-wrap: nowrap !important;
}
.items-start {
  align-items: flex-start !important;
}
.items-end {
  align-items: flex-end !important;
}
.items-center {
  align-items: center !important;
}
.items-baseline {
  align-items: baseline !important;
}
.items-stretch {
  align-items: stretch !important;
}
.self-auto {
  align-self: auto !important;
}
.self-start {
  align-self: flex-start !important;
}
.self-end {
  align-self: flex-end !important;
}
.self-center {
  align-self: center !important;
}
.self-stretch {
  align-self: stretch !important;
}
.justify-start {
  justify-content: flex-start !important;
}
.justify-end {
  justify-content: flex-end !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.justify-around {
  justify-content: space-around !important;
}
.justify-evenly {
  justify-content: space-evenly !important;
}
.content-center {
  align-content: center !important;
}
.content-start {
  align-content: flex-start !important;
}
.content-end {
  align-content: flex-end !important;
}
.content-between {
  align-content: space-between !important;
}
.content-around {
  align-content: space-around !important;
}
.flex-0 {
  flex: 0 0 auto !important;
}
.flex-1 {
  flex: 1 1 0% !important;
}
.flex-auto {
  flex: 1 1 auto !important;
}
.flex-initial {
  flex: 0 1 auto !important;
}
.flex-none {
  flex: none !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink {
  flex-shrink: 1 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}
.order-6 {
  order: 6 !important;
}
.order-7 {
  order: 7 !important;
}
.order-8 {
  order: 8 !important;
}
.order-9 {
  order: 9 !important;
}
.order-10 {
  order: 10 !important;
}
.order-11 {
  order: 11 !important;
}
.order-12 {
  order: 12 !important;
}
.order-first {
  order: -9999 !important;
}
.order-last {
  order: 9999 !important;
}
.order-none {
  order: 0 !important;
}
.font-sans {
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
.font-serif {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif !important;
}
.font-mono {
  font-family: "IBM Plex Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}
.font-hairline {
  font-weight: 100 !important;
}
.font-thin {
  font-weight: 200 !important;
}
.font-light {
  font-weight: 300 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-extrabold {
  font-weight: 800 !important;
}
.font-black {
  font-weight: 900 !important;
}
.h-0 {
  height: 0 !important;
}
.h-1 {
  height: 0.25rem !important;
}
.h-2 {
  height: 0.5rem !important;
}
.h-3 {
  height: 0.75rem !important;
}
.h-4 {
  height: 1rem !important;
}
.h-5 {
  height: 1.25rem !important;
}
.h-6 {
  height: 1.5rem !important;
}
.h-7 {
  height: 1.75rem !important;
}
.h-8 {
  height: 2rem !important;
}
.h-9 {
  height: 2.25rem !important;
}
.h-10 {
  height: 2.5rem !important;
}
.h-11 {
  height: 2.75rem !important;
}
.h-12 {
  height: 3rem !important;
}
.h-13 {
  height: 3.25rem !important;
}
.h-14 {
  height: 3.5rem !important;
}
.h-15 {
  height: 3.75rem !important;
}
.h-16 {
  height: 4rem !important;
}
.h-18 {
  height: 4.5rem !important;
}
.h-20 {
  height: 5rem !important;
}
.h-22 {
  height: 5.5rem !important;
}
.h-24 {
  height: 6rem !important;
}
.h-26 {
  height: 6.5rem !important;
}
.h-28 {
  height: 7rem !important;
}
.h-30 {
  height: 7.5rem !important;
}
.h-32 {
  height: 8rem !important;
}
.h-36 {
  height: 9rem !important;
}
.h-40 {
  height: 10rem !important;
}
.h-44 {
  height: 11rem !important;
}
.h-48 {
  height: 12rem !important;
}
.h-50 {
  height: 12.5rem !important;
}
.h-52 {
  height: 13rem !important;
}
.h-56 {
  height: 14rem !important;
}
.h-60 {
  height: 15rem !important;
}
.h-64 {
  height: 16rem !important;
}
.h-72 {
  height: 18rem !important;
}
.h-80 {
  height: 20rem !important;
}
.h-90 {
  height: 24rem !important;
}
.h-96 {
  height: 24rem !important;
}
.h-100 {
  height: 25rem !important;
}
.h-120 {
  height: 30rem !important;
}
.h-128 {
  height: 32rem !important;
}
.h-140 {
  height: 35rem !important;
}
.h-160 {
  height: 40rem !important;
}
.h-180 {
  height: 45rem !important;
}
.h-192 {
  height: 48rem !important;
}
.h-200 {
  height: 50rem !important;
}
.h-240 {
  height: 60rem !important;
}
.h-256 {
  height: 64rem !important;
}
.h-280 {
  height: 70rem !important;
}
.h-320 {
  height: 80rem !important;
}
.h-360 {
  height: 90rem !important;
}
.h-400 {
  height: 100rem !important;
}
.h-480 {
  height: 120rem !important;
}
.h-auto {
  height: auto !important;
}
.h-px {
  height: 1px !important;
}
.h-0\.5 {
  height: 0.125rem !important;
}
.h-1\.5 {
  height: 0.375rem !important;
}
.h-2\.5 {
  height: 0.625rem !important;
}
.h-3\.5 {
  height: 0.875rem !important;
}
.h-1\/2 {
  height: 50% !important;
}
.h-1\/3 {
  height: 33.333333% !important;
}
.h-2\/3 {
  height: 66.666667% !important;
}
.h-1\/4 {
  height: 25% !important;
}
.h-2\/4 {
  height: 50% !important;
}
.h-3\/4 {
  height: 75% !important;
}
.h-1\/5 {
  height: 20% !important;
}
.h-2\/5 {
  height: 40% !important;
}
.h-3\/5 {
  height: 60% !important;
}
.h-4\/5 {
  height: 80% !important;
}
.h-1\/6 {
  height: 16.666667% !important;
}
.h-2\/6 {
  height: 33.333333% !important;
}
.h-3\/6 {
  height: 50% !important;
}
.h-4\/6 {
  height: 66.666667% !important;
}
.h-5\/6 {
  height: 83.333333% !important;
}
.h-1\/12 {
  height: 8.333333% !important;
}
.h-2\/12 {
  height: 16.666667% !important;
}
.h-3\/12 {
  height: 25% !important;
}
.h-4\/12 {
  height: 33.333333% !important;
}
.h-5\/12 {
  height: 41.666667% !important;
}
.h-6\/12 {
  height: 50% !important;
}
.h-7\/12 {
  height: 58.333333% !important;
}
.h-8\/12 {
  height: 66.666667% !important;
}
.h-9\/12 {
  height: 75% !important;
}
.h-10\/12 {
  height: 83.333333% !important;
}
.h-11\/12 {
  height: 91.666667% !important;
}
.h-full {
  height: 100% !important;
}
.h-2px {
  height: 2px !important;
}
.h-screen {
  height: 100vh !important;
}
.text-xs {
  font-size: 0.625rem !important;
}
.text-sm {
  font-size: 0.75rem !important;
}
.text-md {
  font-size: 0.8125rem !important;
}
.text-base {
  font-size: 0.875rem !important;
}
.text-lg {
  font-size: 1rem !important;
}
.text-xl {
  font-size: 1.125rem !important;
}
.text-2xl {
  font-size: 1.25rem !important;
}
.text-3xl {
  font-size: 1.5rem !important;
}
.text-4xl {
  font-size: 2rem !important;
}
.text-5xl {
  font-size: 2.25rem !important;
}
.text-6xl {
  font-size: 2.5rem !important;
}
.text-7xl {
  font-size: 3rem !important;
}
.text-8xl {
  font-size: 4rem !important;
}
.text-9xl {
  font-size: 6rem !important;
}
.text-10xl {
  font-size: 8rem !important;
}
.leading-3 {
  line-height: 0.75rem !important;
}
.leading-4 {
  line-height: 1rem !important;
}
.leading-5 {
  line-height: 1.25rem !important;
}
.leading-6 {
  line-height: 1.5rem !important;
}
.leading-7 {
  line-height: 1.75rem !important;
}
.leading-8 {
  line-height: 2rem !important;
}
.leading-9 {
  line-height: 2.25rem !important;
}
.leading-10 {
  line-height: 2.5rem !important;
}
.leading-none {
  line-height: 1 !important;
}
.leading-tight {
  line-height: 1.25 !important;
}
.leading-snug {
  line-height: 1.375 !important;
}
.leading-normal {
  line-height: 1.5 !important;
}
.leading-relaxed {
  line-height: 1.625 !important;
}
.leading-loose {
  line-height: 2 !important;
}
.list-inside {
  list-style-position: inside !important;
}
.list-outside {
  list-style-position: outside !important;
}
.list-none {
  list-style-type: none !important;
}
.list-disc {
  list-style-type: disc !important;
}
.list-decimal {
  list-style-type: decimal !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 0.75rem !important;
}
.m-4 {
  margin: 1rem !important;
}
.m-5 {
  margin: 1.25rem !important;
}
.m-6 {
  margin: 1.5rem !important;
}
.m-7 {
  margin: 1.75rem !important;
}
.m-8 {
  margin: 2rem !important;
}
.m-9 {
  margin: 2.25rem !important;
}
.m-10 {
  margin: 2.5rem !important;
}
.m-11 {
  margin: 2.75rem !important;
}
.m-12 {
  margin: 3rem !important;
}
.m-13 {
  margin: 3.25rem !important;
}
.m-14 {
  margin: 3.5rem !important;
}
.m-15 {
  margin: 3.75rem !important;
}
.m-16 {
  margin: 4rem !important;
}
.m-18 {
  margin: 4.5rem !important;
}
.m-20 {
  margin: 5rem !important;
}
.m-22 {
  margin: 5.5rem !important;
}
.m-24 {
  margin: 6rem !important;
}
.m-26 {
  margin: 6.5rem !important;
}
.m-28 {
  margin: 7rem !important;
}
.m-30 {
  margin: 7.5rem !important;
}
.m-32 {
  margin: 8rem !important;
}
.m-36 {
  margin: 9rem !important;
}
.m-40 {
  margin: 10rem !important;
}
.m-44 {
  margin: 11rem !important;
}
.m-48 {
  margin: 12rem !important;
}
.m-50 {
  margin: 12.5rem !important;
}
.m-52 {
  margin: 13rem !important;
}
.m-56 {
  margin: 14rem !important;
}
.m-60 {
  margin: 15rem !important;
}
.m-64 {
  margin: 16rem !important;
}
.m-72 {
  margin: 18rem !important;
}
.m-80 {
  margin: 20rem !important;
}
.m-90 {
  margin: 24rem !important;
}
.m-96 {
  margin: 24rem !important;
}
.m-100 {
  margin: 25rem !important;
}
.m-120 {
  margin: 30rem !important;
}
.m-128 {
  margin: 32rem !important;
}
.m-140 {
  margin: 35rem !important;
}
.m-160 {
  margin: 40rem !important;
}
.m-180 {
  margin: 45rem !important;
}
.m-192 {
  margin: 48rem !important;
}
.m-200 {
  margin: 50rem !important;
}
.m-240 {
  margin: 60rem !important;
}
.m-256 {
  margin: 64rem !important;
}
.m-280 {
  margin: 70rem !important;
}
.m-320 {
  margin: 80rem !important;
}
.m-360 {
  margin: 90rem !important;
}
.m-400 {
  margin: 100rem !important;
}
.m-480 {
  margin: 120rem !important;
}
.m-auto {
  margin: auto !important;
}
.m-px {
  margin: 1px !important;
}
.m-0\.5 {
  margin: 0.125rem !important;
}
.m-1\.5 {
  margin: 0.375rem !important;
}
.m-2\.5 {
  margin: 0.625rem !important;
}
.m-3\.5 {
  margin: 0.875rem !important;
}
.m-1\/2 {
  margin: 50% !important;
}
.m-1\/3 {
  margin: 33.333333% !important;
}
.m-2\/3 {
  margin: 66.666667% !important;
}
.m-1\/4 {
  margin: 25% !important;
}
.m-2\/4 {
  margin: 50% !important;
}
.m-3\/4 {
  margin: 75% !important;
}
.m-1\/5 {
  margin: 20% !important;
}
.m-2\/5 {
  margin: 40% !important;
}
.m-3\/5 {
  margin: 60% !important;
}
.m-4\/5 {
  margin: 80% !important;
}
.m-1\/6 {
  margin: 16.666667% !important;
}
.m-2\/6 {
  margin: 33.333333% !important;
}
.m-3\/6 {
  margin: 50% !important;
}
.m-4\/6 {
  margin: 66.666667% !important;
}
.m-5\/6 {
  margin: 83.333333% !important;
}
.m-1\/12 {
  margin: 8.333333% !important;
}
.m-2\/12 {
  margin: 16.666667% !important;
}
.m-3\/12 {
  margin: 25% !important;
}
.m-4\/12 {
  margin: 33.333333% !important;
}
.m-5\/12 {
  margin: 41.666667% !important;
}
.m-6\/12 {
  margin: 50% !important;
}
.m-7\/12 {
  margin: 58.333333% !important;
}
.m-8\/12 {
  margin: 66.666667% !important;
}
.m-9\/12 {
  margin: 75% !important;
}
.m-10\/12 {
  margin: 83.333333% !important;
}
.m-11\/12 {
  margin: 91.666667% !important;
}
.m-full {
  margin: 100% !important;
}
.m-2px {
  margin: 2px !important;
}
.-m-1 {
  margin: -0.25rem !important;
}
.-m-2 {
  margin: -0.5rem !important;
}
.-m-3 {
  margin: -0.75rem !important;
}
.-m-4 {
  margin: -1rem !important;
}
.-m-5 {
  margin: -1.25rem !important;
}
.-m-6 {
  margin: -1.5rem !important;
}
.-m-7 {
  margin: -1.75rem !important;
}
.-m-8 {
  margin: -2rem !important;
}
.-m-9 {
  margin: -2.25rem !important;
}
.-m-10 {
  margin: -2.5rem !important;
}
.-m-11 {
  margin: -2.75rem !important;
}
.-m-12 {
  margin: -3rem !important;
}
.-m-13 {
  margin: -3.25rem !important;
}
.-m-14 {
  margin: -3.5rem !important;
}
.-m-15 {
  margin: -3.75rem !important;
}
.-m-16 {
  margin: -4rem !important;
}
.-m-18 {
  margin: -4.5rem !important;
}
.-m-20 {
  margin: -5rem !important;
}
.-m-22 {
  margin: -5.5rem !important;
}
.-m-24 {
  margin: -6rem !important;
}
.-m-26 {
  margin: -6.5rem !important;
}
.-m-28 {
  margin: -7rem !important;
}
.-m-30 {
  margin: -7.5rem !important;
}
.-m-32 {
  margin: -8rem !important;
}
.-m-36 {
  margin: -9rem !important;
}
.-m-40 {
  margin: -10rem !important;
}
.-m-44 {
  margin: -11rem !important;
}
.-m-48 {
  margin: -12rem !important;
}
.-m-50 {
  margin: -12.5rem !important;
}
.-m-52 {
  margin: -13rem !important;
}
.-m-56 {
  margin: -14rem !important;
}
.-m-60 {
  margin: -15rem !important;
}
.-m-64 {
  margin: -16rem !important;
}
.-m-72 {
  margin: -18rem !important;
}
.-m-80 {
  margin: -20rem !important;
}
.-m-90 {
  margin: -24rem !important;
}
.-m-96 {
  margin: -24rem !important;
}
.-m-100 {
  margin: -25rem !important;
}
.-m-120 {
  margin: -30rem !important;
}
.-m-128 {
  margin: -32rem !important;
}
.-m-140 {
  margin: -35rem !important;
}
.-m-160 {
  margin: -40rem !important;
}
.-m-180 {
  margin: -45rem !important;
}
.-m-192 {
  margin: -48rem !important;
}
.-m-200 {
  margin: -50rem !important;
}
.-m-240 {
  margin: -60rem !important;
}
.-m-256 {
  margin: -64rem !important;
}
.-m-280 {
  margin: -70rem !important;
}
.-m-320 {
  margin: -80rem !important;
}
.-m-360 {
  margin: -90rem !important;
}
.-m-400 {
  margin: -100rem !important;
}
.-m-480 {
  margin: -120rem !important;
}
.-m-px {
  margin: -1px !important;
}
.-m-0\.5 {
  margin: -0.125rem !important;
}
.-m-1\.5 {
  margin: -0.375rem !important;
}
.-m-2\.5 {
  margin: -0.625rem !important;
}
.-m-3\.5 {
  margin: -0.875rem !important;
}
.-m-1\/2 {
  margin: -50% !important;
}
.-m-1\/3 {
  margin: -33.33333% !important;
}
.-m-2\/3 {
  margin: -66.66667% !important;
}
.-m-1\/4 {
  margin: -25% !important;
}
.-m-2\/4 {
  margin: -50% !important;
}
.-m-3\/4 {
  margin: -75% !important;
}
.-m-1\/5 {
  margin: -20% !important;
}
.-m-2\/5 {
  margin: -40% !important;
}
.-m-3\/5 {
  margin: -60% !important;
}
.-m-4\/5 {
  margin: -80% !important;
}
.-m-1\/6 {
  margin: -16.66667% !important;
}
.-m-2\/6 {
  margin: -33.33333% !important;
}
.-m-3\/6 {
  margin: -50% !important;
}
.-m-4\/6 {
  margin: -66.66667% !important;
}
.-m-5\/6 {
  margin: -83.33333% !important;
}
.-m-1\/12 {
  margin: -8.33333% !important;
}
.-m-2\/12 {
  margin: -16.66667% !important;
}
.-m-3\/12 {
  margin: -25% !important;
}
.-m-4\/12 {
  margin: -33.33333% !important;
}
.-m-5\/12 {
  margin: -41.66667% !important;
}
.-m-6\/12 {
  margin: -50% !important;
}
.-m-7\/12 {
  margin: -58.33333% !important;
}
.-m-8\/12 {
  margin: -66.66667% !important;
}
.-m-9\/12 {
  margin: -75% !important;
}
.-m-10\/12 {
  margin: -83.33333% !important;
}
.-m-11\/12 {
  margin: -91.66667% !important;
}
.-m-full {
  margin: -100% !important;
}
.-m-2px {
  margin: -2px !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}
.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}
.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}
.mx-7 {
  margin-left: 1.75rem !important;
  margin-right: 1.75rem !important;
}
.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}
.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}
.mx-9 {
  margin-left: 2.25rem !important;
  margin-right: 2.25rem !important;
}
.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}
.my-11 {
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}
.mx-11 {
  margin-left: 2.75rem !important;
  margin-right: 2.75rem !important;
}
.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.my-13 {
  margin-top: 3.25rem !important;
  margin-bottom: 3.25rem !important;
}
.mx-13 {
  margin-left: 3.25rem !important;
  margin-right: 3.25rem !important;
}
.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}
.mx-14 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}
.my-15 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}
.mx-15 {
  margin-left: 3.75rem !important;
  margin-right: 3.75rem !important;
}
.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}
.my-18 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}
.mx-18 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}
.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.mx-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}
.my-22 {
  margin-top: 5.5rem !important;
  margin-bottom: 5.5rem !important;
}
.mx-22 {
  margin-left: 5.5rem !important;
  margin-right: 5.5rem !important;
}
.my-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}
.mx-24 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}
.my-26 {
  margin-top: 6.5rem !important;
  margin-bottom: 6.5rem !important;
}
.mx-26 {
  margin-left: 6.5rem !important;
  margin-right: 6.5rem !important;
}
.my-28 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}
.mx-28 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}
.my-30 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}
.mx-30 {
  margin-left: 7.5rem !important;
  margin-right: 7.5rem !important;
}
.my-32 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}
.mx-32 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}
.my-36 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}
.mx-36 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}
.my-40 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}
.mx-40 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}
.my-44 {
  margin-top: 11rem !important;
  margin-bottom: 11rem !important;
}
.mx-44 {
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}
.my-48 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}
.mx-48 {
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}
.my-50 {
  margin-top: 12.5rem !important;
  margin-bottom: 12.5rem !important;
}
.mx-50 {
  margin-left: 12.5rem !important;
  margin-right: 12.5rem !important;
}
.my-52 {
  margin-top: 13rem !important;
  margin-bottom: 13rem !important;
}
.mx-52 {
  margin-left: 13rem !important;
  margin-right: 13rem !important;
}
.my-56 {
  margin-top: 14rem !important;
  margin-bottom: 14rem !important;
}
.mx-56 {
  margin-left: 14rem !important;
  margin-right: 14rem !important;
}
.my-60 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}
.mx-60 {
  margin-left: 15rem !important;
  margin-right: 15rem !important;
}
.my-64 {
  margin-top: 16rem !important;
  margin-bottom: 16rem !important;
}
.mx-64 {
  margin-left: 16rem !important;
  margin-right: 16rem !important;
}
.my-72 {
  margin-top: 18rem !important;
  margin-bottom: 18rem !important;
}
.mx-72 {
  margin-left: 18rem !important;
  margin-right: 18rem !important;
}
.my-80 {
  margin-top: 20rem !important;
  margin-bottom: 20rem !important;
}
.mx-80 {
  margin-left: 20rem !important;
  margin-right: 20rem !important;
}
.my-90 {
  margin-top: 24rem !important;
  margin-bottom: 24rem !important;
}
.mx-90 {
  margin-left: 24rem !important;
  margin-right: 24rem !important;
}
.my-96 {
  margin-top: 24rem !important;
  margin-bottom: 24rem !important;
}
.mx-96 {
  margin-left: 24rem !important;
  margin-right: 24rem !important;
}
.my-100 {
  margin-top: 25rem !important;
  margin-bottom: 25rem !important;
}
.mx-100 {
  margin-left: 25rem !important;
  margin-right: 25rem !important;
}
.my-120 {
  margin-top: 30rem !important;
  margin-bottom: 30rem !important;
}
.mx-120 {
  margin-left: 30rem !important;
  margin-right: 30rem !important;
}
.my-128 {
  margin-top: 32rem !important;
  margin-bottom: 32rem !important;
}
.mx-128 {
  margin-left: 32rem !important;
  margin-right: 32rem !important;
}
.my-140 {
  margin-top: 35rem !important;
  margin-bottom: 35rem !important;
}
.mx-140 {
  margin-left: 35rem !important;
  margin-right: 35rem !important;
}
.my-160 {
  margin-top: 40rem !important;
  margin-bottom: 40rem !important;
}
.mx-160 {
  margin-left: 40rem !important;
  margin-right: 40rem !important;
}
.my-180 {
  margin-top: 45rem !important;
  margin-bottom: 45rem !important;
}
.mx-180 {
  margin-left: 45rem !important;
  margin-right: 45rem !important;
}
.my-192 {
  margin-top: 48rem !important;
  margin-bottom: 48rem !important;
}
.mx-192 {
  margin-left: 48rem !important;
  margin-right: 48rem !important;
}
.my-200 {
  margin-top: 50rem !important;
  margin-bottom: 50rem !important;
}
.mx-200 {
  margin-left: 50rem !important;
  margin-right: 50rem !important;
}
.my-240 {
  margin-top: 60rem !important;
  margin-bottom: 60rem !important;
}
.mx-240 {
  margin-left: 60rem !important;
  margin-right: 60rem !important;
}
.my-256 {
  margin-top: 64rem !important;
  margin-bottom: 64rem !important;
}
.mx-256 {
  margin-left: 64rem !important;
  margin-right: 64rem !important;
}
.my-280 {
  margin-top: 70rem !important;
  margin-bottom: 70rem !important;
}
.mx-280 {
  margin-left: 70rem !important;
  margin-right: 70rem !important;
}
.my-320 {
  margin-top: 80rem !important;
  margin-bottom: 80rem !important;
}
.mx-320 {
  margin-left: 80rem !important;
  margin-right: 80rem !important;
}
.my-360 {
  margin-top: 90rem !important;
  margin-bottom: 90rem !important;
}
.mx-360 {
  margin-left: 90rem !important;
  margin-right: 90rem !important;
}
.my-400 {
  margin-top: 100rem !important;
  margin-bottom: 100rem !important;
}
.mx-400 {
  margin-left: 100rem !important;
  margin-right: 100rem !important;
}
.my-480 {
  margin-top: 120rem !important;
  margin-bottom: 120rem !important;
}
.mx-480 {
  margin-left: 120rem !important;
  margin-right: 120rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-px {
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}
.mx-px {
  margin-left: 1px !important;
  margin-right: 1px !important;
}
.my-0\.5 {
  margin-top: 0.125rem !important;
  margin-bottom: 0.125rem !important;
}
.mx-0\.5 {
  margin-left: 0.125rem !important;
  margin-right: 0.125rem !important;
}
.my-1\.5 {
  margin-top: 0.375rem !important;
  margin-bottom: 0.375rem !important;
}
.mx-1\.5 {
  margin-left: 0.375rem !important;
  margin-right: 0.375rem !important;
}
.my-2\.5 {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}
.mx-2\.5 {
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
}
.my-3\.5 {
  margin-top: 0.875rem !important;
  margin-bottom: 0.875rem !important;
}
.mx-3\.5 {
  margin-left: 0.875rem !important;
  margin-right: 0.875rem !important;
}
.my-1\/2 {
  margin-top: 50% !important;
  margin-bottom: 50% !important;
}
.mx-1\/2 {
  margin-left: 50% !important;
  margin-right: 50% !important;
}
.my-1\/3 {
  margin-top: 33.333333% !important;
  margin-bottom: 33.333333% !important;
}
.mx-1\/3 {
  margin-left: 33.333333% !important;
  margin-right: 33.333333% !important;
}
.my-2\/3 {
  margin-top: 66.666667% !important;
  margin-bottom: 66.666667% !important;
}
.mx-2\/3 {
  margin-left: 66.666667% !important;
  margin-right: 66.666667% !important;
}
.my-1\/4 {
  margin-top: 25% !important;
  margin-bottom: 25% !important;
}
.mx-1\/4 {
  margin-left: 25% !important;
  margin-right: 25% !important;
}
.my-2\/4 {
  margin-top: 50% !important;
  margin-bottom: 50% !important;
}
.mx-2\/4 {
  margin-left: 50% !important;
  margin-right: 50% !important;
}
.my-3\/4 {
  margin-top: 75% !important;
  margin-bottom: 75% !important;
}
.mx-3\/4 {
  margin-left: 75% !important;
  margin-right: 75% !important;
}
.my-1\/5 {
  margin-top: 20% !important;
  margin-bottom: 20% !important;
}
.mx-1\/5 {
  margin-left: 20% !important;
  margin-right: 20% !important;
}
.my-2\/5 {
  margin-top: 40% !important;
  margin-bottom: 40% !important;
}
.mx-2\/5 {
  margin-left: 40% !important;
  margin-right: 40% !important;
}
.my-3\/5 {
  margin-top: 60% !important;
  margin-bottom: 60% !important;
}
.mx-3\/5 {
  margin-left: 60% !important;
  margin-right: 60% !important;
}
.my-4\/5 {
  margin-top: 80% !important;
  margin-bottom: 80% !important;
}
.mx-4\/5 {
  margin-left: 80% !important;
  margin-right: 80% !important;
}
.my-1\/6 {
  margin-top: 16.666667% !important;
  margin-bottom: 16.666667% !important;
}
.mx-1\/6 {
  margin-left: 16.666667% !important;
  margin-right: 16.666667% !important;
}
.my-2\/6 {
  margin-top: 33.333333% !important;
  margin-bottom: 33.333333% !important;
}
.mx-2\/6 {
  margin-left: 33.333333% !important;
  margin-right: 33.333333% !important;
}
.my-3\/6 {
  margin-top: 50% !important;
  margin-bottom: 50% !important;
}
.mx-3\/6 {
  margin-left: 50% !important;
  margin-right: 50% !important;
}
.my-4\/6 {
  margin-top: 66.666667% !important;
  margin-bottom: 66.666667% !important;
}
.mx-4\/6 {
  margin-left: 66.666667% !important;
  margin-right: 66.666667% !important;
}
.my-5\/6 {
  margin-top: 83.333333% !important;
  margin-bottom: 83.333333% !important;
}
.mx-5\/6 {
  margin-left: 83.333333% !important;
  margin-right: 83.333333% !important;
}
.my-1\/12 {
  margin-top: 8.333333% !important;
  margin-bottom: 8.333333% !important;
}
.mx-1\/12 {
  margin-left: 8.333333% !important;
  margin-right: 8.333333% !important;
}
.my-2\/12 {
  margin-top: 16.666667% !important;
  margin-bottom: 16.666667% !important;
}
.mx-2\/12 {
  margin-left: 16.666667% !important;
  margin-right: 16.666667% !important;
}
.my-3\/12 {
  margin-top: 25% !important;
  margin-bottom: 25% !important;
}
.mx-3\/12 {
  margin-left: 25% !important;
  margin-right: 25% !important;
}
.my-4\/12 {
  margin-top: 33.333333% !important;
  margin-bottom: 33.333333% !important;
}
.mx-4\/12 {
  margin-left: 33.333333% !important;
  margin-right: 33.333333% !important;
}
.my-5\/12 {
  margin-top: 41.666667% !important;
  margin-bottom: 41.666667% !important;
}
.mx-5\/12 {
  margin-left: 41.666667% !important;
  margin-right: 41.666667% !important;
}
.my-6\/12 {
  margin-top: 50% !important;
  margin-bottom: 50% !important;
}
.mx-6\/12 {
  margin-left: 50% !important;
  margin-right: 50% !important;
}
.my-7\/12 {
  margin-top: 58.333333% !important;
  margin-bottom: 58.333333% !important;
}
.mx-7\/12 {
  margin-left: 58.333333% !important;
  margin-right: 58.333333% !important;
}
.my-8\/12 {
  margin-top: 66.666667% !important;
  margin-bottom: 66.666667% !important;
}
.mx-8\/12 {
  margin-left: 66.666667% !important;
  margin-right: 66.666667% !important;
}
.my-9\/12 {
  margin-top: 75% !important;
  margin-bottom: 75% !important;
}
.mx-9\/12 {
  margin-left: 75% !important;
  margin-right: 75% !important;
}
.my-10\/12 {
  margin-top: 83.333333% !important;
  margin-bottom: 83.333333% !important;
}
.mx-10\/12 {
  margin-left: 83.333333% !important;
  margin-right: 83.333333% !important;
}
.my-11\/12 {
  margin-top: 91.666667% !important;
  margin-bottom: 91.666667% !important;
}
.mx-11\/12 {
  margin-left: 91.666667% !important;
  margin-right: 91.666667% !important;
}
.my-full {
  margin-top: 100% !important;
  margin-bottom: 100% !important;
}
.mx-full {
  margin-left: 100% !important;
  margin-right: 100% !important;
}
.my-2px {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}
.mx-2px {
  margin-left: 2px !important;
  margin-right: 2px !important;
}
.-my-1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}
.-mx-1 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}
.-my-2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}
.-mx-2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}
.-my-3 {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}
.-mx-3 {
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}
.-my-4 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}
.-mx-4 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}
.-my-5 {
  margin-top: -1.25rem !important;
  margin-bottom: -1.25rem !important;
}
.-mx-5 {
  margin-left: -1.25rem !important;
  margin-right: -1.25rem !important;
}
.-my-6 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}
.-mx-6 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}
.-my-7 {
  margin-top: -1.75rem !important;
  margin-bottom: -1.75rem !important;
}
.-mx-7 {
  margin-left: -1.75rem !important;
  margin-right: -1.75rem !important;
}
.-my-8 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}
.-mx-8 {
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}
.-my-9 {
  margin-top: -2.25rem !important;
  margin-bottom: -2.25rem !important;
}
.-mx-9 {
  margin-left: -2.25rem !important;
  margin-right: -2.25rem !important;
}
.-my-10 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}
.-mx-10 {
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
}
.-my-11 {
  margin-top: -2.75rem !important;
  margin-bottom: -2.75rem !important;
}
.-mx-11 {
  margin-left: -2.75rem !important;
  margin-right: -2.75rem !important;
}
.-my-12 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}
.-mx-12 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}
.-my-13 {
  margin-top: -3.25rem !important;
  margin-bottom: -3.25rem !important;
}
.-mx-13 {
  margin-left: -3.25rem !important;
  margin-right: -3.25rem !important;
}
.-my-14 {
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}
.-mx-14 {
  margin-left: -3.5rem !important;
  margin-right: -3.5rem !important;
}
.-my-15 {
  margin-top: -3.75rem !important;
  margin-bottom: -3.75rem !important;
}
.-mx-15 {
  margin-left: -3.75rem !important;
  margin-right: -3.75rem !important;
}
.-my-16 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}
.-mx-16 {
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}
.-my-18 {
  margin-top: -4.5rem !important;
  margin-bottom: -4.5rem !important;
}
.-mx-18 {
  margin-left: -4.5rem !important;
  margin-right: -4.5rem !important;
}
.-my-20 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}
.-mx-20 {
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}
.-my-22 {
  margin-top: -5.5rem !important;
  margin-bottom: -5.5rem !important;
}
.-mx-22 {
  margin-left: -5.5rem !important;
  margin-right: -5.5rem !important;
}
.-my-24 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}
.-mx-24 {
  margin-left: -6rem !important;
  margin-right: -6rem !important;
}
.-my-26 {
  margin-top: -6.5rem !important;
  margin-bottom: -6.5rem !important;
}
.-mx-26 {
  margin-left: -6.5rem !important;
  margin-right: -6.5rem !important;
}
.-my-28 {
  margin-top: -7rem !important;
  margin-bottom: -7rem !important;
}
.-mx-28 {
  margin-left: -7rem !important;
  margin-right: -7rem !important;
}
.-my-30 {
  margin-top: -7.5rem !important;
  margin-bottom: -7.5rem !important;
}
.-mx-30 {
  margin-left: -7.5rem !important;
  margin-right: -7.5rem !important;
}
.-my-32 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}
.-mx-32 {
  margin-left: -8rem !important;
  margin-right: -8rem !important;
}
.-my-36 {
  margin-top: -9rem !important;
  margin-bottom: -9rem !important;
}
.-mx-36 {
  margin-left: -9rem !important;
  margin-right: -9rem !important;
}
.-my-40 {
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}
.-mx-40 {
  margin-left: -10rem !important;
  margin-right: -10rem !important;
}
.-my-44 {
  margin-top: -11rem !important;
  margin-bottom: -11rem !important;
}
.-mx-44 {
  margin-left: -11rem !important;
  margin-right: -11rem !important;
}
.-my-48 {
  margin-top: -12rem !important;
  margin-bottom: -12rem !important;
}
.-mx-48 {
  margin-left: -12rem !important;
  margin-right: -12rem !important;
}
.-my-50 {
  margin-top: -12.5rem !important;
  margin-bottom: -12.5rem !important;
}
.-mx-50 {
  margin-left: -12.5rem !important;
  margin-right: -12.5rem !important;
}
.-my-52 {
  margin-top: -13rem !important;
  margin-bottom: -13rem !important;
}
.-mx-52 {
  margin-left: -13rem !important;
  margin-right: -13rem !important;
}
.-my-56 {
  margin-top: -14rem !important;
  margin-bottom: -14rem !important;
}
.-mx-56 {
  margin-left: -14rem !important;
  margin-right: -14rem !important;
}
.-my-60 {
  margin-top: -15rem !important;
  margin-bottom: -15rem !important;
}
.-mx-60 {
  margin-left: -15rem !important;
  margin-right: -15rem !important;
}
.-my-64 {
  margin-top: -16rem !important;
  margin-bottom: -16rem !important;
}
.-mx-64 {
  margin-left: -16rem !important;
  margin-right: -16rem !important;
}
.-my-72 {
  margin-top: -18rem !important;
  margin-bottom: -18rem !important;
}
.-mx-72 {
  margin-left: -18rem !important;
  margin-right: -18rem !important;
}
.-my-80 {
  margin-top: -20rem !important;
  margin-bottom: -20rem !important;
}
.-mx-80 {
  margin-left: -20rem !important;
  margin-right: -20rem !important;
}
.-my-90 {
  margin-top: -24rem !important;
  margin-bottom: -24rem !important;
}
.-mx-90 {
  margin-left: -24rem !important;
  margin-right: -24rem !important;
}
.-my-96 {
  margin-top: -24rem !important;
  margin-bottom: -24rem !important;
}
.-mx-96 {
  margin-left: -24rem !important;
  margin-right: -24rem !important;
}
.-my-100 {
  margin-top: -25rem !important;
  margin-bottom: -25rem !important;
}
.-mx-100 {
  margin-left: -25rem !important;
  margin-right: -25rem !important;
}
.-my-120 {
  margin-top: -30rem !important;
  margin-bottom: -30rem !important;
}
.-mx-120 {
  margin-left: -30rem !important;
  margin-right: -30rem !important;
}
.-my-128 {
  margin-top: -32rem !important;
  margin-bottom: -32rem !important;
}
.-mx-128 {
  margin-left: -32rem !important;
  margin-right: -32rem !important;
}
.-my-140 {
  margin-top: -35rem !important;
  margin-bottom: -35rem !important;
}
.-mx-140 {
  margin-left: -35rem !important;
  margin-right: -35rem !important;
}
.-my-160 {
  margin-top: -40rem !important;
  margin-bottom: -40rem !important;
}
.-mx-160 {
  margin-left: -40rem !important;
  margin-right: -40rem !important;
}
.-my-180 {
  margin-top: -45rem !important;
  margin-bottom: -45rem !important;
}
.-mx-180 {
  margin-left: -45rem !important;
  margin-right: -45rem !important;
}
.-my-192 {
  margin-top: -48rem !important;
  margin-bottom: -48rem !important;
}
.-mx-192 {
  margin-left: -48rem !important;
  margin-right: -48rem !important;
}
.-my-200 {
  margin-top: -50rem !important;
  margin-bottom: -50rem !important;
}
.-mx-200 {
  margin-left: -50rem !important;
  margin-right: -50rem !important;
}
.-my-240 {
  margin-top: -60rem !important;
  margin-bottom: -60rem !important;
}
.-mx-240 {
  margin-left: -60rem !important;
  margin-right: -60rem !important;
}
.-my-256 {
  margin-top: -64rem !important;
  margin-bottom: -64rem !important;
}
.-mx-256 {
  margin-left: -64rem !important;
  margin-right: -64rem !important;
}
.-my-280 {
  margin-top: -70rem !important;
  margin-bottom: -70rem !important;
}
.-mx-280 {
  margin-left: -70rem !important;
  margin-right: -70rem !important;
}
.-my-320 {
  margin-top: -80rem !important;
  margin-bottom: -80rem !important;
}
.-mx-320 {
  margin-left: -80rem !important;
  margin-right: -80rem !important;
}
.-my-360 {
  margin-top: -90rem !important;
  margin-bottom: -90rem !important;
}
.-mx-360 {
  margin-left: -90rem !important;
  margin-right: -90rem !important;
}
.-my-400 {
  margin-top: -100rem !important;
  margin-bottom: -100rem !important;
}
.-mx-400 {
  margin-left: -100rem !important;
  margin-right: -100rem !important;
}
.-my-480 {
  margin-top: -120rem !important;
  margin-bottom: -120rem !important;
}
.-mx-480 {
  margin-left: -120rem !important;
  margin-right: -120rem !important;
}
.-my-px {
  margin-top: -1px !important;
  margin-bottom: -1px !important;
}
.-mx-px {
  margin-left: -1px !important;
  margin-right: -1px !important;
}
.-my-0\.5 {
  margin-top: -0.125rem !important;
  margin-bottom: -0.125rem !important;
}
.-mx-0\.5 {
  margin-left: -0.125rem !important;
  margin-right: -0.125rem !important;
}
.-my-1\.5 {
  margin-top: -0.375rem !important;
  margin-bottom: -0.375rem !important;
}
.-mx-1\.5 {
  margin-left: -0.375rem !important;
  margin-right: -0.375rem !important;
}
.-my-2\.5 {
  margin-top: -0.625rem !important;
  margin-bottom: -0.625rem !important;
}
.-mx-2\.5 {
  margin-left: -0.625rem !important;
  margin-right: -0.625rem !important;
}
.-my-3\.5 {
  margin-top: -0.875rem !important;
  margin-bottom: -0.875rem !important;
}
.-mx-3\.5 {
  margin-left: -0.875rem !important;
  margin-right: -0.875rem !important;
}
.-my-1\/2 {
  margin-top: -50% !important;
  margin-bottom: -50% !important;
}
.-mx-1\/2 {
  margin-left: -50% !important;
  margin-right: -50% !important;
}
.-my-1\/3 {
  margin-top: -33.33333% !important;
  margin-bottom: -33.33333% !important;
}
.-mx-1\/3 {
  margin-left: -33.33333% !important;
  margin-right: -33.33333% !important;
}
.-my-2\/3 {
  margin-top: -66.66667% !important;
  margin-bottom: -66.66667% !important;
}
.-mx-2\/3 {
  margin-left: -66.66667% !important;
  margin-right: -66.66667% !important;
}
.-my-1\/4 {
  margin-top: -25% !important;
  margin-bottom: -25% !important;
}
.-mx-1\/4 {
  margin-left: -25% !important;
  margin-right: -25% !important;
}
.-my-2\/4 {
  margin-top: -50% !important;
  margin-bottom: -50% !important;
}
.-mx-2\/4 {
  margin-left: -50% !important;
  margin-right: -50% !important;
}
.-my-3\/4 {
  margin-top: -75% !important;
  margin-bottom: -75% !important;
}
.-mx-3\/4 {
  margin-left: -75% !important;
  margin-right: -75% !important;
}
.-my-1\/5 {
  margin-top: -20% !important;
  margin-bottom: -20% !important;
}
.-mx-1\/5 {
  margin-left: -20% !important;
  margin-right: -20% !important;
}
.-my-2\/5 {
  margin-top: -40% !important;
  margin-bottom: -40% !important;
}
.-mx-2\/5 {
  margin-left: -40% !important;
  margin-right: -40% !important;
}
.-my-3\/5 {
  margin-top: -60% !important;
  margin-bottom: -60% !important;
}
.-mx-3\/5 {
  margin-left: -60% !important;
  margin-right: -60% !important;
}
.-my-4\/5 {
  margin-top: -80% !important;
  margin-bottom: -80% !important;
}
.-mx-4\/5 {
  margin-left: -80% !important;
  margin-right: -80% !important;
}
.-my-1\/6 {
  margin-top: -16.66667% !important;
  margin-bottom: -16.66667% !important;
}
.-mx-1\/6 {
  margin-left: -16.66667% !important;
  margin-right: -16.66667% !important;
}
.-my-2\/6 {
  margin-top: -33.33333% !important;
  margin-bottom: -33.33333% !important;
}
.-mx-2\/6 {
  margin-left: -33.33333% !important;
  margin-right: -33.33333% !important;
}
.-my-3\/6 {
  margin-top: -50% !important;
  margin-bottom: -50% !important;
}
.-mx-3\/6 {
  margin-left: -50% !important;
  margin-right: -50% !important;
}
.-my-4\/6 {
  margin-top: -66.66667% !important;
  margin-bottom: -66.66667% !important;
}
.-mx-4\/6 {
  margin-left: -66.66667% !important;
  margin-right: -66.66667% !important;
}
.-my-5\/6 {
  margin-top: -83.33333% !important;
  margin-bottom: -83.33333% !important;
}
.-mx-5\/6 {
  margin-left: -83.33333% !important;
  margin-right: -83.33333% !important;
}
.-my-1\/12 {
  margin-top: -8.33333% !important;
  margin-bottom: -8.33333% !important;
}
.-mx-1\/12 {
  margin-left: -8.33333% !important;
  margin-right: -8.33333% !important;
}
.-my-2\/12 {
  margin-top: -16.66667% !important;
  margin-bottom: -16.66667% !important;
}
.-mx-2\/12 {
  margin-left: -16.66667% !important;
  margin-right: -16.66667% !important;
}
.-my-3\/12 {
  margin-top: -25% !important;
  margin-bottom: -25% !important;
}
.-mx-3\/12 {
  margin-left: -25% !important;
  margin-right: -25% !important;
}
.-my-4\/12 {
  margin-top: -33.33333% !important;
  margin-bottom: -33.33333% !important;
}
.-mx-4\/12 {
  margin-left: -33.33333% !important;
  margin-right: -33.33333% !important;
}
.-my-5\/12 {
  margin-top: -41.66667% !important;
  margin-bottom: -41.66667% !important;
}
.-mx-5\/12 {
  margin-left: -41.66667% !important;
  margin-right: -41.66667% !important;
}
.-my-6\/12 {
  margin-top: -50% !important;
  margin-bottom: -50% !important;
}
.-mx-6\/12 {
  margin-left: -50% !important;
  margin-right: -50% !important;
}
.-my-7\/12 {
  margin-top: -58.33333% !important;
  margin-bottom: -58.33333% !important;
}
.-mx-7\/12 {
  margin-left: -58.33333% !important;
  margin-right: -58.33333% !important;
}
.-my-8\/12 {
  margin-top: -66.66667% !important;
  margin-bottom: -66.66667% !important;
}
.-mx-8\/12 {
  margin-left: -66.66667% !important;
  margin-right: -66.66667% !important;
}
.-my-9\/12 {
  margin-top: -75% !important;
  margin-bottom: -75% !important;
}
.-mx-9\/12 {
  margin-left: -75% !important;
  margin-right: -75% !important;
}
.-my-10\/12 {
  margin-top: -83.33333% !important;
  margin-bottom: -83.33333% !important;
}
.-mx-10\/12 {
  margin-left: -83.33333% !important;
  margin-right: -83.33333% !important;
}
.-my-11\/12 {
  margin-top: -91.66667% !important;
  margin-bottom: -91.66667% !important;
}
.-mx-11\/12 {
  margin-left: -91.66667% !important;
  margin-right: -91.66667% !important;
}
.-my-full {
  margin-top: -100% !important;
  margin-bottom: -100% !important;
}
.-mx-full {
  margin-left: -100% !important;
  margin-right: -100% !important;
}
.-my-2px {
  margin-top: -2px !important;
  margin-bottom: -2px !important;
}
.-mx-2px {
  margin-left: -2px !important;
  margin-right: -2px !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.mt-3 {
  margin-top: 0.75rem !important;
}
.mr-3 {
  margin-right: 0.75rem !important;
}
.mb-3 {
  margin-bottom: 0.75rem !important;
}
.ml-3 {
  margin-left: 0.75rem !important;
}
.mt-4 {
  margin-top: 1rem !important;
}
.mr-4 {
  margin-right: 1rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.ml-4 {
  margin-left: 1rem !important;
}
.mt-5 {
  margin-top: 1.25rem !important;
}
.mr-5 {
  margin-right: 1.25rem !important;
}
.mb-5 {
  margin-bottom: 1.25rem !important;
}
.ml-5 {
  margin-left: 1.25rem !important;
}
.mt-6 {
  margin-top: 1.5rem !important;
}
.mr-6 {
  margin-right: 1.5rem !important;
}
.mb-6 {
  margin-bottom: 1.5rem !important;
}
.ml-6 {
  margin-left: 1.5rem !important;
}
.mt-7 {
  margin-top: 1.75rem !important;
}
.mr-7 {
  margin-right: 1.75rem !important;
}
.mb-7 {
  margin-bottom: 1.75rem !important;
}
.ml-7 {
  margin-left: 1.75rem !important;
}
.mt-8 {
  margin-top: 2rem !important;
}
.mr-8 {
  margin-right: 2rem !important;
}
.mb-8 {
  margin-bottom: 2rem !important;
}
.ml-8 {
  margin-left: 2rem !important;
}
.mt-9 {
  margin-top: 2.25rem !important;
}
.mr-9 {
  margin-right: 2.25rem !important;
}
.mb-9 {
  margin-bottom: 2.25rem !important;
}
.ml-9 {
  margin-left: 2.25rem !important;
}
.mt-10 {
  margin-top: 2.5rem !important;
}
.mr-10 {
  margin-right: 2.5rem !important;
}
.mb-10 {
  margin-bottom: 2.5rem !important;
}
.ml-10 {
  margin-left: 2.5rem !important;
}
.mt-11 {
  margin-top: 2.75rem !important;
}
.mr-11 {
  margin-right: 2.75rem !important;
}
.mb-11 {
  margin-bottom: 2.75rem !important;
}
.ml-11 {
  margin-left: 2.75rem !important;
}
.mt-12 {
  margin-top: 3rem !important;
}
.mr-12 {
  margin-right: 3rem !important;
}
.mb-12 {
  margin-bottom: 3rem !important;
}
.ml-12 {
  margin-left: 3rem !important;
}
.mt-13 {
  margin-top: 3.25rem !important;
}
.mr-13 {
  margin-right: 3.25rem !important;
}
.mb-13 {
  margin-bottom: 3.25rem !important;
}
.ml-13 {
  margin-left: 3.25rem !important;
}
.mt-14 {
  margin-top: 3.5rem !important;
}
.mr-14 {
  margin-right: 3.5rem !important;
}
.mb-14 {
  margin-bottom: 3.5rem !important;
}
.ml-14 {
  margin-left: 3.5rem !important;
}
.mt-15 {
  margin-top: 3.75rem !important;
}
.mr-15 {
  margin-right: 3.75rem !important;
}
.mb-15 {
  margin-bottom: 3.75rem !important;
}
.ml-15 {
  margin-left: 3.75rem !important;
}
.mt-16 {
  margin-top: 4rem !important;
}
.mr-16 {
  margin-right: 4rem !important;
}
.mb-16 {
  margin-bottom: 4rem !important;
}
.ml-16 {
  margin-left: 4rem !important;
}
.mt-18 {
  margin-top: 4.5rem !important;
}
.mr-18 {
  margin-right: 4.5rem !important;
}
.mb-18 {
  margin-bottom: 4.5rem !important;
}
.ml-18 {
  margin-left: 4.5rem !important;
}
.mt-20 {
  margin-top: 5rem !important;
}
.mr-20 {
  margin-right: 5rem !important;
}
.mb-20 {
  margin-bottom: 5rem !important;
}
.ml-20 {
  margin-left: 5rem !important;
}
.mt-22 {
  margin-top: 5.5rem !important;
}
.mr-22 {
  margin-right: 5.5rem !important;
}
.mb-22 {
  margin-bottom: 5.5rem !important;
}
.ml-22 {
  margin-left: 5.5rem !important;
}
.mt-24 {
  margin-top: 6rem !important;
}
.mr-24 {
  margin-right: 6rem !important;
}
.mb-24 {
  margin-bottom: 6rem !important;
}
.ml-24 {
  margin-left: 6rem !important;
}
.mt-26 {
  margin-top: 6.5rem !important;
}
.mr-26 {
  margin-right: 6.5rem !important;
}
.mb-26 {
  margin-bottom: 6.5rem !important;
}
.ml-26 {
  margin-left: 6.5rem !important;
}
.mt-28 {
  margin-top: 7rem !important;
}
.mr-28 {
  margin-right: 7rem !important;
}
.mb-28 {
  margin-bottom: 7rem !important;
}
.ml-28 {
  margin-left: 7rem !important;
}
.mt-30 {
  margin-top: 7.5rem !important;
}
.mr-30 {
  margin-right: 7.5rem !important;
}
.mb-30 {
  margin-bottom: 7.5rem !important;
}
.ml-30 {
  margin-left: 7.5rem !important;
}
.mt-32 {
  margin-top: 8rem !important;
}
.mr-32 {
  margin-right: 8rem !important;
}
.mb-32 {
  margin-bottom: 8rem !important;
}
.ml-32 {
  margin-left: 8rem !important;
}
.mt-36 {
  margin-top: 9rem !important;
}
.mr-36 {
  margin-right: 9rem !important;
}
.mb-36 {
  margin-bottom: 9rem !important;
}
.ml-36 {
  margin-left: 9rem !important;
}
.mt-40 {
  margin-top: 10rem !important;
}
.mr-40 {
  margin-right: 10rem !important;
}
.mb-40 {
  margin-bottom: 10rem !important;
}
.ml-40 {
  margin-left: 10rem !important;
}
.mt-44 {
  margin-top: 11rem !important;
}
.mr-44 {
  margin-right: 11rem !important;
}
.mb-44 {
  margin-bottom: 11rem !important;
}
.ml-44 {
  margin-left: 11rem !important;
}
.mt-48 {
  margin-top: 12rem !important;
}
.mr-48 {
  margin-right: 12rem !important;
}
.mb-48 {
  margin-bottom: 12rem !important;
}
.ml-48 {
  margin-left: 12rem !important;
}
.mt-50 {
  margin-top: 12.5rem !important;
}
.mr-50 {
  margin-right: 12.5rem !important;
}
.mb-50 {
  margin-bottom: 12.5rem !important;
}
.ml-50 {
  margin-left: 12.5rem !important;
}
.mt-52 {
  margin-top: 13rem !important;
}
.mr-52 {
  margin-right: 13rem !important;
}
.mb-52 {
  margin-bottom: 13rem !important;
}
.ml-52 {
  margin-left: 13rem !important;
}
.mt-56 {
  margin-top: 14rem !important;
}
.mr-56 {
  margin-right: 14rem !important;
}
.mb-56 {
  margin-bottom: 14rem !important;
}
.ml-56 {
  margin-left: 14rem !important;
}
.mt-60 {
  margin-top: 15rem !important;
}
.mr-60 {
  margin-right: 15rem !important;
}
.mb-60 {
  margin-bottom: 15rem !important;
}
.ml-60 {
  margin-left: 15rem !important;
}
.mt-64 {
  margin-top: 16rem !important;
}
.mr-64 {
  margin-right: 16rem !important;
}
.mb-64 {
  margin-bottom: 16rem !important;
}
.ml-64 {
  margin-left: 16rem !important;
}
.mt-72 {
  margin-top: 18rem !important;
}
.mr-72 {
  margin-right: 18rem !important;
}
.mb-72 {
  margin-bottom: 18rem !important;
}
.ml-72 {
  margin-left: 18rem !important;
}
.mt-80 {
  margin-top: 20rem !important;
}
.mr-80 {
  margin-right: 20rem !important;
}
.mb-80 {
  margin-bottom: 20rem !important;
}
.ml-80 {
  margin-left: 20rem !important;
}
.mt-90 {
  margin-top: 24rem !important;
}
.mr-90 {
  margin-right: 24rem !important;
}
.mb-90 {
  margin-bottom: 24rem !important;
}
.ml-90 {
  margin-left: 24rem !important;
}
.mt-96 {
  margin-top: 24rem !important;
}
.mr-96 {
  margin-right: 24rem !important;
}
.mb-96 {
  margin-bottom: 24rem !important;
}
.ml-96 {
  margin-left: 24rem !important;
}
.mt-100 {
  margin-top: 25rem !important;
}
.mr-100 {
  margin-right: 25rem !important;
}
.mb-100 {
  margin-bottom: 25rem !important;
}
.ml-100 {
  margin-left: 25rem !important;
}
.mt-120 {
  margin-top: 30rem !important;
}
.mr-120 {
  margin-right: 30rem !important;
}
.mb-120 {
  margin-bottom: 30rem !important;
}
.ml-120 {
  margin-left: 30rem !important;
}
.mt-128 {
  margin-top: 32rem !important;
}
.mr-128 {
  margin-right: 32rem !important;
}
.mb-128 {
  margin-bottom: 32rem !important;
}
.ml-128 {
  margin-left: 32rem !important;
}
.mt-140 {
  margin-top: 35rem !important;
}
.mr-140 {
  margin-right: 35rem !important;
}
.mb-140 {
  margin-bottom: 35rem !important;
}
.ml-140 {
  margin-left: 35rem !important;
}
.mt-160 {
  margin-top: 40rem !important;
}
.mr-160 {
  margin-right: 40rem !important;
}
.mb-160 {
  margin-bottom: 40rem !important;
}
.ml-160 {
  margin-left: 40rem !important;
}
.mt-180 {
  margin-top: 45rem !important;
}
.mr-180 {
  margin-right: 45rem !important;
}
.mb-180 {
  margin-bottom: 45rem !important;
}
.ml-180 {
  margin-left: 45rem !important;
}
.mt-192 {
  margin-top: 48rem !important;
}
.mr-192 {
  margin-right: 48rem !important;
}
.mb-192 {
  margin-bottom: 48rem !important;
}
.ml-192 {
  margin-left: 48rem !important;
}
.mt-200 {
  margin-top: 50rem !important;
}
.mr-200 {
  margin-right: 50rem !important;
}
.mb-200 {
  margin-bottom: 50rem !important;
}
.ml-200 {
  margin-left: 50rem !important;
}
.mt-240 {
  margin-top: 60rem !important;
}
.mr-240 {
  margin-right: 60rem !important;
}
.mb-240 {
  margin-bottom: 60rem !important;
}
.ml-240 {
  margin-left: 60rem !important;
}
.mt-256 {
  margin-top: 64rem !important;
}
.mr-256 {
  margin-right: 64rem !important;
}
.mb-256 {
  margin-bottom: 64rem !important;
}
.ml-256 {
  margin-left: 64rem !important;
}
.mt-280 {
  margin-top: 70rem !important;
}
.mr-280 {
  margin-right: 70rem !important;
}
.mb-280 {
  margin-bottom: 70rem !important;
}
.ml-280 {
  margin-left: 70rem !important;
}
.mt-320 {
  margin-top: 80rem !important;
}
.mr-320 {
  margin-right: 80rem !important;
}
.mb-320 {
  margin-bottom: 80rem !important;
}
.ml-320 {
  margin-left: 80rem !important;
}
.mt-360 {
  margin-top: 90rem !important;
}
.mr-360 {
  margin-right: 90rem !important;
}
.mb-360 {
  margin-bottom: 90rem !important;
}
.ml-360 {
  margin-left: 90rem !important;
}
.mt-400 {
  margin-top: 100rem !important;
}
.mr-400 {
  margin-right: 100rem !important;
}
.mb-400 {
  margin-bottom: 100rem !important;
}
.ml-400 {
  margin-left: 100rem !important;
}
.mt-480 {
  margin-top: 120rem !important;
}
.mr-480 {
  margin-right: 120rem !important;
}
.mb-480 {
  margin-bottom: 120rem !important;
}
.ml-480 {
  margin-left: 120rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
.mt-px {
  margin-top: 1px !important;
}
.mr-px {
  margin-right: 1px !important;
}
.mb-px {
  margin-bottom: 1px !important;
}
.ml-px {
  margin-left: 1px !important;
}
.mt-0\.5 {
  margin-top: 0.125rem !important;
}
.mr-0\.5 {
  margin-right: 0.125rem !important;
}
.mb-0\.5 {
  margin-bottom: 0.125rem !important;
}
.ml-0\.5 {
  margin-left: 0.125rem !important;
}
.mt-1\.5 {
  margin-top: 0.375rem !important;
}
.mr-1\.5 {
  margin-right: 0.375rem !important;
}
.mb-1\.5 {
  margin-bottom: 0.375rem !important;
}
.ml-1\.5 {
  margin-left: 0.375rem !important;
}
.mt-2\.5 {
  margin-top: 0.625rem !important;
}
.mr-2\.5 {
  margin-right: 0.625rem !important;
}
.mb-2\.5 {
  margin-bottom: 0.625rem !important;
}
.ml-2\.5 {
  margin-left: 0.625rem !important;
}
.mt-3\.5 {
  margin-top: 0.875rem !important;
}
.mr-3\.5 {
  margin-right: 0.875rem !important;
}
.mb-3\.5 {
  margin-bottom: 0.875rem !important;
}
.ml-3\.5 {
  margin-left: 0.875rem !important;
}
.mt-1\/2 {
  margin-top: 50% !important;
}
.mr-1\/2 {
  margin-right: 50% !important;
}
.mb-1\/2 {
  margin-bottom: 50% !important;
}
.ml-1\/2 {
  margin-left: 50% !important;
}
.mt-1\/3 {
  margin-top: 33.333333% !important;
}
.mr-1\/3 {
  margin-right: 33.333333% !important;
}
.mb-1\/3 {
  margin-bottom: 33.333333% !important;
}
.ml-1\/3 {
  margin-left: 33.333333% !important;
}
.mt-2\/3 {
  margin-top: 66.666667% !important;
}
.mr-2\/3 {
  margin-right: 66.666667% !important;
}
.mb-2\/3 {
  margin-bottom: 66.666667% !important;
}
.ml-2\/3 {
  margin-left: 66.666667% !important;
}
.mt-1\/4 {
  margin-top: 25% !important;
}
.mr-1\/4 {
  margin-right: 25% !important;
}
.mb-1\/4 {
  margin-bottom: 25% !important;
}
.ml-1\/4 {
  margin-left: 25% !important;
}
.mt-2\/4 {
  margin-top: 50% !important;
}
.mr-2\/4 {
  margin-right: 50% !important;
}
.mb-2\/4 {
  margin-bottom: 50% !important;
}
.ml-2\/4 {
  margin-left: 50% !important;
}
.mt-3\/4 {
  margin-top: 75% !important;
}
.mr-3\/4 {
  margin-right: 75% !important;
}
.mb-3\/4 {
  margin-bottom: 75% !important;
}
.ml-3\/4 {
  margin-left: 75% !important;
}
.mt-1\/5 {
  margin-top: 20% !important;
}
.mr-1\/5 {
  margin-right: 20% !important;
}
.mb-1\/5 {
  margin-bottom: 20% !important;
}
.ml-1\/5 {
  margin-left: 20% !important;
}
.mt-2\/5 {
  margin-top: 40% !important;
}
.mr-2\/5 {
  margin-right: 40% !important;
}
.mb-2\/5 {
  margin-bottom: 40% !important;
}
.ml-2\/5 {
  margin-left: 40% !important;
}
.mt-3\/5 {
  margin-top: 60% !important;
}
.mr-3\/5 {
  margin-right: 60% !important;
}
.mb-3\/5 {
  margin-bottom: 60% !important;
}
.ml-3\/5 {
  margin-left: 60% !important;
}
.mt-4\/5 {
  margin-top: 80% !important;
}
.mr-4\/5 {
  margin-right: 80% !important;
}
.mb-4\/5 {
  margin-bottom: 80% !important;
}
.ml-4\/5 {
  margin-left: 80% !important;
}
.mt-1\/6 {
  margin-top: 16.666667% !important;
}
.mr-1\/6 {
  margin-right: 16.666667% !important;
}
.mb-1\/6 {
  margin-bottom: 16.666667% !important;
}
.ml-1\/6 {
  margin-left: 16.666667% !important;
}
.mt-2\/6 {
  margin-top: 33.333333% !important;
}
.mr-2\/6 {
  margin-right: 33.333333% !important;
}
.mb-2\/6 {
  margin-bottom: 33.333333% !important;
}
.ml-2\/6 {
  margin-left: 33.333333% !important;
}
.mt-3\/6 {
  margin-top: 50% !important;
}
.mr-3\/6 {
  margin-right: 50% !important;
}
.mb-3\/6 {
  margin-bottom: 50% !important;
}
.ml-3\/6 {
  margin-left: 50% !important;
}
.mt-4\/6 {
  margin-top: 66.666667% !important;
}
.mr-4\/6 {
  margin-right: 66.666667% !important;
}
.mb-4\/6 {
  margin-bottom: 66.666667% !important;
}
.ml-4\/6 {
  margin-left: 66.666667% !important;
}
.mt-5\/6 {
  margin-top: 83.333333% !important;
}
.mr-5\/6 {
  margin-right: 83.333333% !important;
}
.mb-5\/6 {
  margin-bottom: 83.333333% !important;
}
.ml-5\/6 {
  margin-left: 83.333333% !important;
}
.mt-1\/12 {
  margin-top: 8.333333% !important;
}
.mr-1\/12 {
  margin-right: 8.333333% !important;
}
.mb-1\/12 {
  margin-bottom: 8.333333% !important;
}
.ml-1\/12 {
  margin-left: 8.333333% !important;
}
.mt-2\/12 {
  margin-top: 16.666667% !important;
}
.mr-2\/12 {
  margin-right: 16.666667% !important;
}
.mb-2\/12 {
  margin-bottom: 16.666667% !important;
}
.ml-2\/12 {
  margin-left: 16.666667% !important;
}
.mt-3\/12 {
  margin-top: 25% !important;
}
.mr-3\/12 {
  margin-right: 25% !important;
}
.mb-3\/12 {
  margin-bottom: 25% !important;
}
.ml-3\/12 {
  margin-left: 25% !important;
}
.mt-4\/12 {
  margin-top: 33.333333% !important;
}
.mr-4\/12 {
  margin-right: 33.333333% !important;
}
.mb-4\/12 {
  margin-bottom: 33.333333% !important;
}
.ml-4\/12 {
  margin-left: 33.333333% !important;
}
.mt-5\/12 {
  margin-top: 41.666667% !important;
}
.mr-5\/12 {
  margin-right: 41.666667% !important;
}
.mb-5\/12 {
  margin-bottom: 41.666667% !important;
}
.ml-5\/12 {
  margin-left: 41.666667% !important;
}
.mt-6\/12 {
  margin-top: 50% !important;
}
.mr-6\/12 {
  margin-right: 50% !important;
}
.mb-6\/12 {
  margin-bottom: 50% !important;
}
.ml-6\/12 {
  margin-left: 50% !important;
}
.mt-7\/12 {
  margin-top: 58.333333% !important;
}
.mr-7\/12 {
  margin-right: 58.333333% !important;
}
.mb-7\/12 {
  margin-bottom: 58.333333% !important;
}
.ml-7\/12 {
  margin-left: 58.333333% !important;
}
.mt-8\/12 {
  margin-top: 66.666667% !important;
}
.mr-8\/12 {
  margin-right: 66.666667% !important;
}
.mb-8\/12 {
  margin-bottom: 66.666667% !important;
}
.ml-8\/12 {
  margin-left: 66.666667% !important;
}
.mt-9\/12 {
  margin-top: 75% !important;
}
.mr-9\/12 {
  margin-right: 75% !important;
}
.mb-9\/12 {
  margin-bottom: 75% !important;
}
.ml-9\/12 {
  margin-left: 75% !important;
}
.mt-10\/12 {
  margin-top: 83.333333% !important;
}
.mr-10\/12 {
  margin-right: 83.333333% !important;
}
.mb-10\/12 {
  margin-bottom: 83.333333% !important;
}
.ml-10\/12 {
  margin-left: 83.333333% !important;
}
.mt-11\/12 {
  margin-top: 91.666667% !important;
}
.mr-11\/12 {
  margin-right: 91.666667% !important;
}
.mb-11\/12 {
  margin-bottom: 91.666667% !important;
}
.ml-11\/12 {
  margin-left: 91.666667% !important;
}
.mt-full {
  margin-top: 100% !important;
}
.mr-full {
  margin-right: 100% !important;
}
.mb-full {
  margin-bottom: 100% !important;
}
.ml-full {
  margin-left: 100% !important;
}
.mt-2px {
  margin-top: 2px !important;
}
.mr-2px {
  margin-right: 2px !important;
}
.mb-2px {
  margin-bottom: 2px !important;
}
.ml-2px {
  margin-left: 2px !important;
}
.-mt-1 {
  margin-top: -0.25rem !important;
}
.-mr-1 {
  margin-right: -0.25rem !important;
}
.-mb-1 {
  margin-bottom: -0.25rem !important;
}
.-ml-1 {
  margin-left: -0.25rem !important;
}
.-mt-2 {
  margin-top: -0.5rem !important;
}
.-mr-2 {
  margin-right: -0.5rem !important;
}
.-mb-2 {
  margin-bottom: -0.5rem !important;
}
.-ml-2 {
  margin-left: -0.5rem !important;
}
.-mt-3 {
  margin-top: -0.75rem !important;
}
.-mr-3 {
  margin-right: -0.75rem !important;
}
.-mb-3 {
  margin-bottom: -0.75rem !important;
}
.-ml-3 {
  margin-left: -0.75rem !important;
}
.-mt-4 {
  margin-top: -1rem !important;
}
.-mr-4 {
  margin-right: -1rem !important;
}
.-mb-4 {
  margin-bottom: -1rem !important;
}
.-ml-4 {
  margin-left: -1rem !important;
}
.-mt-5 {
  margin-top: -1.25rem !important;
}
.-mr-5 {
  margin-right: -1.25rem !important;
}
.-mb-5 {
  margin-bottom: -1.25rem !important;
}
.-ml-5 {
  margin-left: -1.25rem !important;
}
.-mt-6 {
  margin-top: -1.5rem !important;
}
.-mr-6 {
  margin-right: -1.5rem !important;
}
.-mb-6 {
  margin-bottom: -1.5rem !important;
}
.-ml-6 {
  margin-left: -1.5rem !important;
}
.-mt-7 {
  margin-top: -1.75rem !important;
}
.-mr-7 {
  margin-right: -1.75rem !important;
}
.-mb-7 {
  margin-bottom: -1.75rem !important;
}
.-ml-7 {
  margin-left: -1.75rem !important;
}
.-mt-8 {
  margin-top: -2rem !important;
}
.-mr-8 {
  margin-right: -2rem !important;
}
.-mb-8 {
  margin-bottom: -2rem !important;
}
.-ml-8 {
  margin-left: -2rem !important;
}
.-mt-9 {
  margin-top: -2.25rem !important;
}
.-mr-9 {
  margin-right: -2.25rem !important;
}
.-mb-9 {
  margin-bottom: -2.25rem !important;
}
.-ml-9 {
  margin-left: -2.25rem !important;
}
.-mt-10 {
  margin-top: -2.5rem !important;
}
.-mr-10 {
  margin-right: -2.5rem !important;
}
.-mb-10 {
  margin-bottom: -2.5rem !important;
}
.-ml-10 {
  margin-left: -2.5rem !important;
}
.-mt-11 {
  margin-top: -2.75rem !important;
}
.-mr-11 {
  margin-right: -2.75rem !important;
}
.-mb-11 {
  margin-bottom: -2.75rem !important;
}
.-ml-11 {
  margin-left: -2.75rem !important;
}
.-mt-12 {
  margin-top: -3rem !important;
}
.-mr-12 {
  margin-right: -3rem !important;
}
.-mb-12 {
  margin-bottom: -3rem !important;
}
.-ml-12 {
  margin-left: -3rem !important;
}
.-mt-13 {
  margin-top: -3.25rem !important;
}
.-mr-13 {
  margin-right: -3.25rem !important;
}
.-mb-13 {
  margin-bottom: -3.25rem !important;
}
.-ml-13 {
  margin-left: -3.25rem !important;
}
.-mt-14 {
  margin-top: -3.5rem !important;
}
.-mr-14 {
  margin-right: -3.5rem !important;
}
.-mb-14 {
  margin-bottom: -3.5rem !important;
}
.-ml-14 {
  margin-left: -3.5rem !important;
}
.-mt-15 {
  margin-top: -3.75rem !important;
}
.-mr-15 {
  margin-right: -3.75rem !important;
}
.-mb-15 {
  margin-bottom: -3.75rem !important;
}
.-ml-15 {
  margin-left: -3.75rem !important;
}
.-mt-16 {
  margin-top: -4rem !important;
}
.-mr-16 {
  margin-right: -4rem !important;
}
.-mb-16 {
  margin-bottom: -4rem !important;
}
.-ml-16 {
  margin-left: -4rem !important;
}
.-mt-18 {
  margin-top: -4.5rem !important;
}
.-mr-18 {
  margin-right: -4.5rem !important;
}
.-mb-18 {
  margin-bottom: -4.5rem !important;
}
.-ml-18 {
  margin-left: -4.5rem !important;
}
.-mt-20 {
  margin-top: -5rem !important;
}
.-mr-20 {
  margin-right: -5rem !important;
}
.-mb-20 {
  margin-bottom: -5rem !important;
}
.-ml-20 {
  margin-left: -5rem !important;
}
.-mt-22 {
  margin-top: -5.5rem !important;
}
.-mr-22 {
  margin-right: -5.5rem !important;
}
.-mb-22 {
  margin-bottom: -5.5rem !important;
}
.-ml-22 {
  margin-left: -5.5rem !important;
}
.-mt-24 {
  margin-top: -6rem !important;
}
.-mr-24 {
  margin-right: -6rem !important;
}
.-mb-24 {
  margin-bottom: -6rem !important;
}
.-ml-24 {
  margin-left: -6rem !important;
}
.-mt-26 {
  margin-top: -6.5rem !important;
}
.-mr-26 {
  margin-right: -6.5rem !important;
}
.-mb-26 {
  margin-bottom: -6.5rem !important;
}
.-ml-26 {
  margin-left: -6.5rem !important;
}
.-mt-28 {
  margin-top: -7rem !important;
}
.-mr-28 {
  margin-right: -7rem !important;
}
.-mb-28 {
  margin-bottom: -7rem !important;
}
.-ml-28 {
  margin-left: -7rem !important;
}
.-mt-30 {
  margin-top: -7.5rem !important;
}
.-mr-30 {
  margin-right: -7.5rem !important;
}
.-mb-30 {
  margin-bottom: -7.5rem !important;
}
.-ml-30 {
  margin-left: -7.5rem !important;
}
.-mt-32 {
  margin-top: -8rem !important;
}
.-mr-32 {
  margin-right: -8rem !important;
}
.-mb-32 {
  margin-bottom: -8rem !important;
}
.-ml-32 {
  margin-left: -8rem !important;
}
.-mt-36 {
  margin-top: -9rem !important;
}
.-mr-36 {
  margin-right: -9rem !important;
}
.-mb-36 {
  margin-bottom: -9rem !important;
}
.-ml-36 {
  margin-left: -9rem !important;
}
.-mt-40 {
  margin-top: -10rem !important;
}
.-mr-40 {
  margin-right: -10rem !important;
}
.-mb-40 {
  margin-bottom: -10rem !important;
}
.-ml-40 {
  margin-left: -10rem !important;
}
.-mt-44 {
  margin-top: -11rem !important;
}
.-mr-44 {
  margin-right: -11rem !important;
}
.-mb-44 {
  margin-bottom: -11rem !important;
}
.-ml-44 {
  margin-left: -11rem !important;
}
.-mt-48 {
  margin-top: -12rem !important;
}
.-mr-48 {
  margin-right: -12rem !important;
}
.-mb-48 {
  margin-bottom: -12rem !important;
}
.-ml-48 {
  margin-left: -12rem !important;
}
.-mt-50 {
  margin-top: -12.5rem !important;
}
.-mr-50 {
  margin-right: -12.5rem !important;
}
.-mb-50 {
  margin-bottom: -12.5rem !important;
}
.-ml-50 {
  margin-left: -12.5rem !important;
}
.-mt-52 {
  margin-top: -13rem !important;
}
.-mr-52 {
  margin-right: -13rem !important;
}
.-mb-52 {
  margin-bottom: -13rem !important;
}
.-ml-52 {
  margin-left: -13rem !important;
}
.-mt-56 {
  margin-top: -14rem !important;
}
.-mr-56 {
  margin-right: -14rem !important;
}
.-mb-56 {
  margin-bottom: -14rem !important;
}
.-ml-56 {
  margin-left: -14rem !important;
}
.-mt-60 {
  margin-top: -15rem !important;
}
.-mr-60 {
  margin-right: -15rem !important;
}
.-mb-60 {
  margin-bottom: -15rem !important;
}
.-ml-60 {
  margin-left: -15rem !important;
}
.-mt-64 {
  margin-top: -16rem !important;
}
.-mr-64 {
  margin-right: -16rem !important;
}
.-mb-64 {
  margin-bottom: -16rem !important;
}
.-ml-64 {
  margin-left: -16rem !important;
}
.-mt-72 {
  margin-top: -18rem !important;
}
.-mr-72 {
  margin-right: -18rem !important;
}
.-mb-72 {
  margin-bottom: -18rem !important;
}
.-ml-72 {
  margin-left: -18rem !important;
}
.-mt-80 {
  margin-top: -20rem !important;
}
.-mr-80 {
  margin-right: -20rem !important;
}
.-mb-80 {
  margin-bottom: -20rem !important;
}
.-ml-80 {
  margin-left: -20rem !important;
}
.-mt-90 {
  margin-top: -24rem !important;
}
.-mr-90 {
  margin-right: -24rem !important;
}
.-mb-90 {
  margin-bottom: -24rem !important;
}
.-ml-90 {
  margin-left: -24rem !important;
}
.-mt-96 {
  margin-top: -24rem !important;
}
.-mr-96 {
  margin-right: -24rem !important;
}
.-mb-96 {
  margin-bottom: -24rem !important;
}
.-ml-96 {
  margin-left: -24rem !important;
}
.-mt-100 {
  margin-top: -25rem !important;
}
.-mr-100 {
  margin-right: -25rem !important;
}
.-mb-100 {
  margin-bottom: -25rem !important;
}
.-ml-100 {
  margin-left: -25rem !important;
}
.-mt-120 {
  margin-top: -30rem !important;
}
.-mr-120 {
  margin-right: -30rem !important;
}
.-mb-120 {
  margin-bottom: -30rem !important;
}
.-ml-120 {
  margin-left: -30rem !important;
}
.-mt-128 {
  margin-top: -32rem !important;
}
.-mr-128 {
  margin-right: -32rem !important;
}
.-mb-128 {
  margin-bottom: -32rem !important;
}
.-ml-128 {
  margin-left: -32rem !important;
}
.-mt-140 {
  margin-top: -35rem !important;
}
.-mr-140 {
  margin-right: -35rem !important;
}
.-mb-140 {
  margin-bottom: -35rem !important;
}
.-ml-140 {
  margin-left: -35rem !important;
}
.-mt-160 {
  margin-top: -40rem !important;
}
.-mr-160 {
  margin-right: -40rem !important;
}
.-mb-160 {
  margin-bottom: -40rem !important;
}
.-ml-160 {
  margin-left: -40rem !important;
}
.-mt-180 {
  margin-top: -45rem !important;
}
.-mr-180 {
  margin-right: -45rem !important;
}
.-mb-180 {
  margin-bottom: -45rem !important;
}
.-ml-180 {
  margin-left: -45rem !important;
}
.-mt-192 {
  margin-top: -48rem !important;
}
.-mr-192 {
  margin-right: -48rem !important;
}
.-mb-192 {
  margin-bottom: -48rem !important;
}
.-ml-192 {
  margin-left: -48rem !important;
}
.-mt-200 {
  margin-top: -50rem !important;
}
.-mr-200 {
  margin-right: -50rem !important;
}
.-mb-200 {
  margin-bottom: -50rem !important;
}
.-ml-200 {
  margin-left: -50rem !important;
}
.-mt-240 {
  margin-top: -60rem !important;
}
.-mr-240 {
  margin-right: -60rem !important;
}
.-mb-240 {
  margin-bottom: -60rem !important;
}
.-ml-240 {
  margin-left: -60rem !important;
}
.-mt-256 {
  margin-top: -64rem !important;
}
.-mr-256 {
  margin-right: -64rem !important;
}
.-mb-256 {
  margin-bottom: -64rem !important;
}
.-ml-256 {
  margin-left: -64rem !important;
}
.-mt-280 {
  margin-top: -70rem !important;
}
.-mr-280 {
  margin-right: -70rem !important;
}
.-mb-280 {
  margin-bottom: -70rem !important;
}
.-ml-280 {
  margin-left: -70rem !important;
}
.-mt-320 {
  margin-top: -80rem !important;
}
.-mr-320 {
  margin-right: -80rem !important;
}
.-mb-320 {
  margin-bottom: -80rem !important;
}
.-ml-320 {
  margin-left: -80rem !important;
}
.-mt-360 {
  margin-top: -90rem !important;
}
.-mr-360 {
  margin-right: -90rem !important;
}
.-mb-360 {
  margin-bottom: -90rem !important;
}
.-ml-360 {
  margin-left: -90rem !important;
}
.-mt-400 {
  margin-top: -100rem !important;
}
.-mr-400 {
  margin-right: -100rem !important;
}
.-mb-400 {
  margin-bottom: -100rem !important;
}
.-ml-400 {
  margin-left: -100rem !important;
}
.-mt-480 {
  margin-top: -120rem !important;
}
.-mr-480 {
  margin-right: -120rem !important;
}
.-mb-480 {
  margin-bottom: -120rem !important;
}
.-ml-480 {
  margin-left: -120rem !important;
}
.-mt-px {
  margin-top: -1px !important;
}
.-mr-px {
  margin-right: -1px !important;
}
.-mb-px {
  margin-bottom: -1px !important;
}
.-ml-px {
  margin-left: -1px !important;
}
.-mt-0\.5 {
  margin-top: -0.125rem !important;
}
.-mr-0\.5 {
  margin-right: -0.125rem !important;
}
.-mb-0\.5 {
  margin-bottom: -0.125rem !important;
}
.-ml-0\.5 {
  margin-left: -0.125rem !important;
}
.-mt-1\.5 {
  margin-top: -0.375rem !important;
}
.-mr-1\.5 {
  margin-right: -0.375rem !important;
}
.-mb-1\.5 {
  margin-bottom: -0.375rem !important;
}
.-ml-1\.5 {
  margin-left: -0.375rem !important;
}
.-mt-2\.5 {
  margin-top: -0.625rem !important;
}
.-mr-2\.5 {
  margin-right: -0.625rem !important;
}
.-mb-2\.5 {
  margin-bottom: -0.625rem !important;
}
.-ml-2\.5 {
  margin-left: -0.625rem !important;
}
.-mt-3\.5 {
  margin-top: -0.875rem !important;
}
.-mr-3\.5 {
  margin-right: -0.875rem !important;
}
.-mb-3\.5 {
  margin-bottom: -0.875rem !important;
}
.-ml-3\.5 {
  margin-left: -0.875rem !important;
}
.-mt-1\/2 {
  margin-top: -50% !important;
}
.-mr-1\/2 {
  margin-right: -50% !important;
}
.-mb-1\/2 {
  margin-bottom: -50% !important;
}
.-ml-1\/2 {
  margin-left: -50% !important;
}
.-mt-1\/3 {
  margin-top: -33.33333% !important;
}
.-mr-1\/3 {
  margin-right: -33.33333% !important;
}
.-mb-1\/3 {
  margin-bottom: -33.33333% !important;
}
.-ml-1\/3 {
  margin-left: -33.33333% !important;
}
.-mt-2\/3 {
  margin-top: -66.66667% !important;
}
.-mr-2\/3 {
  margin-right: -66.66667% !important;
}
.-mb-2\/3 {
  margin-bottom: -66.66667% !important;
}
.-ml-2\/3 {
  margin-left: -66.66667% !important;
}
.-mt-1\/4 {
  margin-top: -25% !important;
}
.-mr-1\/4 {
  margin-right: -25% !important;
}
.-mb-1\/4 {
  margin-bottom: -25% !important;
}
.-ml-1\/4 {
  margin-left: -25% !important;
}
.-mt-2\/4 {
  margin-top: -50% !important;
}
.-mr-2\/4 {
  margin-right: -50% !important;
}
.-mb-2\/4 {
  margin-bottom: -50% !important;
}
.-ml-2\/4 {
  margin-left: -50% !important;
}
.-mt-3\/4 {
  margin-top: -75% !important;
}
.-mr-3\/4 {
  margin-right: -75% !important;
}
.-mb-3\/4 {
  margin-bottom: -75% !important;
}
.-ml-3\/4 {
  margin-left: -75% !important;
}
.-mt-1\/5 {
  margin-top: -20% !important;
}
.-mr-1\/5 {
  margin-right: -20% !important;
}
.-mb-1\/5 {
  margin-bottom: -20% !important;
}
.-ml-1\/5 {
  margin-left: -20% !important;
}
.-mt-2\/5 {
  margin-top: -40% !important;
}
.-mr-2\/5 {
  margin-right: -40% !important;
}
.-mb-2\/5 {
  margin-bottom: -40% !important;
}
.-ml-2\/5 {
  margin-left: -40% !important;
}
.-mt-3\/5 {
  margin-top: -60% !important;
}
.-mr-3\/5 {
  margin-right: -60% !important;
}
.-mb-3\/5 {
  margin-bottom: -60% !important;
}
.-ml-3\/5 {
  margin-left: -60% !important;
}
.-mt-4\/5 {
  margin-top: -80% !important;
}
.-mr-4\/5 {
  margin-right: -80% !important;
}
.-mb-4\/5 {
  margin-bottom: -80% !important;
}
.-ml-4\/5 {
  margin-left: -80% !important;
}
.-mt-1\/6 {
  margin-top: -16.66667% !important;
}
.-mr-1\/6 {
  margin-right: -16.66667% !important;
}
.-mb-1\/6 {
  margin-bottom: -16.66667% !important;
}
.-ml-1\/6 {
  margin-left: -16.66667% !important;
}
.-mt-2\/6 {
  margin-top: -33.33333% !important;
}
.-mr-2\/6 {
  margin-right: -33.33333% !important;
}
.-mb-2\/6 {
  margin-bottom: -33.33333% !important;
}
.-ml-2\/6 {
  margin-left: -33.33333% !important;
}
.-mt-3\/6 {
  margin-top: -50% !important;
}
.-mr-3\/6 {
  margin-right: -50% !important;
}
.-mb-3\/6 {
  margin-bottom: -50% !important;
}
.-ml-3\/6 {
  margin-left: -50% !important;
}
.-mt-4\/6 {
  margin-top: -66.66667% !important;
}
.-mr-4\/6 {
  margin-right: -66.66667% !important;
}
.-mb-4\/6 {
  margin-bottom: -66.66667% !important;
}
.-ml-4\/6 {
  margin-left: -66.66667% !important;
}
.-mt-5\/6 {
  margin-top: -83.33333% !important;
}
.-mr-5\/6 {
  margin-right: -83.33333% !important;
}
.-mb-5\/6 {
  margin-bottom: -83.33333% !important;
}
.-ml-5\/6 {
  margin-left: -83.33333% !important;
}
.-mt-1\/12 {
  margin-top: -8.33333% !important;
}
.-mr-1\/12 {
  margin-right: -8.33333% !important;
}
.-mb-1\/12 {
  margin-bottom: -8.33333% !important;
}
.-ml-1\/12 {
  margin-left: -8.33333% !important;
}
.-mt-2\/12 {
  margin-top: -16.66667% !important;
}
.-mr-2\/12 {
  margin-right: -16.66667% !important;
}
.-mb-2\/12 {
  margin-bottom: -16.66667% !important;
}
.-ml-2\/12 {
  margin-left: -16.66667% !important;
}
.-mt-3\/12 {
  margin-top: -25% !important;
}
.-mr-3\/12 {
  margin-right: -25% !important;
}
.-mb-3\/12 {
  margin-bottom: -25% !important;
}
.-ml-3\/12 {
  margin-left: -25% !important;
}
.-mt-4\/12 {
  margin-top: -33.33333% !important;
}
.-mr-4\/12 {
  margin-right: -33.33333% !important;
}
.-mb-4\/12 {
  margin-bottom: -33.33333% !important;
}
.-ml-4\/12 {
  margin-left: -33.33333% !important;
}
.-mt-5\/12 {
  margin-top: -41.66667% !important;
}
.-mr-5\/12 {
  margin-right: -41.66667% !important;
}
.-mb-5\/12 {
  margin-bottom: -41.66667% !important;
}
.-ml-5\/12 {
  margin-left: -41.66667% !important;
}
.-mt-6\/12 {
  margin-top: -50% !important;
}
.-mr-6\/12 {
  margin-right: -50% !important;
}
.-mb-6\/12 {
  margin-bottom: -50% !important;
}
.-ml-6\/12 {
  margin-left: -50% !important;
}
.-mt-7\/12 {
  margin-top: -58.33333% !important;
}
.-mr-7\/12 {
  margin-right: -58.33333% !important;
}
.-mb-7\/12 {
  margin-bottom: -58.33333% !important;
}
.-ml-7\/12 {
  margin-left: -58.33333% !important;
}
.-mt-8\/12 {
  margin-top: -66.66667% !important;
}
.-mr-8\/12 {
  margin-right: -66.66667% !important;
}
.-mb-8\/12 {
  margin-bottom: -66.66667% !important;
}
.-ml-8\/12 {
  margin-left: -66.66667% !important;
}
.-mt-9\/12 {
  margin-top: -75% !important;
}
.-mr-9\/12 {
  margin-right: -75% !important;
}
.-mb-9\/12 {
  margin-bottom: -75% !important;
}
.-ml-9\/12 {
  margin-left: -75% !important;
}
.-mt-10\/12 {
  margin-top: -83.33333% !important;
}
.-mr-10\/12 {
  margin-right: -83.33333% !important;
}
.-mb-10\/12 {
  margin-bottom: -83.33333% !important;
}
.-ml-10\/12 {
  margin-left: -83.33333% !important;
}
.-mt-11\/12 {
  margin-top: -91.66667% !important;
}
.-mr-11\/12 {
  margin-right: -91.66667% !important;
}
.-mb-11\/12 {
  margin-bottom: -91.66667% !important;
}
.-ml-11\/12 {
  margin-left: -91.66667% !important;
}
.-mt-full {
  margin-top: -100% !important;
}
.-mr-full {
  margin-right: -100% !important;
}
.-mb-full {
  margin-bottom: -100% !important;
}
.-ml-full {
  margin-left: -100% !important;
}
.-mt-2px {
  margin-top: -2px !important;
}
.-mr-2px {
  margin-right: -2px !important;
}
.-mb-2px {
  margin-bottom: -2px !important;
}
.-ml-2px {
  margin-left: -2px !important;
}
.max-h-0 {
  max-height: 0 !important;
}
.max-h-1 {
  max-height: 0.25rem !important;
}
.max-h-2 {
  max-height: 0.5rem !important;
}
.max-h-3 {
  max-height: 0.75rem !important;
}
.max-h-4 {
  max-height: 1rem !important;
}
.max-h-5 {
  max-height: 1.25rem !important;
}
.max-h-6 {
  max-height: 1.5rem !important;
}
.max-h-7 {
  max-height: 1.75rem !important;
}
.max-h-8 {
  max-height: 2rem !important;
}
.max-h-9 {
  max-height: 2.25rem !important;
}
.max-h-10 {
  max-height: 2.5rem !important;
}
.max-h-11 {
  max-height: 2.75rem !important;
}
.max-h-12 {
  max-height: 3rem !important;
}
.max-h-13 {
  max-height: 3.25rem !important;
}
.max-h-14 {
  max-height: 3.5rem !important;
}
.max-h-15 {
  max-height: 3.75rem !important;
}
.max-h-16 {
  max-height: 4rem !important;
}
.max-h-18 {
  max-height: 4.5rem !important;
}
.max-h-20 {
  max-height: 5rem !important;
}
.max-h-22 {
  max-height: 5.5rem !important;
}
.max-h-24 {
  max-height: 6rem !important;
}
.max-h-26 {
  max-height: 6.5rem !important;
}
.max-h-28 {
  max-height: 7rem !important;
}
.max-h-30 {
  max-height: 7.5rem !important;
}
.max-h-32 {
  max-height: 8rem !important;
}
.max-h-36 {
  max-height: 9rem !important;
}
.max-h-40 {
  max-height: 10rem !important;
}
.max-h-44 {
  max-height: 11rem !important;
}
.max-h-48 {
  max-height: 12rem !important;
}
.max-h-50 {
  max-height: 12.5rem !important;
}
.max-h-52 {
  max-height: 13rem !important;
}
.max-h-56 {
  max-height: 14rem !important;
}
.max-h-60 {
  max-height: 15rem !important;
}
.max-h-64 {
  max-height: 16rem !important;
}
.max-h-72 {
  max-height: 18rem !important;
}
.max-h-80 {
  max-height: 20rem !important;
}
.max-h-90 {
  max-height: 24rem !important;
}
.max-h-96 {
  max-height: 24rem !important;
}
.max-h-100 {
  max-height: 25rem !important;
}
.max-h-120 {
  max-height: 30rem !important;
}
.max-h-128 {
  max-height: 32rem !important;
}
.max-h-140 {
  max-height: 35rem !important;
}
.max-h-160 {
  max-height: 40rem !important;
}
.max-h-180 {
  max-height: 45rem !important;
}
.max-h-192 {
  max-height: 48rem !important;
}
.max-h-200 {
  max-height: 50rem !important;
}
.max-h-240 {
  max-height: 60rem !important;
}
.max-h-256 {
  max-height: 64rem !important;
}
.max-h-280 {
  max-height: 70rem !important;
}
.max-h-320 {
  max-height: 80rem !important;
}
.max-h-360 {
  max-height: 90rem !important;
}
.max-h-400 {
  max-height: 100rem !important;
}
.max-h-480 {
  max-height: 120rem !important;
}
.max-h-screen {
  max-height: 100vh !important;
}
.max-h-px {
  max-height: 1px !important;
}
.max-h-0\.5 {
  max-height: 0.125rem !important;
}
.max-h-1\.5 {
  max-height: 0.375rem !important;
}
.max-h-2\.5 {
  max-height: 0.625rem !important;
}
.max-h-3\.5 {
  max-height: 0.875rem !important;
}
.max-h-1\/2 {
  max-height: 50% !important;
}
.max-h-1\/3 {
  max-height: 33.333333% !important;
}
.max-h-2\/3 {
  max-height: 66.666667% !important;
}
.max-h-1\/4 {
  max-height: 25% !important;
}
.max-h-2\/4 {
  max-height: 50% !important;
}
.max-h-3\/4 {
  max-height: 75% !important;
}
.max-h-1\/5 {
  max-height: 20% !important;
}
.max-h-2\/5 {
  max-height: 40% !important;
}
.max-h-3\/5 {
  max-height: 60% !important;
}
.max-h-4\/5 {
  max-height: 80% !important;
}
.max-h-1\/6 {
  max-height: 16.666667% !important;
}
.max-h-2\/6 {
  max-height: 33.333333% !important;
}
.max-h-3\/6 {
  max-height: 50% !important;
}
.max-h-4\/6 {
  max-height: 66.666667% !important;
}
.max-h-5\/6 {
  max-height: 83.333333% !important;
}
.max-h-1\/12 {
  max-height: 8.333333% !important;
}
.max-h-2\/12 {
  max-height: 16.666667% !important;
}
.max-h-3\/12 {
  max-height: 25% !important;
}
.max-h-4\/12 {
  max-height: 33.333333% !important;
}
.max-h-5\/12 {
  max-height: 41.666667% !important;
}
.max-h-6\/12 {
  max-height: 50% !important;
}
.max-h-7\/12 {
  max-height: 58.333333% !important;
}
.max-h-8\/12 {
  max-height: 66.666667% !important;
}
.max-h-9\/12 {
  max-height: 75% !important;
}
.max-h-10\/12 {
  max-height: 83.333333% !important;
}
.max-h-11\/12 {
  max-height: 91.666667% !important;
}
.max-h-full {
  max-height: 100% !important;
}
.max-h-2px {
  max-height: 2px !important;
}
.max-h-none {
  max-height: none !important;
}
.max-w-0 {
  max-width: 0 !important;
}
.max-w-1 {
  max-width: 0.25rem !important;
}
.max-w-2 {
  max-width: 0.5rem !important;
}
.max-w-3 {
  max-width: 0.75rem !important;
}
.max-w-4 {
  max-width: 1rem !important;
}
.max-w-5 {
  max-width: 1.25rem !important;
}
.max-w-6 {
  max-width: 1.5rem !important;
}
.max-w-7 {
  max-width: 1.75rem !important;
}
.max-w-8 {
  max-width: 2rem !important;
}
.max-w-9 {
  max-width: 2.25rem !important;
}
.max-w-10 {
  max-width: 2.5rem !important;
}
.max-w-11 {
  max-width: 2.75rem !important;
}
.max-w-12 {
  max-width: 3rem !important;
}
.max-w-13 {
  max-width: 3.25rem !important;
}
.max-w-14 {
  max-width: 3.5rem !important;
}
.max-w-15 {
  max-width: 3.75rem !important;
}
.max-w-16 {
  max-width: 4rem !important;
}
.max-w-18 {
  max-width: 4.5rem !important;
}
.max-w-20 {
  max-width: 5rem !important;
}
.max-w-22 {
  max-width: 5.5rem !important;
}
.max-w-24 {
  max-width: 6rem !important;
}
.max-w-26 {
  max-width: 6.5rem !important;
}
.max-w-28 {
  max-width: 7rem !important;
}
.max-w-30 {
  max-width: 7.5rem !important;
}
.max-w-32 {
  max-width: 8rem !important;
}
.max-w-36 {
  max-width: 9rem !important;
}
.max-w-40 {
  max-width: 10rem !important;
}
.max-w-44 {
  max-width: 11rem !important;
}
.max-w-48 {
  max-width: 12rem !important;
}
.max-w-50 {
  max-width: 12.5rem !important;
}
.max-w-52 {
  max-width: 13rem !important;
}
.max-w-56 {
  max-width: 14rem !important;
}
.max-w-60 {
  max-width: 15rem !important;
}
.max-w-64 {
  max-width: 16rem !important;
}
.max-w-72 {
  max-width: 18rem !important;
}
.max-w-80 {
  max-width: 20rem !important;
}
.max-w-90 {
  max-width: 24rem !important;
}
.max-w-96 {
  max-width: 24rem !important;
}
.max-w-100 {
  max-width: 25rem !important;
}
.max-w-120 {
  max-width: 30rem !important;
}
.max-w-128 {
  max-width: 32rem !important;
}
.max-w-140 {
  max-width: 35rem !important;
}
.max-w-160 {
  max-width: 40rem !important;
}
.max-w-180 {
  max-width: 45rem !important;
}
.max-w-192 {
  max-width: 48rem !important;
}
.max-w-200 {
  max-width: 50rem !important;
}
.max-w-240 {
  max-width: 60rem !important;
}
.max-w-256 {
  max-width: 64rem !important;
}
.max-w-280 {
  max-width: 70rem !important;
}
.max-w-320 {
  max-width: 80rem !important;
}
.max-w-360 {
  max-width: 90rem !important;
}
.max-w-400 {
  max-width: 100rem !important;
}
.max-w-480 {
  max-width: 120rem !important;
}
.max-w-none {
  max-width: none !important;
}
.max-w-xs {
  max-width: 20rem !important;
}
.max-w-sm {
  max-width: 24rem !important;
}
.max-w-md {
  max-width: 28rem !important;
}
.max-w-lg {
  max-width: 32rem !important;
}
.max-w-xl {
  max-width: 36rem !important;
}
.max-w-2xl {
  max-width: 42rem !important;
}
.max-w-3xl {
  max-width: 48rem !important;
}
.max-w-4xl {
  max-width: 56rem !important;
}
.max-w-5xl {
  max-width: 64rem !important;
}
.max-w-6xl {
  max-width: 72rem !important;
}
.max-w-7xl {
  max-width: 80rem !important;
}
.max-w-full {
  max-width: 100% !important;
}
.max-w-min-content {
  max-width: -webkit-min-content !important;
  max-width: -moz-min-content !important;
  max-width: min-content !important;
}
.max-w-max-content {
  max-width: -webkit-max-content !important;
  max-width: -moz-max-content !important;
  max-width: max-content !important;
}
.max-w-screen {
  max-width: 100vw !important;
}
.max-w-px {
  max-width: 1px !important;
}
.max-w-0\.5 {
  max-width: 0.125rem !important;
}
.max-w-1\.5 {
  max-width: 0.375rem !important;
}
.max-w-2\.5 {
  max-width: 0.625rem !important;
}
.max-w-3\.5 {
  max-width: 0.875rem !important;
}
.max-w-1\/2 {
  max-width: 50% !important;
}
.max-w-1\/3 {
  max-width: 33.333333% !important;
}
.max-w-2\/3 {
  max-width: 66.666667% !important;
}
.max-w-1\/4 {
  max-width: 25% !important;
}
.max-w-2\/4 {
  max-width: 50% !important;
}
.max-w-3\/4 {
  max-width: 75% !important;
}
.max-w-1\/5 {
  max-width: 20% !important;
}
.max-w-2\/5 {
  max-width: 40% !important;
}
.max-w-3\/5 {
  max-width: 60% !important;
}
.max-w-4\/5 {
  max-width: 80% !important;
}
.max-w-1\/6 {
  max-width: 16.666667% !important;
}
.max-w-2\/6 {
  max-width: 33.333333% !important;
}
.max-w-3\/6 {
  max-width: 50% !important;
}
.max-w-4\/6 {
  max-width: 66.666667% !important;
}
.max-w-5\/6 {
  max-width: 83.333333% !important;
}
.max-w-1\/12 {
  max-width: 8.333333% !important;
}
.max-w-2\/12 {
  max-width: 16.666667% !important;
}
.max-w-3\/12 {
  max-width: 25% !important;
}
.max-w-4\/12 {
  max-width: 33.333333% !important;
}
.max-w-5\/12 {
  max-width: 41.666667% !important;
}
.max-w-6\/12 {
  max-width: 50% !important;
}
.max-w-7\/12 {
  max-width: 58.333333% !important;
}
.max-w-8\/12 {
  max-width: 66.666667% !important;
}
.max-w-9\/12 {
  max-width: 75% !important;
}
.max-w-10\/12 {
  max-width: 83.333333% !important;
}
.max-w-11\/12 {
  max-width: 91.666667% !important;
}
.max-w-2px {
  max-width: 2px !important;
}
.min-h-0 {
  min-height: 0 !important;
}
.min-h-1 {
  min-height: 0.25rem !important;
}
.min-h-2 {
  min-height: 0.5rem !important;
}
.min-h-3 {
  min-height: 0.75rem !important;
}
.min-h-4 {
  min-height: 1rem !important;
}
.min-h-5 {
  min-height: 1.25rem !important;
}
.min-h-6 {
  min-height: 1.5rem !important;
}
.min-h-7 {
  min-height: 1.75rem !important;
}
.min-h-8 {
  min-height: 2rem !important;
}
.min-h-9 {
  min-height: 2.25rem !important;
}
.min-h-10 {
  min-height: 2.5rem !important;
}
.min-h-11 {
  min-height: 2.75rem !important;
}
.min-h-12 {
  min-height: 3rem !important;
}
.min-h-13 {
  min-height: 3.25rem !important;
}
.min-h-14 {
  min-height: 3.5rem !important;
}
.min-h-15 {
  min-height: 3.75rem !important;
}
.min-h-16 {
  min-height: 4rem !important;
}
.min-h-18 {
  min-height: 4.5rem !important;
}
.min-h-20 {
  min-height: 5rem !important;
}
.min-h-22 {
  min-height: 5.5rem !important;
}
.min-h-24 {
  min-height: 6rem !important;
}
.min-h-26 {
  min-height: 6.5rem !important;
}
.min-h-28 {
  min-height: 7rem !important;
}
.min-h-30 {
  min-height: 7.5rem !important;
}
.min-h-32 {
  min-height: 8rem !important;
}
.min-h-36 {
  min-height: 9rem !important;
}
.min-h-40 {
  min-height: 10rem !important;
}
.min-h-44 {
  min-height: 11rem !important;
}
.min-h-48 {
  min-height: 12rem !important;
}
.min-h-50 {
  min-height: 12.5rem !important;
}
.min-h-52 {
  min-height: 13rem !important;
}
.min-h-56 {
  min-height: 14rem !important;
}
.min-h-60 {
  min-height: 15rem !important;
}
.min-h-64 {
  min-height: 16rem !important;
}
.min-h-72 {
  min-height: 18rem !important;
}
.min-h-80 {
  min-height: 20rem !important;
}
.min-h-90 {
  min-height: 24rem !important;
}
.min-h-96 {
  min-height: 24rem !important;
}
.min-h-100 {
  min-height: 25rem !important;
}
.min-h-120 {
  min-height: 30rem !important;
}
.min-h-128 {
  min-height: 32rem !important;
}
.min-h-140 {
  min-height: 35rem !important;
}
.min-h-160 {
  min-height: 40rem !important;
}
.min-h-180 {
  min-height: 45rem !important;
}
.min-h-192 {
  min-height: 48rem !important;
}
.min-h-200 {
  min-height: 50rem !important;
}
.min-h-240 {
  min-height: 60rem !important;
}
.min-h-256 {
  min-height: 64rem !important;
}
.min-h-280 {
  min-height: 70rem !important;
}
.min-h-320 {
  min-height: 80rem !important;
}
.min-h-360 {
  min-height: 90rem !important;
}
.min-h-400 {
  min-height: 100rem !important;
}
.min-h-480 {
  min-height: 120rem !important;
}
.min-h-full {
  min-height: 100% !important;
}
.min-h-screen {
  min-height: 100vh !important;
}
.min-h-px {
  min-height: 1px !important;
}
.min-h-0\.5 {
  min-height: 0.125rem !important;
}
.min-h-1\.5 {
  min-height: 0.375rem !important;
}
.min-h-2\.5 {
  min-height: 0.625rem !important;
}
.min-h-3\.5 {
  min-height: 0.875rem !important;
}
.min-h-1\/2 {
  min-height: 50% !important;
}
.min-h-1\/3 {
  min-height: 33.333333% !important;
}
.min-h-2\/3 {
  min-height: 66.666667% !important;
}
.min-h-1\/4 {
  min-height: 25% !important;
}
.min-h-2\/4 {
  min-height: 50% !important;
}
.min-h-3\/4 {
  min-height: 75% !important;
}
.min-h-1\/5 {
  min-height: 20% !important;
}
.min-h-2\/5 {
  min-height: 40% !important;
}
.min-h-3\/5 {
  min-height: 60% !important;
}
.min-h-4\/5 {
  min-height: 80% !important;
}
.min-h-1\/6 {
  min-height: 16.666667% !important;
}
.min-h-2\/6 {
  min-height: 33.333333% !important;
}
.min-h-3\/6 {
  min-height: 50% !important;
}
.min-h-4\/6 {
  min-height: 66.666667% !important;
}
.min-h-5\/6 {
  min-height: 83.333333% !important;
}
.min-h-1\/12 {
  min-height: 8.333333% !important;
}
.min-h-2\/12 {
  min-height: 16.666667% !important;
}
.min-h-3\/12 {
  min-height: 25% !important;
}
.min-h-4\/12 {
  min-height: 33.333333% !important;
}
.min-h-5\/12 {
  min-height: 41.666667% !important;
}
.min-h-6\/12 {
  min-height: 50% !important;
}
.min-h-7\/12 {
  min-height: 58.333333% !important;
}
.min-h-8\/12 {
  min-height: 66.666667% !important;
}
.min-h-9\/12 {
  min-height: 75% !important;
}
.min-h-10\/12 {
  min-height: 83.333333% !important;
}
.min-h-11\/12 {
  min-height: 91.666667% !important;
}
.min-h-2px {
  min-height: 2px !important;
}
.min-w-0 {
  min-width: 0 !important;
}
.min-w-1 {
  min-width: 0.25rem !important;
}
.min-w-2 {
  min-width: 0.5rem !important;
}
.min-w-3 {
  min-width: 0.75rem !important;
}
.min-w-4 {
  min-width: 1rem !important;
}
.min-w-5 {
  min-width: 1.25rem !important;
}
.min-w-6 {
  min-width: 1.5rem !important;
}
.min-w-7 {
  min-width: 1.75rem !important;
}
.min-w-8 {
  min-width: 2rem !important;
}
.min-w-9 {
  min-width: 2.25rem !important;
}
.min-w-10 {
  min-width: 2.5rem !important;
}
.min-w-11 {
  min-width: 2.75rem !important;
}
.min-w-12 {
  min-width: 3rem !important;
}
.min-w-13 {
  min-width: 3.25rem !important;
}
.min-w-14 {
  min-width: 3.5rem !important;
}
.min-w-15 {
  min-width: 3.75rem !important;
}
.min-w-16 {
  min-width: 4rem !important;
}
.min-w-18 {
  min-width: 4.5rem !important;
}
.min-w-20 {
  min-width: 5rem !important;
}
.min-w-22 {
  min-width: 5.5rem !important;
}
.min-w-24 {
  min-width: 6rem !important;
}
.min-w-26 {
  min-width: 6.5rem !important;
}
.min-w-28 {
  min-width: 7rem !important;
}
.min-w-30 {
  min-width: 7.5rem !important;
}
.min-w-32 {
  min-width: 8rem !important;
}
.min-w-36 {
  min-width: 9rem !important;
}
.min-w-40 {
  min-width: 10rem !important;
}
.min-w-44 {
  min-width: 11rem !important;
}
.min-w-48 {
  min-width: 12rem !important;
}
.min-w-50 {
  min-width: 12.5rem !important;
}
.min-w-52 {
  min-width: 13rem !important;
}
.min-w-56 {
  min-width: 14rem !important;
}
.min-w-60 {
  min-width: 15rem !important;
}
.min-w-64 {
  min-width: 16rem !important;
}
.min-w-72 {
  min-width: 18rem !important;
}
.min-w-80 {
  min-width: 20rem !important;
}
.min-w-90 {
  min-width: 24rem !important;
}
.min-w-96 {
  min-width: 24rem !important;
}
.min-w-100 {
  min-width: 25rem !important;
}
.min-w-120 {
  min-width: 30rem !important;
}
.min-w-128 {
  min-width: 32rem !important;
}
.min-w-140 {
  min-width: 35rem !important;
}
.min-w-160 {
  min-width: 40rem !important;
}
.min-w-180 {
  min-width: 45rem !important;
}
.min-w-192 {
  min-width: 48rem !important;
}
.min-w-200 {
  min-width: 50rem !important;
}
.min-w-240 {
  min-width: 60rem !important;
}
.min-w-256 {
  min-width: 64rem !important;
}
.min-w-280 {
  min-width: 70rem !important;
}
.min-w-320 {
  min-width: 80rem !important;
}
.min-w-360 {
  min-width: 90rem !important;
}
.min-w-400 {
  min-width: 100rem !important;
}
.min-w-480 {
  min-width: 120rem !important;
}
.min-w-full {
  min-width: 100% !important;
}
.min-w-min-content {
  min-width: -webkit-min-content !important;
  min-width: -moz-min-content !important;
  min-width: min-content !important;
}
.min-w-max-content {
  min-width: -webkit-max-content !important;
  min-width: -moz-max-content !important;
  min-width: max-content !important;
}
.min-w-screen {
  min-width: 100vw !important;
}
.min-w-px {
  min-width: 1px !important;
}
.min-w-0\.5 {
  min-width: 0.125rem !important;
}
.min-w-1\.5 {
  min-width: 0.375rem !important;
}
.min-w-2\.5 {
  min-width: 0.625rem !important;
}
.min-w-3\.5 {
  min-width: 0.875rem !important;
}
.min-w-1\/2 {
  min-width: 50% !important;
}
.min-w-1\/3 {
  min-width: 33.333333% !important;
}
.min-w-2\/3 {
  min-width: 66.666667% !important;
}
.min-w-1\/4 {
  min-width: 25% !important;
}
.min-w-2\/4 {
  min-width: 50% !important;
}
.min-w-3\/4 {
  min-width: 75% !important;
}
.min-w-1\/5 {
  min-width: 20% !important;
}
.min-w-2\/5 {
  min-width: 40% !important;
}
.min-w-3\/5 {
  min-width: 60% !important;
}
.min-w-4\/5 {
  min-width: 80% !important;
}
.min-w-1\/6 {
  min-width: 16.666667% !important;
}
.min-w-2\/6 {
  min-width: 33.333333% !important;
}
.min-w-3\/6 {
  min-width: 50% !important;
}
.min-w-4\/6 {
  min-width: 66.666667% !important;
}
.min-w-5\/6 {
  min-width: 83.333333% !important;
}
.min-w-1\/12 {
  min-width: 8.333333% !important;
}
.min-w-2\/12 {
  min-width: 16.666667% !important;
}
.min-w-3\/12 {
  min-width: 25% !important;
}
.min-w-4\/12 {
  min-width: 33.333333% !important;
}
.min-w-5\/12 {
  min-width: 41.666667% !important;
}
.min-w-6\/12 {
  min-width: 50% !important;
}
.min-w-7\/12 {
  min-width: 58.333333% !important;
}
.min-w-8\/12 {
  min-width: 66.666667% !important;
}
.min-w-9\/12 {
  min-width: 75% !important;
}
.min-w-10\/12 {
  min-width: 83.333333% !important;
}
.min-w-11\/12 {
  min-width: 91.666667% !important;
}
.min-w-2px {
  min-width: 2px !important;
}
.object-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}
.object-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}
.object-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}
.object-none {
  -o-object-fit: none !important;
  object-fit: none !important;
}
.object-scale-down {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}
.object-bottom {
  -o-object-position: bottom !important;
  object-position: bottom !important;
}
.object-center {
  -o-object-position: center !important;
  object-position: center !important;
}
.object-left {
  -o-object-position: left !important;
  object-position: left !important;
}
.object-left-bottom {
  -o-object-position: left bottom !important;
  object-position: left bottom !important;
}
.object-left-top {
  -o-object-position: left top !important;
  object-position: left top !important;
}
.object-right {
  -o-object-position: right !important;
  object-position: right !important;
}
.object-right-bottom {
  -o-object-position: right bottom !important;
  object-position: right bottom !important;
}
.object-right-top {
  -o-object-position: right top !important;
  object-position: right top !important;
}
.object-top {
  -o-object-position: top !important;
  object-position: top !important;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-12 {
  opacity: 0.12 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-38 {
  opacity: 0.38 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-54 {
  opacity: 0.54 !important;
}
.opacity-70 {
  opacity: 0.7 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-84 {
  opacity: 0.84 !important;
}
.opacity-100 {
  opacity: 1 !important;
}
.hover\:opacity-0:hover {
  opacity: 0 !important;
}
.hover\:opacity-12:hover {
  opacity: 0.12 !important;
}
.hover\:opacity-25:hover {
  opacity: 0.25 !important;
}
.hover\:opacity-38:hover {
  opacity: 0.38 !important;
}
.hover\:opacity-50:hover {
  opacity: 0.5 !important;
}
.hover\:opacity-54:hover {
  opacity: 0.54 !important;
}
.hover\:opacity-70:hover {
  opacity: 0.7 !important;
}
.hover\:opacity-75:hover {
  opacity: 0.75 !important;
}
.hover\:opacity-84:hover {
  opacity: 0.84 !important;
}
.hover\:opacity-100:hover {
  opacity: 1 !important;
}
.focus\:opacity-0:focus {
  opacity: 0 !important;
}
.focus\:opacity-12:focus {
  opacity: 0.12 !important;
}
.focus\:opacity-25:focus {
  opacity: 0.25 !important;
}
.focus\:opacity-38:focus {
  opacity: 0.38 !important;
}
.focus\:opacity-50:focus {
  opacity: 0.5 !important;
}
.focus\:opacity-54:focus {
  opacity: 0.54 !important;
}
.focus\:opacity-70:focus {
  opacity: 0.7 !important;
}
.focus\:opacity-75:focus {
  opacity: 0.75 !important;
}
.focus\:opacity-84:focus {
  opacity: 0.84 !important;
}
.focus\:opacity-100:focus {
  opacity: 1 !important;
}
.outline-none {
  outline: 0 !important;
}
.focus\:outline-none:focus {
  outline: 0 !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.overflow-x-auto {
  overflow-x: auto !important;
}
.overflow-y-auto {
  overflow-y: auto !important;
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}
.overflow-y-hidden {
  overflow-y: hidden !important;
}
.overflow-x-visible {
  overflow-x: visible !important;
}
.overflow-y-visible {
  overflow-y: visible !important;
}
.overflow-x-scroll {
  overflow-x: scroll !important;
}
.overflow-y-scroll {
  overflow-y: scroll !important;
}
.scrolling-touch {
  -webkit-overflow-scrolling: touch !important;
}
.scrolling-auto {
  -webkit-overflow-scrolling: auto !important;
}
.overscroll-auto {
  -ms-scroll-chaining: chained !important;
      overscroll-behavior: auto !important;
}
.overscroll-contain {
  -ms-scroll-chaining: none !important;
      overscroll-behavior: contain !important;
}
.overscroll-none {
  -ms-scroll-chaining: none !important;
      overscroll-behavior: none !important;
}
.overscroll-y-auto {
  overscroll-behavior-y: auto !important;
}
.overscroll-y-contain {
  overscroll-behavior-y: contain !important;
}
.overscroll-y-none {
  overscroll-behavior-y: none !important;
}
.overscroll-x-auto {
  overscroll-behavior-x: auto !important;
}
.overscroll-x-contain {
  overscroll-behavior-x: contain !important;
}
.overscroll-x-none {
  overscroll-behavior-x: none !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 0.75rem !important;
}
.p-4 {
  padding: 1rem !important;
}
.p-5 {
  padding: 1.25rem !important;
}
.p-6 {
  padding: 1.5rem !important;
}
.p-7 {
  padding: 1.75rem !important;
}
.p-8 {
  padding: 2rem !important;
}
.p-9 {
  padding: 2.25rem !important;
}
.p-10 {
  padding: 2.5rem !important;
}
.p-11 {
  padding: 2.75rem !important;
}
.p-12 {
  padding: 3rem !important;
}
.p-13 {
  padding: 3.25rem !important;
}
.p-14 {
  padding: 3.5rem !important;
}
.p-15 {
  padding: 3.75rem !important;
}
.p-16 {
  padding: 4rem !important;
}
.p-18 {
  padding: 4.5rem !important;
}
.p-20 {
  padding: 5rem !important;
}
.p-22 {
  padding: 5.5rem !important;
}
.p-24 {
  padding: 6rem !important;
}
.p-26 {
  padding: 6.5rem !important;
}
.p-28 {
  padding: 7rem !important;
}
.p-30 {
  padding: 7.5rem !important;
}
.p-32 {
  padding: 8rem !important;
}
.p-36 {
  padding: 9rem !important;
}
.p-40 {
  padding: 10rem !important;
}
.p-44 {
  padding: 11rem !important;
}
.p-48 {
  padding: 12rem !important;
}
.p-50 {
  padding: 12.5rem !important;
}
.p-52 {
  padding: 13rem !important;
}
.p-56 {
  padding: 14rem !important;
}
.p-60 {
  padding: 15rem !important;
}
.p-64 {
  padding: 16rem !important;
}
.p-72 {
  padding: 18rem !important;
}
.p-80 {
  padding: 20rem !important;
}
.p-90 {
  padding: 24rem !important;
}
.p-96 {
  padding: 24rem !important;
}
.p-100 {
  padding: 25rem !important;
}
.p-120 {
  padding: 30rem !important;
}
.p-128 {
  padding: 32rem !important;
}
.p-140 {
  padding: 35rem !important;
}
.p-160 {
  padding: 40rem !important;
}
.p-180 {
  padding: 45rem !important;
}
.p-192 {
  padding: 48rem !important;
}
.p-200 {
  padding: 50rem !important;
}
.p-240 {
  padding: 60rem !important;
}
.p-256 {
  padding: 64rem !important;
}
.p-280 {
  padding: 70rem !important;
}
.p-320 {
  padding: 80rem !important;
}
.p-360 {
  padding: 90rem !important;
}
.p-400 {
  padding: 100rem !important;
}
.p-480 {
  padding: 120rem !important;
}
.p-px {
  padding: 1px !important;
}
.p-0\.5 {
  padding: 0.125rem !important;
}
.p-1\.5 {
  padding: 0.375rem !important;
}
.p-2\.5 {
  padding: 0.625rem !important;
}
.p-3\.5 {
  padding: 0.875rem !important;
}
.p-1\/2 {
  padding: 50% !important;
}
.p-1\/3 {
  padding: 33.333333% !important;
}
.p-2\/3 {
  padding: 66.666667% !important;
}
.p-1\/4 {
  padding: 25% !important;
}
.p-2\/4 {
  padding: 50% !important;
}
.p-3\/4 {
  padding: 75% !important;
}
.p-1\/5 {
  padding: 20% !important;
}
.p-2\/5 {
  padding: 40% !important;
}
.p-3\/5 {
  padding: 60% !important;
}
.p-4\/5 {
  padding: 80% !important;
}
.p-1\/6 {
  padding: 16.666667% !important;
}
.p-2\/6 {
  padding: 33.333333% !important;
}
.p-3\/6 {
  padding: 50% !important;
}
.p-4\/6 {
  padding: 66.666667% !important;
}
.p-5\/6 {
  padding: 83.333333% !important;
}
.p-1\/12 {
  padding: 8.333333% !important;
}
.p-2\/12 {
  padding: 16.666667% !important;
}
.p-3\/12 {
  padding: 25% !important;
}
.p-4\/12 {
  padding: 33.333333% !important;
}
.p-5\/12 {
  padding: 41.666667% !important;
}
.p-6\/12 {
  padding: 50% !important;
}
.p-7\/12 {
  padding: 58.333333% !important;
}
.p-8\/12 {
  padding: 66.666667% !important;
}
.p-9\/12 {
  padding: 75% !important;
}
.p-10\/12 {
  padding: 83.333333% !important;
}
.p-11\/12 {
  padding: 91.666667% !important;
}
.p-full {
  padding: 100% !important;
}
.p-2px {
  padding: 2px !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}
.px-7 {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}
.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}
.px-9 {
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}
.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}
.py-11 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}
.px-11 {
  padding-left: 2.75rem !important;
  padding-right: 2.75rem !important;
}
.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.py-13 {
  padding-top: 3.25rem !important;
  padding-bottom: 3.25rem !important;
}
.px-13 {
  padding-left: 3.25rem !important;
  padding-right: 3.25rem !important;
}
.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}
.px-14 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}
.py-15 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}
.px-15 {
  padding-left: 3.75rem !important;
  padding-right: 3.75rem !important;
}
.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}
.py-18 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
.px-18 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}
.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.px-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}
.py-22 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}
.px-22 {
  padding-left: 5.5rem !important;
  padding-right: 5.5rem !important;
}
.py-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
.px-24 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}
.py-26 {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}
.px-26 {
  padding-left: 6.5rem !important;
  padding-right: 6.5rem !important;
}
.py-28 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}
.px-28 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}
.py-30 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}
.px-30 {
  padding-left: 7.5rem !important;
  padding-right: 7.5rem !important;
}
.py-32 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}
.px-32 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}
.py-36 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}
.px-36 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}
.py-40 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}
.px-40 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}
.py-44 {
  padding-top: 11rem !important;
  padding-bottom: 11rem !important;
}
.px-44 {
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}
.py-48 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}
.px-48 {
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}
.py-50 {
  padding-top: 12.5rem !important;
  padding-bottom: 12.5rem !important;
}
.px-50 {
  padding-left: 12.5rem !important;
  padding-right: 12.5rem !important;
}
.py-52 {
  padding-top: 13rem !important;
  padding-bottom: 13rem !important;
}
.px-52 {
  padding-left: 13rem !important;
  padding-right: 13rem !important;
}
.py-56 {
  padding-top: 14rem !important;
  padding-bottom: 14rem !important;
}
.px-56 {
  padding-left: 14rem !important;
  padding-right: 14rem !important;
}
.py-60 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}
.px-60 {
  padding-left: 15rem !important;
  padding-right: 15rem !important;
}
.py-64 {
  padding-top: 16rem !important;
  padding-bottom: 16rem !important;
}
.px-64 {
  padding-left: 16rem !important;
  padding-right: 16rem !important;
}
.py-72 {
  padding-top: 18rem !important;
  padding-bottom: 18rem !important;
}
.px-72 {
  padding-left: 18rem !important;
  padding-right: 18rem !important;
}
.py-80 {
  padding-top: 20rem !important;
  padding-bottom: 20rem !important;
}
.px-80 {
  padding-left: 20rem !important;
  padding-right: 20rem !important;
}
.py-90 {
  padding-top: 24rem !important;
  padding-bottom: 24rem !important;
}
.px-90 {
  padding-left: 24rem !important;
  padding-right: 24rem !important;
}
.py-96 {
  padding-top: 24rem !important;
  padding-bottom: 24rem !important;
}
.px-96 {
  padding-left: 24rem !important;
  padding-right: 24rem !important;
}
.py-100 {
  padding-top: 25rem !important;
  padding-bottom: 25rem !important;
}
.px-100 {
  padding-left: 25rem !important;
  padding-right: 25rem !important;
}
.py-120 {
  padding-top: 30rem !important;
  padding-bottom: 30rem !important;
}
.px-120 {
  padding-left: 30rem !important;
  padding-right: 30rem !important;
}
.py-128 {
  padding-top: 32rem !important;
  padding-bottom: 32rem !important;
}
.px-128 {
  padding-left: 32rem !important;
  padding-right: 32rem !important;
}
.py-140 {
  padding-top: 35rem !important;
  padding-bottom: 35rem !important;
}
.px-140 {
  padding-left: 35rem !important;
  padding-right: 35rem !important;
}
.py-160 {
  padding-top: 40rem !important;
  padding-bottom: 40rem !important;
}
.px-160 {
  padding-left: 40rem !important;
  padding-right: 40rem !important;
}
.py-180 {
  padding-top: 45rem !important;
  padding-bottom: 45rem !important;
}
.px-180 {
  padding-left: 45rem !important;
  padding-right: 45rem !important;
}
.py-192 {
  padding-top: 48rem !important;
  padding-bottom: 48rem !important;
}
.px-192 {
  padding-left: 48rem !important;
  padding-right: 48rem !important;
}
.py-200 {
  padding-top: 50rem !important;
  padding-bottom: 50rem !important;
}
.px-200 {
  padding-left: 50rem !important;
  padding-right: 50rem !important;
}
.py-240 {
  padding-top: 60rem !important;
  padding-bottom: 60rem !important;
}
.px-240 {
  padding-left: 60rem !important;
  padding-right: 60rem !important;
}
.py-256 {
  padding-top: 64rem !important;
  padding-bottom: 64rem !important;
}
.px-256 {
  padding-left: 64rem !important;
  padding-right: 64rem !important;
}
.py-280 {
  padding-top: 70rem !important;
  padding-bottom: 70rem !important;
}
.px-280 {
  padding-left: 70rem !important;
  padding-right: 70rem !important;
}
.py-320 {
  padding-top: 80rem !important;
  padding-bottom: 80rem !important;
}
.px-320 {
  padding-left: 80rem !important;
  padding-right: 80rem !important;
}
.py-360 {
  padding-top: 90rem !important;
  padding-bottom: 90rem !important;
}
.px-360 {
  padding-left: 90rem !important;
  padding-right: 90rem !important;
}
.py-400 {
  padding-top: 100rem !important;
  padding-bottom: 100rem !important;
}
.px-400 {
  padding-left: 100rem !important;
  padding-right: 100rem !important;
}
.py-480 {
  padding-top: 120rem !important;
  padding-bottom: 120rem !important;
}
.px-480 {
  padding-left: 120rem !important;
  padding-right: 120rem !important;
}
.py-px {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}
.px-px {
  padding-left: 1px !important;
  padding-right: 1px !important;
}
.py-0\.5 {
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}
.px-0\.5 {
  padding-left: 0.125rem !important;
  padding-right: 0.125rem !important;
}
.py-1\.5 {
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}
.px-1\.5 {
  padding-left: 0.375rem !important;
  padding-right: 0.375rem !important;
}
.py-2\.5 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}
.px-2\.5 {
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}
.py-3\.5 {
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}
.px-3\.5 {
  padding-left: 0.875rem !important;
  padding-right: 0.875rem !important;
}
.py-1\/2 {
  padding-top: 50% !important;
  padding-bottom: 50% !important;
}
.px-1\/2 {
  padding-left: 50% !important;
  padding-right: 50% !important;
}
.py-1\/3 {
  padding-top: 33.333333% !important;
  padding-bottom: 33.333333% !important;
}
.px-1\/3 {
  padding-left: 33.333333% !important;
  padding-right: 33.333333% !important;
}
.py-2\/3 {
  padding-top: 66.666667% !important;
  padding-bottom: 66.666667% !important;
}
.px-2\/3 {
  padding-left: 66.666667% !important;
  padding-right: 66.666667% !important;
}
.py-1\/4 {
  padding-top: 25% !important;
  padding-bottom: 25% !important;
}
.px-1\/4 {
  padding-left: 25% !important;
  padding-right: 25% !important;
}
.py-2\/4 {
  padding-top: 50% !important;
  padding-bottom: 50% !important;
}
.px-2\/4 {
  padding-left: 50% !important;
  padding-right: 50% !important;
}
.py-3\/4 {
  padding-top: 75% !important;
  padding-bottom: 75% !important;
}
.px-3\/4 {
  padding-left: 75% !important;
  padding-right: 75% !important;
}
.py-1\/5 {
  padding-top: 20% !important;
  padding-bottom: 20% !important;
}
.px-1\/5 {
  padding-left: 20% !important;
  padding-right: 20% !important;
}
.py-2\/5 {
  padding-top: 40% !important;
  padding-bottom: 40% !important;
}
.px-2\/5 {
  padding-left: 40% !important;
  padding-right: 40% !important;
}
.py-3\/5 {
  padding-top: 60% !important;
  padding-bottom: 60% !important;
}
.px-3\/5 {
  padding-left: 60% !important;
  padding-right: 60% !important;
}
.py-4\/5 {
  padding-top: 80% !important;
  padding-bottom: 80% !important;
}
.px-4\/5 {
  padding-left: 80% !important;
  padding-right: 80% !important;
}
.py-1\/6 {
  padding-top: 16.666667% !important;
  padding-bottom: 16.666667% !important;
}
.px-1\/6 {
  padding-left: 16.666667% !important;
  padding-right: 16.666667% !important;
}
.py-2\/6 {
  padding-top: 33.333333% !important;
  padding-bottom: 33.333333% !important;
}
.px-2\/6 {
  padding-left: 33.333333% !important;
  padding-right: 33.333333% !important;
}
.py-3\/6 {
  padding-top: 50% !important;
  padding-bottom: 50% !important;
}
.px-3\/6 {
  padding-left: 50% !important;
  padding-right: 50% !important;
}
.py-4\/6 {
  padding-top: 66.666667% !important;
  padding-bottom: 66.666667% !important;
}
.px-4\/6 {
  padding-left: 66.666667% !important;
  padding-right: 66.666667% !important;
}
.py-5\/6 {
  padding-top: 83.333333% !important;
  padding-bottom: 83.333333% !important;
}
.px-5\/6 {
  padding-left: 83.333333% !important;
  padding-right: 83.333333% !important;
}
.py-1\/12 {
  padding-top: 8.333333% !important;
  padding-bottom: 8.333333% !important;
}
.px-1\/12 {
  padding-left: 8.333333% !important;
  padding-right: 8.333333% !important;
}
.py-2\/12 {
  padding-top: 16.666667% !important;
  padding-bottom: 16.666667% !important;
}
.px-2\/12 {
  padding-left: 16.666667% !important;
  padding-right: 16.666667% !important;
}
.py-3\/12 {
  padding-top: 25% !important;
  padding-bottom: 25% !important;
}
.px-3\/12 {
  padding-left: 25% !important;
  padding-right: 25% !important;
}
.py-4\/12 {
  padding-top: 33.333333% !important;
  padding-bottom: 33.333333% !important;
}
.px-4\/12 {
  padding-left: 33.333333% !important;
  padding-right: 33.333333% !important;
}
.py-5\/12 {
  padding-top: 41.666667% !important;
  padding-bottom: 41.666667% !important;
}
.px-5\/12 {
  padding-left: 41.666667% !important;
  padding-right: 41.666667% !important;
}
.py-6\/12 {
  padding-top: 50% !important;
  padding-bottom: 50% !important;
}
.px-6\/12 {
  padding-left: 50% !important;
  padding-right: 50% !important;
}
.py-7\/12 {
  padding-top: 58.333333% !important;
  padding-bottom: 58.333333% !important;
}
.px-7\/12 {
  padding-left: 58.333333% !important;
  padding-right: 58.333333% !important;
}
.py-8\/12 {
  padding-top: 66.666667% !important;
  padding-bottom: 66.666667% !important;
}
.px-8\/12 {
  padding-left: 66.666667% !important;
  padding-right: 66.666667% !important;
}
.py-9\/12 {
  padding-top: 75% !important;
  padding-bottom: 75% !important;
}
.px-9\/12 {
  padding-left: 75% !important;
  padding-right: 75% !important;
}
.py-10\/12 {
  padding-top: 83.333333% !important;
  padding-bottom: 83.333333% !important;
}
.px-10\/12 {
  padding-left: 83.333333% !important;
  padding-right: 83.333333% !important;
}
.py-11\/12 {
  padding-top: 91.666667% !important;
  padding-bottom: 91.666667% !important;
}
.px-11\/12 {
  padding-left: 91.666667% !important;
  padding-right: 91.666667% !important;
}
.py-full {
  padding-top: 100% !important;
  padding-bottom: 100% !important;
}
.px-full {
  padding-left: 100% !important;
  padding-right: 100% !important;
}
.py-2px {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
.px-2px {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pr-1 {
  padding-right: 0.25rem !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1 {
  padding-left: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.pt-3 {
  padding-top: 0.75rem !important;
}
.pr-3 {
  padding-right: 0.75rem !important;
}
.pb-3 {
  padding-bottom: 0.75rem !important;
}
.pl-3 {
  padding-left: 0.75rem !important;
}
.pt-4 {
  padding-top: 1rem !important;
}
.pr-4 {
  padding-right: 1rem !important;
}
.pb-4 {
  padding-bottom: 1rem !important;
}
.pl-4 {
  padding-left: 1rem !important;
}
.pt-5 {
  padding-top: 1.25rem !important;
}
.pr-5 {
  padding-right: 1.25rem !important;
}
.pb-5 {
  padding-bottom: 1.25rem !important;
}
.pl-5 {
  padding-left: 1.25rem !important;
}
.pt-6 {
  padding-top: 1.5rem !important;
}
.pr-6 {
  padding-right: 1.5rem !important;
}
.pb-6 {
  padding-bottom: 1.5rem !important;
}
.pl-6 {
  padding-left: 1.5rem !important;
}
.pt-7 {
  padding-top: 1.75rem !important;
}
.pr-7 {
  padding-right: 1.75rem !important;
}
.pb-7 {
  padding-bottom: 1.75rem !important;
}
.pl-7 {
  padding-left: 1.75rem !important;
}
.pt-8 {
  padding-top: 2rem !important;
}
.pr-8 {
  padding-right: 2rem !important;
}
.pb-8 {
  padding-bottom: 2rem !important;
}
.pl-8 {
  padding-left: 2rem !important;
}
.pt-9 {
  padding-top: 2.25rem !important;
}
.pr-9 {
  padding-right: 2.25rem !important;
}
.pb-9 {
  padding-bottom: 2.25rem !important;
}
.pl-9 {
  padding-left: 2.25rem !important;
}
.pt-10 {
  padding-top: 2.5rem !important;
}
.pr-10 {
  padding-right: 2.5rem !important;
}
.pb-10 {
  padding-bottom: 2.5rem !important;
}
.pl-10 {
  padding-left: 2.5rem !important;
}
.pt-11 {
  padding-top: 2.75rem !important;
}
.pr-11 {
  padding-right: 2.75rem !important;
}
.pb-11 {
  padding-bottom: 2.75rem !important;
}
.pl-11 {
  padding-left: 2.75rem !important;
}
.pt-12 {
  padding-top: 3rem !important;
}
.pr-12 {
  padding-right: 3rem !important;
}
.pb-12 {
  padding-bottom: 3rem !important;
}
.pl-12 {
  padding-left: 3rem !important;
}
.pt-13 {
  padding-top: 3.25rem !important;
}
.pr-13 {
  padding-right: 3.25rem !important;
}
.pb-13 {
  padding-bottom: 3.25rem !important;
}
.pl-13 {
  padding-left: 3.25rem !important;
}
.pt-14 {
  padding-top: 3.5rem !important;
}
.pr-14 {
  padding-right: 3.5rem !important;
}
.pb-14 {
  padding-bottom: 3.5rem !important;
}
.pl-14 {
  padding-left: 3.5rem !important;
}
.pt-15 {
  padding-top: 3.75rem !important;
}
.pr-15 {
  padding-right: 3.75rem !important;
}
.pb-15 {
  padding-bottom: 3.75rem !important;
}
.pl-15 {
  padding-left: 3.75rem !important;
}
.pt-16 {
  padding-top: 4rem !important;
}
.pr-16 {
  padding-right: 4rem !important;
}
.pb-16 {
  padding-bottom: 4rem !important;
}
.pl-16 {
  padding-left: 4rem !important;
}
.pt-18 {
  padding-top: 4.5rem !important;
}
.pr-18 {
  padding-right: 4.5rem !important;
}
.pb-18 {
  padding-bottom: 4.5rem !important;
}
.pl-18 {
  padding-left: 4.5rem !important;
}
.pt-20 {
  padding-top: 5rem !important;
}
.pr-20 {
  padding-right: 5rem !important;
}
.pb-20 {
  padding-bottom: 5rem !important;
}
.pl-20 {
  padding-left: 5rem !important;
}
.pt-22 {
  padding-top: 5.5rem !important;
}
.pr-22 {
  padding-right: 5.5rem !important;
}
.pb-22 {
  padding-bottom: 5.5rem !important;
}
.pl-22 {
  padding-left: 5.5rem !important;
}
.pt-24 {
  padding-top: 6rem !important;
}
.pr-24 {
  padding-right: 6rem !important;
}
.pb-24 {
  padding-bottom: 6rem !important;
}
.pl-24 {
  padding-left: 6rem !important;
}
.pt-26 {
  padding-top: 6.5rem !important;
}
.pr-26 {
  padding-right: 6.5rem !important;
}
.pb-26 {
  padding-bottom: 6.5rem !important;
}
.pl-26 {
  padding-left: 6.5rem !important;
}
.pt-28 {
  padding-top: 7rem !important;
}
.pr-28 {
  padding-right: 7rem !important;
}
.pb-28 {
  padding-bottom: 7rem !important;
}
.pl-28 {
  padding-left: 7rem !important;
}
.pt-30 {
  padding-top: 7.5rem !important;
}
.pr-30 {
  padding-right: 7.5rem !important;
}
.pb-30 {
  padding-bottom: 7.5rem !important;
}
.pl-30 {
  padding-left: 7.5rem !important;
}
.pt-32 {
  padding-top: 8rem !important;
}
.pr-32 {
  padding-right: 8rem !important;
}
.pb-32 {
  padding-bottom: 8rem !important;
}
.pl-32 {
  padding-left: 8rem !important;
}
.pt-36 {
  padding-top: 9rem !important;
}
.pr-36 {
  padding-right: 9rem !important;
}
.pb-36 {
  padding-bottom: 9rem !important;
}
.pl-36 {
  padding-left: 9rem !important;
}
.pt-40 {
  padding-top: 10rem !important;
}
.pr-40 {
  padding-right: 10rem !important;
}
.pb-40 {
  padding-bottom: 10rem !important;
}
.pl-40 {
  padding-left: 10rem !important;
}
.pt-44 {
  padding-top: 11rem !important;
}
.pr-44 {
  padding-right: 11rem !important;
}
.pb-44 {
  padding-bottom: 11rem !important;
}
.pl-44 {
  padding-left: 11rem !important;
}
.pt-48 {
  padding-top: 12rem !important;
}
.pr-48 {
  padding-right: 12rem !important;
}
.pb-48 {
  padding-bottom: 12rem !important;
}
.pl-48 {
  padding-left: 12rem !important;
}
.pt-50 {
  padding-top: 12.5rem !important;
}
.pr-50 {
  padding-right: 12.5rem !important;
}
.pb-50 {
  padding-bottom: 12.5rem !important;
}
.pl-50 {
  padding-left: 12.5rem !important;
}
.pt-52 {
  padding-top: 13rem !important;
}
.pr-52 {
  padding-right: 13rem !important;
}
.pb-52 {
  padding-bottom: 13rem !important;
}
.pl-52 {
  padding-left: 13rem !important;
}
.pt-56 {
  padding-top: 14rem !important;
}
.pr-56 {
  padding-right: 14rem !important;
}
.pb-56 {
  padding-bottom: 14rem !important;
}
.pl-56 {
  padding-left: 14rem !important;
}
.pt-60 {
  padding-top: 15rem !important;
}
.pr-60 {
  padding-right: 15rem !important;
}
.pb-60 {
  padding-bottom: 15rem !important;
}
.pl-60 {
  padding-left: 15rem !important;
}
.pt-64 {
  padding-top: 16rem !important;
}
.pr-64 {
  padding-right: 16rem !important;
}
.pb-64 {
  padding-bottom: 16rem !important;
}
.pl-64 {
  padding-left: 16rem !important;
}
.pt-72 {
  padding-top: 18rem !important;
}
.pr-72 {
  padding-right: 18rem !important;
}
.pb-72 {
  padding-bottom: 18rem !important;
}
.pl-72 {
  padding-left: 18rem !important;
}
.pt-80 {
  padding-top: 20rem !important;
}
.pr-80 {
  padding-right: 20rem !important;
}
.pb-80 {
  padding-bottom: 20rem !important;
}
.pl-80 {
  padding-left: 20rem !important;
}
.pt-90 {
  padding-top: 24rem !important;
}
.pr-90 {
  padding-right: 24rem !important;
}
.pb-90 {
  padding-bottom: 24rem !important;
}
.pl-90 {
  padding-left: 24rem !important;
}
.pt-96 {
  padding-top: 24rem !important;
}
.pr-96 {
  padding-right: 24rem !important;
}
.pb-96 {
  padding-bottom: 24rem !important;
}
.pl-96 {
  padding-left: 24rem !important;
}
.pt-100 {
  padding-top: 25rem !important;
}
.pr-100 {
  padding-right: 25rem !important;
}
.pb-100 {
  padding-bottom: 25rem !important;
}
.pl-100 {
  padding-left: 25rem !important;
}
.pt-120 {
  padding-top: 30rem !important;
}
.pr-120 {
  padding-right: 30rem !important;
}
.pb-120 {
  padding-bottom: 30rem !important;
}
.pl-120 {
  padding-left: 30rem !important;
}
.pt-128 {
  padding-top: 32rem !important;
}
.pr-128 {
  padding-right: 32rem !important;
}
.pb-128 {
  padding-bottom: 32rem !important;
}
.pl-128 {
  padding-left: 32rem !important;
}
.pt-140 {
  padding-top: 35rem !important;
}
.pr-140 {
  padding-right: 35rem !important;
}
.pb-140 {
  padding-bottom: 35rem !important;
}
.pl-140 {
  padding-left: 35rem !important;
}
.pt-160 {
  padding-top: 40rem !important;
}
.pr-160 {
  padding-right: 40rem !important;
}
.pb-160 {
  padding-bottom: 40rem !important;
}
.pl-160 {
  padding-left: 40rem !important;
}
.pt-180 {
  padding-top: 45rem !important;
}
.pr-180 {
  padding-right: 45rem !important;
}
.pb-180 {
  padding-bottom: 45rem !important;
}
.pl-180 {
  padding-left: 45rem !important;
}
.pt-192 {
  padding-top: 48rem !important;
}
.pr-192 {
  padding-right: 48rem !important;
}
.pb-192 {
  padding-bottom: 48rem !important;
}
.pl-192 {
  padding-left: 48rem !important;
}
.pt-200 {
  padding-top: 50rem !important;
}
.pr-200 {
  padding-right: 50rem !important;
}
.pb-200 {
  padding-bottom: 50rem !important;
}
.pl-200 {
  padding-left: 50rem !important;
}
.pt-240 {
  padding-top: 60rem !important;
}
.pr-240 {
  padding-right: 60rem !important;
}
.pb-240 {
  padding-bottom: 60rem !important;
}
.pl-240 {
  padding-left: 60rem !important;
}
.pt-256 {
  padding-top: 64rem !important;
}
.pr-256 {
  padding-right: 64rem !important;
}
.pb-256 {
  padding-bottom: 64rem !important;
}
.pl-256 {
  padding-left: 64rem !important;
}
.pt-280 {
  padding-top: 70rem !important;
}
.pr-280 {
  padding-right: 70rem !important;
}
.pb-280 {
  padding-bottom: 70rem !important;
}
.pl-280 {
  padding-left: 70rem !important;
}
.pt-320 {
  padding-top: 80rem !important;
}
.pr-320 {
  padding-right: 80rem !important;
}
.pb-320 {
  padding-bottom: 80rem !important;
}
.pl-320 {
  padding-left: 80rem !important;
}
.pt-360 {
  padding-top: 90rem !important;
}
.pr-360 {
  padding-right: 90rem !important;
}
.pb-360 {
  padding-bottom: 90rem !important;
}
.pl-360 {
  padding-left: 90rem !important;
}
.pt-400 {
  padding-top: 100rem !important;
}
.pr-400 {
  padding-right: 100rem !important;
}
.pb-400 {
  padding-bottom: 100rem !important;
}
.pl-400 {
  padding-left: 100rem !important;
}
.pt-480 {
  padding-top: 120rem !important;
}
.pr-480 {
  padding-right: 120rem !important;
}
.pb-480 {
  padding-bottom: 120rem !important;
}
.pl-480 {
  padding-left: 120rem !important;
}
.pt-px {
  padding-top: 1px !important;
}
.pr-px {
  padding-right: 1px !important;
}
.pb-px {
  padding-bottom: 1px !important;
}
.pl-px {
  padding-left: 1px !important;
}
.pt-0\.5 {
  padding-top: 0.125rem !important;
}
.pr-0\.5 {
  padding-right: 0.125rem !important;
}
.pb-0\.5 {
  padding-bottom: 0.125rem !important;
}
.pl-0\.5 {
  padding-left: 0.125rem !important;
}
.pt-1\.5 {
  padding-top: 0.375rem !important;
}
.pr-1\.5 {
  padding-right: 0.375rem !important;
}
.pb-1\.5 {
  padding-bottom: 0.375rem !important;
}
.pl-1\.5 {
  padding-left: 0.375rem !important;
}
.pt-2\.5 {
  padding-top: 0.625rem !important;
}
.pr-2\.5 {
  padding-right: 0.625rem !important;
}
.pb-2\.5 {
  padding-bottom: 0.625rem !important;
}
.pl-2\.5 {
  padding-left: 0.625rem !important;
}
.pt-3\.5 {
  padding-top: 0.875rem !important;
}
.pr-3\.5 {
  padding-right: 0.875rem !important;
}
.pb-3\.5 {
  padding-bottom: 0.875rem !important;
}
.pl-3\.5 {
  padding-left: 0.875rem !important;
}
.pt-1\/2 {
  padding-top: 50% !important;
}
.pr-1\/2 {
  padding-right: 50% !important;
}
.pb-1\/2 {
  padding-bottom: 50% !important;
}
.pl-1\/2 {
  padding-left: 50% !important;
}
.pt-1\/3 {
  padding-top: 33.333333% !important;
}
.pr-1\/3 {
  padding-right: 33.333333% !important;
}
.pb-1\/3 {
  padding-bottom: 33.333333% !important;
}
.pl-1\/3 {
  padding-left: 33.333333% !important;
}
.pt-2\/3 {
  padding-top: 66.666667% !important;
}
.pr-2\/3 {
  padding-right: 66.666667% !important;
}
.pb-2\/3 {
  padding-bottom: 66.666667% !important;
}
.pl-2\/3 {
  padding-left: 66.666667% !important;
}
.pt-1\/4 {
  padding-top: 25% !important;
}
.pr-1\/4 {
  padding-right: 25% !important;
}
.pb-1\/4 {
  padding-bottom: 25% !important;
}
.pl-1\/4 {
  padding-left: 25% !important;
}
.pt-2\/4 {
  padding-top: 50% !important;
}
.pr-2\/4 {
  padding-right: 50% !important;
}
.pb-2\/4 {
  padding-bottom: 50% !important;
}
.pl-2\/4 {
  padding-left: 50% !important;
}
.pt-3\/4 {
  padding-top: 75% !important;
}
.pr-3\/4 {
  padding-right: 75% !important;
}
.pb-3\/4 {
  padding-bottom: 75% !important;
}
.pl-3\/4 {
  padding-left: 75% !important;
}
.pt-1\/5 {
  padding-top: 20% !important;
}
.pr-1\/5 {
  padding-right: 20% !important;
}
.pb-1\/5 {
  padding-bottom: 20% !important;
}
.pl-1\/5 {
  padding-left: 20% !important;
}
.pt-2\/5 {
  padding-top: 40% !important;
}
.pr-2\/5 {
  padding-right: 40% !important;
}
.pb-2\/5 {
  padding-bottom: 40% !important;
}
.pl-2\/5 {
  padding-left: 40% !important;
}
.pt-3\/5 {
  padding-top: 60% !important;
}
.pr-3\/5 {
  padding-right: 60% !important;
}
.pb-3\/5 {
  padding-bottom: 60% !important;
}
.pl-3\/5 {
  padding-left: 60% !important;
}
.pt-4\/5 {
  padding-top: 80% !important;
}
.pr-4\/5 {
  padding-right: 80% !important;
}
.pb-4\/5 {
  padding-bottom: 80% !important;
}
.pl-4\/5 {
  padding-left: 80% !important;
}
.pt-1\/6 {
  padding-top: 16.666667% !important;
}
.pr-1\/6 {
  padding-right: 16.666667% !important;
}
.pb-1\/6 {
  padding-bottom: 16.666667% !important;
}
.pl-1\/6 {
  padding-left: 16.666667% !important;
}
.pt-2\/6 {
  padding-top: 33.333333% !important;
}
.pr-2\/6 {
  padding-right: 33.333333% !important;
}
.pb-2\/6 {
  padding-bottom: 33.333333% !important;
}
.pl-2\/6 {
  padding-left: 33.333333% !important;
}
.pt-3\/6 {
  padding-top: 50% !important;
}
.pr-3\/6 {
  padding-right: 50% !important;
}
.pb-3\/6 {
  padding-bottom: 50% !important;
}
.pl-3\/6 {
  padding-left: 50% !important;
}
.pt-4\/6 {
  padding-top: 66.666667% !important;
}
.pr-4\/6 {
  padding-right: 66.666667% !important;
}
.pb-4\/6 {
  padding-bottom: 66.666667% !important;
}
.pl-4\/6 {
  padding-left: 66.666667% !important;
}
.pt-5\/6 {
  padding-top: 83.333333% !important;
}
.pr-5\/6 {
  padding-right: 83.333333% !important;
}
.pb-5\/6 {
  padding-bottom: 83.333333% !important;
}
.pl-5\/6 {
  padding-left: 83.333333% !important;
}
.pt-1\/12 {
  padding-top: 8.333333% !important;
}
.pr-1\/12 {
  padding-right: 8.333333% !important;
}
.pb-1\/12 {
  padding-bottom: 8.333333% !important;
}
.pl-1\/12 {
  padding-left: 8.333333% !important;
}
.pt-2\/12 {
  padding-top: 16.666667% !important;
}
.pr-2\/12 {
  padding-right: 16.666667% !important;
}
.pb-2\/12 {
  padding-bottom: 16.666667% !important;
}
.pl-2\/12 {
  padding-left: 16.666667% !important;
}
.pt-3\/12 {
  padding-top: 25% !important;
}
.pr-3\/12 {
  padding-right: 25% !important;
}
.pb-3\/12 {
  padding-bottom: 25% !important;
}
.pl-3\/12 {
  padding-left: 25% !important;
}
.pt-4\/12 {
  padding-top: 33.333333% !important;
}
.pr-4\/12 {
  padding-right: 33.333333% !important;
}
.pb-4\/12 {
  padding-bottom: 33.333333% !important;
}
.pl-4\/12 {
  padding-left: 33.333333% !important;
}
.pt-5\/12 {
  padding-top: 41.666667% !important;
}
.pr-5\/12 {
  padding-right: 41.666667% !important;
}
.pb-5\/12 {
  padding-bottom: 41.666667% !important;
}
.pl-5\/12 {
  padding-left: 41.666667% !important;
}
.pt-6\/12 {
  padding-top: 50% !important;
}
.pr-6\/12 {
  padding-right: 50% !important;
}
.pb-6\/12 {
  padding-bottom: 50% !important;
}
.pl-6\/12 {
  padding-left: 50% !important;
}
.pt-7\/12 {
  padding-top: 58.333333% !important;
}
.pr-7\/12 {
  padding-right: 58.333333% !important;
}
.pb-7\/12 {
  padding-bottom: 58.333333% !important;
}
.pl-7\/12 {
  padding-left: 58.333333% !important;
}
.pt-8\/12 {
  padding-top: 66.666667% !important;
}
.pr-8\/12 {
  padding-right: 66.666667% !important;
}
.pb-8\/12 {
  padding-bottom: 66.666667% !important;
}
.pl-8\/12 {
  padding-left: 66.666667% !important;
}
.pt-9\/12 {
  padding-top: 75% !important;
}
.pr-9\/12 {
  padding-right: 75% !important;
}
.pb-9\/12 {
  padding-bottom: 75% !important;
}
.pl-9\/12 {
  padding-left: 75% !important;
}
.pt-10\/12 {
  padding-top: 83.333333% !important;
}
.pr-10\/12 {
  padding-right: 83.333333% !important;
}
.pb-10\/12 {
  padding-bottom: 83.333333% !important;
}
.pl-10\/12 {
  padding-left: 83.333333% !important;
}
.pt-11\/12 {
  padding-top: 91.666667% !important;
}
.pr-11\/12 {
  padding-right: 91.666667% !important;
}
.pb-11\/12 {
  padding-bottom: 91.666667% !important;
}
.pl-11\/12 {
  padding-left: 91.666667% !important;
}
.pt-full {
  padding-top: 100% !important;
}
.pr-full {
  padding-right: 100% !important;
}
.pb-full {
  padding-bottom: 100% !important;
}
.pl-full {
  padding-left: 100% !important;
}
.pt-2px {
  padding-top: 2px !important;
}
.pr-2px {
  padding-right: 2px !important;
}
.pb-2px {
  padding-bottom: 2px !important;
}
.pl-2px {
  padding-left: 2px !important;
}
.placeholder-opacity-0::-moz-placeholder {
  --placeholder-opacity: 0 !important;
}
.placeholder-opacity-0::-ms-input-placeholder {
  --placeholder-opacity: 0 !important;
}
.placeholder-opacity-0:-ms-input-placeholder {
  --placeholder-opacity: 0 !important;
}
.placeholder-opacity-0::placeholder {
  --placeholder-opacity: 0 !important;
}
.placeholder-opacity-12::-moz-placeholder {
  --placeholder-opacity: 0.12 !important;
}
.placeholder-opacity-12::-ms-input-placeholder {
  --placeholder-opacity: 0.12 !important;
}
.placeholder-opacity-12:-ms-input-placeholder {
  --placeholder-opacity: 0.12 !important;
}
.placeholder-opacity-12::placeholder {
  --placeholder-opacity: 0.12 !important;
}
.placeholder-opacity-25::-moz-placeholder {
  --placeholder-opacity: 0.25 !important;
}
.placeholder-opacity-25::-ms-input-placeholder {
  --placeholder-opacity: 0.25 !important;
}
.placeholder-opacity-25:-ms-input-placeholder {
  --placeholder-opacity: 0.25 !important;
}
.placeholder-opacity-25::placeholder {
  --placeholder-opacity: 0.25 !important;
}
.placeholder-opacity-38::-moz-placeholder {
  --placeholder-opacity: 0.38 !important;
}
.placeholder-opacity-38::-ms-input-placeholder {
  --placeholder-opacity: 0.38 !important;
}
.placeholder-opacity-38:-ms-input-placeholder {
  --placeholder-opacity: 0.38 !important;
}
.placeholder-opacity-38::placeholder {
  --placeholder-opacity: 0.38 !important;
}
.placeholder-opacity-50::-moz-placeholder {
  --placeholder-opacity: 0.5 !important;
}
.placeholder-opacity-50::-ms-input-placeholder {
  --placeholder-opacity: 0.5 !important;
}
.placeholder-opacity-50:-ms-input-placeholder {
  --placeholder-opacity: 0.5 !important;
}
.placeholder-opacity-50::placeholder {
  --placeholder-opacity: 0.5 !important;
}
.placeholder-opacity-54::-moz-placeholder {
  --placeholder-opacity: 0.54 !important;
}
.placeholder-opacity-54::-ms-input-placeholder {
  --placeholder-opacity: 0.54 !important;
}
.placeholder-opacity-54:-ms-input-placeholder {
  --placeholder-opacity: 0.54 !important;
}
.placeholder-opacity-54::placeholder {
  --placeholder-opacity: 0.54 !important;
}
.placeholder-opacity-70::-moz-placeholder {
  --placeholder-opacity: 0.70 !important;
}
.placeholder-opacity-70::-ms-input-placeholder {
  --placeholder-opacity: 0.70 !important;
}
.placeholder-opacity-70:-ms-input-placeholder {
  --placeholder-opacity: 0.70 !important;
}
.placeholder-opacity-70::placeholder {
  --placeholder-opacity: 0.70 !important;
}
.placeholder-opacity-75::-moz-placeholder {
  --placeholder-opacity: 0.75 !important;
}
.placeholder-opacity-75::-ms-input-placeholder {
  --placeholder-opacity: 0.75 !important;
}
.placeholder-opacity-75:-ms-input-placeholder {
  --placeholder-opacity: 0.75 !important;
}
.placeholder-opacity-75::placeholder {
  --placeholder-opacity: 0.75 !important;
}
.placeholder-opacity-84::-moz-placeholder {
  --placeholder-opacity: 0.84 !important;
}
.placeholder-opacity-84::-ms-input-placeholder {
  --placeholder-opacity: 0.84 !important;
}
.placeholder-opacity-84:-ms-input-placeholder {
  --placeholder-opacity: 0.84 !important;
}
.placeholder-opacity-84::placeholder {
  --placeholder-opacity: 0.84 !important;
}
.placeholder-opacity-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
}
.placeholder-opacity-100::-ms-input-placeholder {
  --placeholder-opacity: 1 !important;
}
.placeholder-opacity-100:-ms-input-placeholder {
  --placeholder-opacity: 1 !important;
}
.placeholder-opacity-100::placeholder {
  --placeholder-opacity: 1 !important;
}
.focus\:placeholder-opacity-0:focus::-moz-placeholder {
  --placeholder-opacity: 0 !important;
}
.focus\:placeholder-opacity-0:focus::-ms-input-placeholder {
  --placeholder-opacity: 0 !important;
}
.focus\:placeholder-opacity-0:focus:-ms-input-placeholder {
  --placeholder-opacity: 0 !important;
}
.focus\:placeholder-opacity-0:focus::placeholder {
  --placeholder-opacity: 0 !important;
}
.focus\:placeholder-opacity-12:focus::-moz-placeholder {
  --placeholder-opacity: 0.12 !important;
}
.focus\:placeholder-opacity-12:focus::-ms-input-placeholder {
  --placeholder-opacity: 0.12 !important;
}
.focus\:placeholder-opacity-12:focus:-ms-input-placeholder {
  --placeholder-opacity: 0.12 !important;
}
.focus\:placeholder-opacity-12:focus::placeholder {
  --placeholder-opacity: 0.12 !important;
}
.focus\:placeholder-opacity-25:focus::-moz-placeholder {
  --placeholder-opacity: 0.25 !important;
}
.focus\:placeholder-opacity-25:focus::-ms-input-placeholder {
  --placeholder-opacity: 0.25 !important;
}
.focus\:placeholder-opacity-25:focus:-ms-input-placeholder {
  --placeholder-opacity: 0.25 !important;
}
.focus\:placeholder-opacity-25:focus::placeholder {
  --placeholder-opacity: 0.25 !important;
}
.focus\:placeholder-opacity-38:focus::-moz-placeholder {
  --placeholder-opacity: 0.38 !important;
}
.focus\:placeholder-opacity-38:focus::-ms-input-placeholder {
  --placeholder-opacity: 0.38 !important;
}
.focus\:placeholder-opacity-38:focus:-ms-input-placeholder {
  --placeholder-opacity: 0.38 !important;
}
.focus\:placeholder-opacity-38:focus::placeholder {
  --placeholder-opacity: 0.38 !important;
}
.focus\:placeholder-opacity-50:focus::-moz-placeholder {
  --placeholder-opacity: 0.5 !important;
}
.focus\:placeholder-opacity-50:focus::-ms-input-placeholder {
  --placeholder-opacity: 0.5 !important;
}
.focus\:placeholder-opacity-50:focus:-ms-input-placeholder {
  --placeholder-opacity: 0.5 !important;
}
.focus\:placeholder-opacity-50:focus::placeholder {
  --placeholder-opacity: 0.5 !important;
}
.focus\:placeholder-opacity-54:focus::-moz-placeholder {
  --placeholder-opacity: 0.54 !important;
}
.focus\:placeholder-opacity-54:focus::-ms-input-placeholder {
  --placeholder-opacity: 0.54 !important;
}
.focus\:placeholder-opacity-54:focus:-ms-input-placeholder {
  --placeholder-opacity: 0.54 !important;
}
.focus\:placeholder-opacity-54:focus::placeholder {
  --placeholder-opacity: 0.54 !important;
}
.focus\:placeholder-opacity-70:focus::-moz-placeholder {
  --placeholder-opacity: 0.70 !important;
}
.focus\:placeholder-opacity-70:focus::-ms-input-placeholder {
  --placeholder-opacity: 0.70 !important;
}
.focus\:placeholder-opacity-70:focus:-ms-input-placeholder {
  --placeholder-opacity: 0.70 !important;
}
.focus\:placeholder-opacity-70:focus::placeholder {
  --placeholder-opacity: 0.70 !important;
}
.focus\:placeholder-opacity-75:focus::-moz-placeholder {
  --placeholder-opacity: 0.75 !important;
}
.focus\:placeholder-opacity-75:focus::-ms-input-placeholder {
  --placeholder-opacity: 0.75 !important;
}
.focus\:placeholder-opacity-75:focus:-ms-input-placeholder {
  --placeholder-opacity: 0.75 !important;
}
.focus\:placeholder-opacity-75:focus::placeholder {
  --placeholder-opacity: 0.75 !important;
}
.focus\:placeholder-opacity-84:focus::-moz-placeholder {
  --placeholder-opacity: 0.84 !important;
}
.focus\:placeholder-opacity-84:focus::-ms-input-placeholder {
  --placeholder-opacity: 0.84 !important;
}
.focus\:placeholder-opacity-84:focus:-ms-input-placeholder {
  --placeholder-opacity: 0.84 !important;
}
.focus\:placeholder-opacity-84:focus::placeholder {
  --placeholder-opacity: 0.84 !important;
}
.focus\:placeholder-opacity-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
}
.focus\:placeholder-opacity-100:focus::-ms-input-placeholder {
  --placeholder-opacity: 1 !important;
}
.focus\:placeholder-opacity-100:focus:-ms-input-placeholder {
  --placeholder-opacity: 1 !important;
}
.focus\:placeholder-opacity-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
}
.pointer-events-none {
  pointer-events: none !important;
}
.pointer-events-auto {
  pointer-events: auto !important;
}
.static {
  position: static !important;
}
.fixed {
  position: fixed !important;
}
.absolute {
  position: absolute !important;
}
.relative {
  position: relative !important;
}
.sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}
.inset-0 {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
}
.inset-1 {
  top: 0.25rem !important;
  right: 0.25rem !important;
  bottom: 0.25rem !important;
  left: 0.25rem !important;
}
.inset-2 {
  top: 0.5rem !important;
  right: 0.5rem !important;
  bottom: 0.5rem !important;
  left: 0.5rem !important;
}
.inset-3 {
  top: 0.75rem !important;
  right: 0.75rem !important;
  bottom: 0.75rem !important;
  left: 0.75rem !important;
}
.inset-4 {
  top: 1rem !important;
  right: 1rem !important;
  bottom: 1rem !important;
  left: 1rem !important;
}
.inset-5 {
  top: 1.25rem !important;
  right: 1.25rem !important;
  bottom: 1.25rem !important;
  left: 1.25rem !important;
}
.inset-6 {
  top: 1.5rem !important;
  right: 1.5rem !important;
  bottom: 1.5rem !important;
  left: 1.5rem !important;
}
.inset-7 {
  top: 1.75rem !important;
  right: 1.75rem !important;
  bottom: 1.75rem !important;
  left: 1.75rem !important;
}
.inset-8 {
  top: 2rem !important;
  right: 2rem !important;
  bottom: 2rem !important;
  left: 2rem !important;
}
.inset-9 {
  top: 2.25rem !important;
  right: 2.25rem !important;
  bottom: 2.25rem !important;
  left: 2.25rem !important;
}
.inset-10 {
  top: 2.5rem !important;
  right: 2.5rem !important;
  bottom: 2.5rem !important;
  left: 2.5rem !important;
}
.inset-11 {
  top: 2.75rem !important;
  right: 2.75rem !important;
  bottom: 2.75rem !important;
  left: 2.75rem !important;
}
.inset-12 {
  top: 3rem !important;
  right: 3rem !important;
  bottom: 3rem !important;
  left: 3rem !important;
}
.inset-13 {
  top: 3.25rem !important;
  right: 3.25rem !important;
  bottom: 3.25rem !important;
  left: 3.25rem !important;
}
.inset-14 {
  top: 3.5rem !important;
  right: 3.5rem !important;
  bottom: 3.5rem !important;
  left: 3.5rem !important;
}
.inset-15 {
  top: 3.75rem !important;
  right: 3.75rem !important;
  bottom: 3.75rem !important;
  left: 3.75rem !important;
}
.inset-16 {
  top: 4rem !important;
  right: 4rem !important;
  bottom: 4rem !important;
  left: 4rem !important;
}
.inset-18 {
  top: 4.5rem !important;
  right: 4.5rem !important;
  bottom: 4.5rem !important;
  left: 4.5rem !important;
}
.inset-20 {
  top: 5rem !important;
  right: 5rem !important;
  bottom: 5rem !important;
  left: 5rem !important;
}
.inset-22 {
  top: 5.5rem !important;
  right: 5.5rem !important;
  bottom: 5.5rem !important;
  left: 5.5rem !important;
}
.inset-24 {
  top: 6rem !important;
  right: 6rem !important;
  bottom: 6rem !important;
  left: 6rem !important;
}
.inset-26 {
  top: 6.5rem !important;
  right: 6.5rem !important;
  bottom: 6.5rem !important;
  left: 6.5rem !important;
}
.inset-28 {
  top: 7rem !important;
  right: 7rem !important;
  bottom: 7rem !important;
  left: 7rem !important;
}
.inset-30 {
  top: 7.5rem !important;
  right: 7.5rem !important;
  bottom: 7.5rem !important;
  left: 7.5rem !important;
}
.inset-32 {
  top: 8rem !important;
  right: 8rem !important;
  bottom: 8rem !important;
  left: 8rem !important;
}
.inset-36 {
  top: 9rem !important;
  right: 9rem !important;
  bottom: 9rem !important;
  left: 9rem !important;
}
.inset-40 {
  top: 10rem !important;
  right: 10rem !important;
  bottom: 10rem !important;
  left: 10rem !important;
}
.inset-44 {
  top: 11rem !important;
  right: 11rem !important;
  bottom: 11rem !important;
  left: 11rem !important;
}
.inset-48 {
  top: 12rem !important;
  right: 12rem !important;
  bottom: 12rem !important;
  left: 12rem !important;
}
.inset-50 {
  top: 12.5rem !important;
  right: 12.5rem !important;
  bottom: 12.5rem !important;
  left: 12.5rem !important;
}
.inset-52 {
  top: 13rem !important;
  right: 13rem !important;
  bottom: 13rem !important;
  left: 13rem !important;
}
.inset-56 {
  top: 14rem !important;
  right: 14rem !important;
  bottom: 14rem !important;
  left: 14rem !important;
}
.inset-60 {
  top: 15rem !important;
  right: 15rem !important;
  bottom: 15rem !important;
  left: 15rem !important;
}
.inset-64 {
  top: 16rem !important;
  right: 16rem !important;
  bottom: 16rem !important;
  left: 16rem !important;
}
.inset-72 {
  top: 18rem !important;
  right: 18rem !important;
  bottom: 18rem !important;
  left: 18rem !important;
}
.inset-80 {
  top: 20rem !important;
  right: 20rem !important;
  bottom: 20rem !important;
  left: 20rem !important;
}
.inset-90 {
  top: 24rem !important;
  right: 24rem !important;
  bottom: 24rem !important;
  left: 24rem !important;
}
.inset-96 {
  top: 24rem !important;
  right: 24rem !important;
  bottom: 24rem !important;
  left: 24rem !important;
}
.inset-100 {
  top: 25rem !important;
  right: 25rem !important;
  bottom: 25rem !important;
  left: 25rem !important;
}
.inset-120 {
  top: 30rem !important;
  right: 30rem !important;
  bottom: 30rem !important;
  left: 30rem !important;
}
.inset-128 {
  top: 32rem !important;
  right: 32rem !important;
  bottom: 32rem !important;
  left: 32rem !important;
}
.inset-140 {
  top: 35rem !important;
  right: 35rem !important;
  bottom: 35rem !important;
  left: 35rem !important;
}
.inset-160 {
  top: 40rem !important;
  right: 40rem !important;
  bottom: 40rem !important;
  left: 40rem !important;
}
.inset-180 {
  top: 45rem !important;
  right: 45rem !important;
  bottom: 45rem !important;
  left: 45rem !important;
}
.inset-192 {
  top: 48rem !important;
  right: 48rem !important;
  bottom: 48rem !important;
  left: 48rem !important;
}
.inset-200 {
  top: 50rem !important;
  right: 50rem !important;
  bottom: 50rem !important;
  left: 50rem !important;
}
.inset-240 {
  top: 60rem !important;
  right: 60rem !important;
  bottom: 60rem !important;
  left: 60rem !important;
}
.inset-256 {
  top: 64rem !important;
  right: 64rem !important;
  bottom: 64rem !important;
  left: 64rem !important;
}
.inset-280 {
  top: 70rem !important;
  right: 70rem !important;
  bottom: 70rem !important;
  left: 70rem !important;
}
.inset-320 {
  top: 80rem !important;
  right: 80rem !important;
  bottom: 80rem !important;
  left: 80rem !important;
}
.inset-360 {
  top: 90rem !important;
  right: 90rem !important;
  bottom: 90rem !important;
  left: 90rem !important;
}
.inset-400 {
  top: 100rem !important;
  right: 100rem !important;
  bottom: 100rem !important;
  left: 100rem !important;
}
.inset-480 {
  top: 120rem !important;
  right: 120rem !important;
  bottom: 120rem !important;
  left: 120rem !important;
}
.inset-auto {
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}
.inset-px {
  top: 1px !important;
  right: 1px !important;
  bottom: 1px !important;
  left: 1px !important;
}
.inset-0\.5 {
  top: 0.125rem !important;
  right: 0.125rem !important;
  bottom: 0.125rem !important;
  left: 0.125rem !important;
}
.inset-1\.5 {
  top: 0.375rem !important;
  right: 0.375rem !important;
  bottom: 0.375rem !important;
  left: 0.375rem !important;
}
.inset-2\.5 {
  top: 0.625rem !important;
  right: 0.625rem !important;
  bottom: 0.625rem !important;
  left: 0.625rem !important;
}
.inset-3\.5 {
  top: 0.875rem !important;
  right: 0.875rem !important;
  bottom: 0.875rem !important;
  left: 0.875rem !important;
}
.inset-1\/2 {
  top: 50% !important;
  right: 50% !important;
  bottom: 50% !important;
  left: 50% !important;
}
.inset-1\/3 {
  top: 33.333333% !important;
  right: 33.333333% !important;
  bottom: 33.333333% !important;
  left: 33.333333% !important;
}
.inset-2\/3 {
  top: 66.666667% !important;
  right: 66.666667% !important;
  bottom: 66.666667% !important;
  left: 66.666667% !important;
}
.inset-1\/4 {
  top: 25% !important;
  right: 25% !important;
  bottom: 25% !important;
  left: 25% !important;
}
.inset-2\/4 {
  top: 50% !important;
  right: 50% !important;
  bottom: 50% !important;
  left: 50% !important;
}
.inset-3\/4 {
  top: 75% !important;
  right: 75% !important;
  bottom: 75% !important;
  left: 75% !important;
}
.inset-1\/5 {
  top: 20% !important;
  right: 20% !important;
  bottom: 20% !important;
  left: 20% !important;
}
.inset-2\/5 {
  top: 40% !important;
  right: 40% !important;
  bottom: 40% !important;
  left: 40% !important;
}
.inset-3\/5 {
  top: 60% !important;
  right: 60% !important;
  bottom: 60% !important;
  left: 60% !important;
}
.inset-4\/5 {
  top: 80% !important;
  right: 80% !important;
  bottom: 80% !important;
  left: 80% !important;
}
.inset-1\/6 {
  top: 16.666667% !important;
  right: 16.666667% !important;
  bottom: 16.666667% !important;
  left: 16.666667% !important;
}
.inset-2\/6 {
  top: 33.333333% !important;
  right: 33.333333% !important;
  bottom: 33.333333% !important;
  left: 33.333333% !important;
}
.inset-3\/6 {
  top: 50% !important;
  right: 50% !important;
  bottom: 50% !important;
  left: 50% !important;
}
.inset-4\/6 {
  top: 66.666667% !important;
  right: 66.666667% !important;
  bottom: 66.666667% !important;
  left: 66.666667% !important;
}
.inset-5\/6 {
  top: 83.333333% !important;
  right: 83.333333% !important;
  bottom: 83.333333% !important;
  left: 83.333333% !important;
}
.inset-1\/12 {
  top: 8.333333% !important;
  right: 8.333333% !important;
  bottom: 8.333333% !important;
  left: 8.333333% !important;
}
.inset-2\/12 {
  top: 16.666667% !important;
  right: 16.666667% !important;
  bottom: 16.666667% !important;
  left: 16.666667% !important;
}
.inset-3\/12 {
  top: 25% !important;
  right: 25% !important;
  bottom: 25% !important;
  left: 25% !important;
}
.inset-4\/12 {
  top: 33.333333% !important;
  right: 33.333333% !important;
  bottom: 33.333333% !important;
  left: 33.333333% !important;
}
.inset-5\/12 {
  top: 41.666667% !important;
  right: 41.666667% !important;
  bottom: 41.666667% !important;
  left: 41.666667% !important;
}
.inset-6\/12 {
  top: 50% !important;
  right: 50% !important;
  bottom: 50% !important;
  left: 50% !important;
}
.inset-7\/12 {
  top: 58.333333% !important;
  right: 58.333333% !important;
  bottom: 58.333333% !important;
  left: 58.333333% !important;
}
.inset-8\/12 {
  top: 66.666667% !important;
  right: 66.666667% !important;
  bottom: 66.666667% !important;
  left: 66.666667% !important;
}
.inset-9\/12 {
  top: 75% !important;
  right: 75% !important;
  bottom: 75% !important;
  left: 75% !important;
}
.inset-10\/12 {
  top: 83.333333% !important;
  right: 83.333333% !important;
  bottom: 83.333333% !important;
  left: 83.333333% !important;
}
.inset-11\/12 {
  top: 91.666667% !important;
  right: 91.666667% !important;
  bottom: 91.666667% !important;
  left: 91.666667% !important;
}
.inset-full {
  top: 100% !important;
  right: 100% !important;
  bottom: 100% !important;
  left: 100% !important;
}
.inset-2px {
  top: 2px !important;
  right: 2px !important;
  bottom: 2px !important;
  left: 2px !important;
}
.inset-y-0 {
  top: 0 !important;
  bottom: 0 !important;
}
.inset-x-0 {
  right: 0 !important;
  left: 0 !important;
}
.inset-y-1 {
  top: 0.25rem !important;
  bottom: 0.25rem !important;
}
.inset-x-1 {
  right: 0.25rem !important;
  left: 0.25rem !important;
}
.inset-y-2 {
  top: 0.5rem !important;
  bottom: 0.5rem !important;
}
.inset-x-2 {
  right: 0.5rem !important;
  left: 0.5rem !important;
}
.inset-y-3 {
  top: 0.75rem !important;
  bottom: 0.75rem !important;
}
.inset-x-3 {
  right: 0.75rem !important;
  left: 0.75rem !important;
}
.inset-y-4 {
  top: 1rem !important;
  bottom: 1rem !important;
}
.inset-x-4 {
  right: 1rem !important;
  left: 1rem !important;
}
.inset-y-5 {
  top: 1.25rem !important;
  bottom: 1.25rem !important;
}
.inset-x-5 {
  right: 1.25rem !important;
  left: 1.25rem !important;
}
.inset-y-6 {
  top: 1.5rem !important;
  bottom: 1.5rem !important;
}
.inset-x-6 {
  right: 1.5rem !important;
  left: 1.5rem !important;
}
.inset-y-7 {
  top: 1.75rem !important;
  bottom: 1.75rem !important;
}
.inset-x-7 {
  right: 1.75rem !important;
  left: 1.75rem !important;
}
.inset-y-8 {
  top: 2rem !important;
  bottom: 2rem !important;
}
.inset-x-8 {
  right: 2rem !important;
  left: 2rem !important;
}
.inset-y-9 {
  top: 2.25rem !important;
  bottom: 2.25rem !important;
}
.inset-x-9 {
  right: 2.25rem !important;
  left: 2.25rem !important;
}
.inset-y-10 {
  top: 2.5rem !important;
  bottom: 2.5rem !important;
}
.inset-x-10 {
  right: 2.5rem !important;
  left: 2.5rem !important;
}
.inset-y-11 {
  top: 2.75rem !important;
  bottom: 2.75rem !important;
}
.inset-x-11 {
  right: 2.75rem !important;
  left: 2.75rem !important;
}
.inset-y-12 {
  top: 3rem !important;
  bottom: 3rem !important;
}
.inset-x-12 {
  right: 3rem !important;
  left: 3rem !important;
}
.inset-y-13 {
  top: 3.25rem !important;
  bottom: 3.25rem !important;
}
.inset-x-13 {
  right: 3.25rem !important;
  left: 3.25rem !important;
}
.inset-y-14 {
  top: 3.5rem !important;
  bottom: 3.5rem !important;
}
.inset-x-14 {
  right: 3.5rem !important;
  left: 3.5rem !important;
}
.inset-y-15 {
  top: 3.75rem !important;
  bottom: 3.75rem !important;
}
.inset-x-15 {
  right: 3.75rem !important;
  left: 3.75rem !important;
}
.inset-y-16 {
  top: 4rem !important;
  bottom: 4rem !important;
}
.inset-x-16 {
  right: 4rem !important;
  left: 4rem !important;
}
.inset-y-18 {
  top: 4.5rem !important;
  bottom: 4.5rem !important;
}
.inset-x-18 {
  right: 4.5rem !important;
  left: 4.5rem !important;
}
.inset-y-20 {
  top: 5rem !important;
  bottom: 5rem !important;
}
.inset-x-20 {
  right: 5rem !important;
  left: 5rem !important;
}
.inset-y-22 {
  top: 5.5rem !important;
  bottom: 5.5rem !important;
}
.inset-x-22 {
  right: 5.5rem !important;
  left: 5.5rem !important;
}
.inset-y-24 {
  top: 6rem !important;
  bottom: 6rem !important;
}
.inset-x-24 {
  right: 6rem !important;
  left: 6rem !important;
}
.inset-y-26 {
  top: 6.5rem !important;
  bottom: 6.5rem !important;
}
.inset-x-26 {
  right: 6.5rem !important;
  left: 6.5rem !important;
}
.inset-y-28 {
  top: 7rem !important;
  bottom: 7rem !important;
}
.inset-x-28 {
  right: 7rem !important;
  left: 7rem !important;
}
.inset-y-30 {
  top: 7.5rem !important;
  bottom: 7.5rem !important;
}
.inset-x-30 {
  right: 7.5rem !important;
  left: 7.5rem !important;
}
.inset-y-32 {
  top: 8rem !important;
  bottom: 8rem !important;
}
.inset-x-32 {
  right: 8rem !important;
  left: 8rem !important;
}
.inset-y-36 {
  top: 9rem !important;
  bottom: 9rem !important;
}
.inset-x-36 {
  right: 9rem !important;
  left: 9rem !important;
}
.inset-y-40 {
  top: 10rem !important;
  bottom: 10rem !important;
}
.inset-x-40 {
  right: 10rem !important;
  left: 10rem !important;
}
.inset-y-44 {
  top: 11rem !important;
  bottom: 11rem !important;
}
.inset-x-44 {
  right: 11rem !important;
  left: 11rem !important;
}
.inset-y-48 {
  top: 12rem !important;
  bottom: 12rem !important;
}
.inset-x-48 {
  right: 12rem !important;
  left: 12rem !important;
}
.inset-y-50 {
  top: 12.5rem !important;
  bottom: 12.5rem !important;
}
.inset-x-50 {
  right: 12.5rem !important;
  left: 12.5rem !important;
}
.inset-y-52 {
  top: 13rem !important;
  bottom: 13rem !important;
}
.inset-x-52 {
  right: 13rem !important;
  left: 13rem !important;
}
.inset-y-56 {
  top: 14rem !important;
  bottom: 14rem !important;
}
.inset-x-56 {
  right: 14rem !important;
  left: 14rem !important;
}
.inset-y-60 {
  top: 15rem !important;
  bottom: 15rem !important;
}
.inset-x-60 {
  right: 15rem !important;
  left: 15rem !important;
}
.inset-y-64 {
  top: 16rem !important;
  bottom: 16rem !important;
}
.inset-x-64 {
  right: 16rem !important;
  left: 16rem !important;
}
.inset-y-72 {
  top: 18rem !important;
  bottom: 18rem !important;
}
.inset-x-72 {
  right: 18rem !important;
  left: 18rem !important;
}
.inset-y-80 {
  top: 20rem !important;
  bottom: 20rem !important;
}
.inset-x-80 {
  right: 20rem !important;
  left: 20rem !important;
}
.inset-y-90 {
  top: 24rem !important;
  bottom: 24rem !important;
}
.inset-x-90 {
  right: 24rem !important;
  left: 24rem !important;
}
.inset-y-96 {
  top: 24rem !important;
  bottom: 24rem !important;
}
.inset-x-96 {
  right: 24rem !important;
  left: 24rem !important;
}
.inset-y-100 {
  top: 25rem !important;
  bottom: 25rem !important;
}
.inset-x-100 {
  right: 25rem !important;
  left: 25rem !important;
}
.inset-y-120 {
  top: 30rem !important;
  bottom: 30rem !important;
}
.inset-x-120 {
  right: 30rem !important;
  left: 30rem !important;
}
.inset-y-128 {
  top: 32rem !important;
  bottom: 32rem !important;
}
.inset-x-128 {
  right: 32rem !important;
  left: 32rem !important;
}
.inset-y-140 {
  top: 35rem !important;
  bottom: 35rem !important;
}
.inset-x-140 {
  right: 35rem !important;
  left: 35rem !important;
}
.inset-y-160 {
  top: 40rem !important;
  bottom: 40rem !important;
}
.inset-x-160 {
  right: 40rem !important;
  left: 40rem !important;
}
.inset-y-180 {
  top: 45rem !important;
  bottom: 45rem !important;
}
.inset-x-180 {
  right: 45rem !important;
  left: 45rem !important;
}
.inset-y-192 {
  top: 48rem !important;
  bottom: 48rem !important;
}
.inset-x-192 {
  right: 48rem !important;
  left: 48rem !important;
}
.inset-y-200 {
  top: 50rem !important;
  bottom: 50rem !important;
}
.inset-x-200 {
  right: 50rem !important;
  left: 50rem !important;
}
.inset-y-240 {
  top: 60rem !important;
  bottom: 60rem !important;
}
.inset-x-240 {
  right: 60rem !important;
  left: 60rem !important;
}
.inset-y-256 {
  top: 64rem !important;
  bottom: 64rem !important;
}
.inset-x-256 {
  right: 64rem !important;
  left: 64rem !important;
}
.inset-y-280 {
  top: 70rem !important;
  bottom: 70rem !important;
}
.inset-x-280 {
  right: 70rem !important;
  left: 70rem !important;
}
.inset-y-320 {
  top: 80rem !important;
  bottom: 80rem !important;
}
.inset-x-320 {
  right: 80rem !important;
  left: 80rem !important;
}
.inset-y-360 {
  top: 90rem !important;
  bottom: 90rem !important;
}
.inset-x-360 {
  right: 90rem !important;
  left: 90rem !important;
}
.inset-y-400 {
  top: 100rem !important;
  bottom: 100rem !important;
}
.inset-x-400 {
  right: 100rem !important;
  left: 100rem !important;
}
.inset-y-480 {
  top: 120rem !important;
  bottom: 120rem !important;
}
.inset-x-480 {
  right: 120rem !important;
  left: 120rem !important;
}
.inset-y-auto {
  top: auto !important;
  bottom: auto !important;
}
.inset-x-auto {
  right: auto !important;
  left: auto !important;
}
.inset-y-px {
  top: 1px !important;
  bottom: 1px !important;
}
.inset-x-px {
  right: 1px !important;
  left: 1px !important;
}
.inset-y-0\.5 {
  top: 0.125rem !important;
  bottom: 0.125rem !important;
}
.inset-x-0\.5 {
  right: 0.125rem !important;
  left: 0.125rem !important;
}
.inset-y-1\.5 {
  top: 0.375rem !important;
  bottom: 0.375rem !important;
}
.inset-x-1\.5 {
  right: 0.375rem !important;
  left: 0.375rem !important;
}
.inset-y-2\.5 {
  top: 0.625rem !important;
  bottom: 0.625rem !important;
}
.inset-x-2\.5 {
  right: 0.625rem !important;
  left: 0.625rem !important;
}
.inset-y-3\.5 {
  top: 0.875rem !important;
  bottom: 0.875rem !important;
}
.inset-x-3\.5 {
  right: 0.875rem !important;
  left: 0.875rem !important;
}
.inset-y-1\/2 {
  top: 50% !important;
  bottom: 50% !important;
}
.inset-x-1\/2 {
  right: 50% !important;
  left: 50% !important;
}
.inset-y-1\/3 {
  top: 33.333333% !important;
  bottom: 33.333333% !important;
}
.inset-x-1\/3 {
  right: 33.333333% !important;
  left: 33.333333% !important;
}
.inset-y-2\/3 {
  top: 66.666667% !important;
  bottom: 66.666667% !important;
}
.inset-x-2\/3 {
  right: 66.666667% !important;
  left: 66.666667% !important;
}
.inset-y-1\/4 {
  top: 25% !important;
  bottom: 25% !important;
}
.inset-x-1\/4 {
  right: 25% !important;
  left: 25% !important;
}
.inset-y-2\/4 {
  top: 50% !important;
  bottom: 50% !important;
}
.inset-x-2\/4 {
  right: 50% !important;
  left: 50% !important;
}
.inset-y-3\/4 {
  top: 75% !important;
  bottom: 75% !important;
}
.inset-x-3\/4 {
  right: 75% !important;
  left: 75% !important;
}
.inset-y-1\/5 {
  top: 20% !important;
  bottom: 20% !important;
}
.inset-x-1\/5 {
  right: 20% !important;
  left: 20% !important;
}
.inset-y-2\/5 {
  top: 40% !important;
  bottom: 40% !important;
}
.inset-x-2\/5 {
  right: 40% !important;
  left: 40% !important;
}
.inset-y-3\/5 {
  top: 60% !important;
  bottom: 60% !important;
}
.inset-x-3\/5 {
  right: 60% !important;
  left: 60% !important;
}
.inset-y-4\/5 {
  top: 80% !important;
  bottom: 80% !important;
}
.inset-x-4\/5 {
  right: 80% !important;
  left: 80% !important;
}
.inset-y-1\/6 {
  top: 16.666667% !important;
  bottom: 16.666667% !important;
}
.inset-x-1\/6 {
  right: 16.666667% !important;
  left: 16.666667% !important;
}
.inset-y-2\/6 {
  top: 33.333333% !important;
  bottom: 33.333333% !important;
}
.inset-x-2\/6 {
  right: 33.333333% !important;
  left: 33.333333% !important;
}
.inset-y-3\/6 {
  top: 50% !important;
  bottom: 50% !important;
}
.inset-x-3\/6 {
  right: 50% !important;
  left: 50% !important;
}
.inset-y-4\/6 {
  top: 66.666667% !important;
  bottom: 66.666667% !important;
}
.inset-x-4\/6 {
  right: 66.666667% !important;
  left: 66.666667% !important;
}
.inset-y-5\/6 {
  top: 83.333333% !important;
  bottom: 83.333333% !important;
}
.inset-x-5\/6 {
  right: 83.333333% !important;
  left: 83.333333% !important;
}
.inset-y-1\/12 {
  top: 8.333333% !important;
  bottom: 8.333333% !important;
}
.inset-x-1\/12 {
  right: 8.333333% !important;
  left: 8.333333% !important;
}
.inset-y-2\/12 {
  top: 16.666667% !important;
  bottom: 16.666667% !important;
}
.inset-x-2\/12 {
  right: 16.666667% !important;
  left: 16.666667% !important;
}
.inset-y-3\/12 {
  top: 25% !important;
  bottom: 25% !important;
}
.inset-x-3\/12 {
  right: 25% !important;
  left: 25% !important;
}
.inset-y-4\/12 {
  top: 33.333333% !important;
  bottom: 33.333333% !important;
}
.inset-x-4\/12 {
  right: 33.333333% !important;
  left: 33.333333% !important;
}
.inset-y-5\/12 {
  top: 41.666667% !important;
  bottom: 41.666667% !important;
}
.inset-x-5\/12 {
  right: 41.666667% !important;
  left: 41.666667% !important;
}
.inset-y-6\/12 {
  top: 50% !important;
  bottom: 50% !important;
}
.inset-x-6\/12 {
  right: 50% !important;
  left: 50% !important;
}
.inset-y-7\/12 {
  top: 58.333333% !important;
  bottom: 58.333333% !important;
}
.inset-x-7\/12 {
  right: 58.333333% !important;
  left: 58.333333% !important;
}
.inset-y-8\/12 {
  top: 66.666667% !important;
  bottom: 66.666667% !important;
}
.inset-x-8\/12 {
  right: 66.666667% !important;
  left: 66.666667% !important;
}
.inset-y-9\/12 {
  top: 75% !important;
  bottom: 75% !important;
}
.inset-x-9\/12 {
  right: 75% !important;
  left: 75% !important;
}
.inset-y-10\/12 {
  top: 83.333333% !important;
  bottom: 83.333333% !important;
}
.inset-x-10\/12 {
  right: 83.333333% !important;
  left: 83.333333% !important;
}
.inset-y-11\/12 {
  top: 91.666667% !important;
  bottom: 91.666667% !important;
}
.inset-x-11\/12 {
  right: 91.666667% !important;
  left: 91.666667% !important;
}
.inset-y-full {
  top: 100% !important;
  bottom: 100% !important;
}
.inset-x-full {
  right: 100% !important;
  left: 100% !important;
}
.inset-y-2px {
  top: 2px !important;
  bottom: 2px !important;
}
.inset-x-2px {
  right: 2px !important;
  left: 2px !important;
}
.top-0 {
  top: 0 !important;
}
.right-0 {
  right: 0 !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.left-0 {
  left: 0 !important;
}
.top-1 {
  top: 0.25rem !important;
}
.right-1 {
  right: 0.25rem !important;
}
.bottom-1 {
  bottom: 0.25rem !important;
}
.left-1 {
  left: 0.25rem !important;
}
.top-2 {
  top: 0.5rem !important;
}
.right-2 {
  right: 0.5rem !important;
}
.bottom-2 {
  bottom: 0.5rem !important;
}
.left-2 {
  left: 0.5rem !important;
}
.top-3 {
  top: 0.75rem !important;
}
.right-3 {
  right: 0.75rem !important;
}
.bottom-3 {
  bottom: 0.75rem !important;
}
.left-3 {
  left: 0.75rem !important;
}
.top-4 {
  top: 1rem !important;
}
.right-4 {
  right: 1rem !important;
}
.bottom-4 {
  bottom: 1rem !important;
}
.left-4 {
  left: 1rem !important;
}
.top-5 {
  top: 1.25rem !important;
}
.right-5 {
  right: 1.25rem !important;
}
.bottom-5 {
  bottom: 1.25rem !important;
}
.left-5 {
  left: 1.25rem !important;
}
.top-6 {
  top: 1.5rem !important;
}
.right-6 {
  right: 1.5rem !important;
}
.bottom-6 {
  bottom: 1.5rem !important;
}
.left-6 {
  left: 1.5rem !important;
}
.top-7 {
  top: 1.75rem !important;
}
.right-7 {
  right: 1.75rem !important;
}
.bottom-7 {
  bottom: 1.75rem !important;
}
.left-7 {
  left: 1.75rem !important;
}
.top-8 {
  top: 2rem !important;
}
.right-8 {
  right: 2rem !important;
}
.bottom-8 {
  bottom: 2rem !important;
}
.left-8 {
  left: 2rem !important;
}
.top-9 {
  top: 2.25rem !important;
}
.right-9 {
  right: 2.25rem !important;
}
.bottom-9 {
  bottom: 2.25rem !important;
}
.left-9 {
  left: 2.25rem !important;
}
.top-10 {
  top: 2.5rem !important;
}
.right-10 {
  right: 2.5rem !important;
}
.bottom-10 {
  bottom: 2.5rem !important;
}
.left-10 {
  left: 2.5rem !important;
}
.top-11 {
  top: 2.75rem !important;
}
.right-11 {
  right: 2.75rem !important;
}
.bottom-11 {
  bottom: 2.75rem !important;
}
.left-11 {
  left: 2.75rem !important;
}
.top-12 {
  top: 3rem !important;
}
.right-12 {
  right: 3rem !important;
}
.bottom-12 {
  bottom: 3rem !important;
}
.left-12 {
  left: 3rem !important;
}
.top-13 {
  top: 3.25rem !important;
}
.right-13 {
  right: 3.25rem !important;
}
.bottom-13 {
  bottom: 3.25rem !important;
}
.left-13 {
  left: 3.25rem !important;
}
.top-14 {
  top: 3.5rem !important;
}
.right-14 {
  right: 3.5rem !important;
}
.bottom-14 {
  bottom: 3.5rem !important;
}
.left-14 {
  left: 3.5rem !important;
}
.top-15 {
  top: 3.75rem !important;
}
.right-15 {
  right: 3.75rem !important;
}
.bottom-15 {
  bottom: 3.75rem !important;
}
.left-15 {
  left: 3.75rem !important;
}
.top-16 {
  top: 4rem !important;
}
.right-16 {
  right: 4rem !important;
}
.bottom-16 {
  bottom: 4rem !important;
}
.left-16 {
  left: 4rem !important;
}
.top-18 {
  top: 4.5rem !important;
}
.right-18 {
  right: 4.5rem !important;
}
.bottom-18 {
  bottom: 4.5rem !important;
}
.left-18 {
  left: 4.5rem !important;
}
.top-20 {
  top: 5rem !important;
}
.right-20 {
  right: 5rem !important;
}
.bottom-20 {
  bottom: 5rem !important;
}
.left-20 {
  left: 5rem !important;
}
.top-22 {
  top: 5.5rem !important;
}
.right-22 {
  right: 5.5rem !important;
}
.bottom-22 {
  bottom: 5.5rem !important;
}
.left-22 {
  left: 5.5rem !important;
}
.top-24 {
  top: 6rem !important;
}
.right-24 {
  right: 6rem !important;
}
.bottom-24 {
  bottom: 6rem !important;
}
.left-24 {
  left: 6rem !important;
}
.top-26 {
  top: 6.5rem !important;
}
.right-26 {
  right: 6.5rem !important;
}
.bottom-26 {
  bottom: 6.5rem !important;
}
.left-26 {
  left: 6.5rem !important;
}
.top-28 {
  top: 7rem !important;
}
.right-28 {
  right: 7rem !important;
}
.bottom-28 {
  bottom: 7rem !important;
}
.left-28 {
  left: 7rem !important;
}
.top-30 {
  top: 7.5rem !important;
}
.right-30 {
  right: 7.5rem !important;
}
.bottom-30 {
  bottom: 7.5rem !important;
}
.left-30 {
  left: 7.5rem !important;
}
.top-32 {
  top: 8rem !important;
}
.right-32 {
  right: 8rem !important;
}
.bottom-32 {
  bottom: 8rem !important;
}
.left-32 {
  left: 8rem !important;
}
.top-36 {
  top: 9rem !important;
}
.right-36 {
  right: 9rem !important;
}
.bottom-36 {
  bottom: 9rem !important;
}
.left-36 {
  left: 9rem !important;
}
.top-40 {
  top: 10rem !important;
}
.right-40 {
  right: 10rem !important;
}
.bottom-40 {
  bottom: 10rem !important;
}
.left-40 {
  left: 10rem !important;
}
.top-44 {
  top: 11rem !important;
}
.right-44 {
  right: 11rem !important;
}
.bottom-44 {
  bottom: 11rem !important;
}
.left-44 {
  left: 11rem !important;
}
.top-48 {
  top: 12rem !important;
}
.right-48 {
  right: 12rem !important;
}
.bottom-48 {
  bottom: 12rem !important;
}
.left-48 {
  left: 12rem !important;
}
.top-50 {
  top: 12.5rem !important;
}
.right-50 {
  right: 12.5rem !important;
}
.bottom-50 {
  bottom: 12.5rem !important;
}
.left-50 {
  left: 12.5rem !important;
}
.top-52 {
  top: 13rem !important;
}
.right-52 {
  right: 13rem !important;
}
.bottom-52 {
  bottom: 13rem !important;
}
.left-52 {
  left: 13rem !important;
}
.top-56 {
  top: 14rem !important;
}
.right-56 {
  right: 14rem !important;
}
.bottom-56 {
  bottom: 14rem !important;
}
.left-56 {
  left: 14rem !important;
}
.top-60 {
  top: 15rem !important;
}
.right-60 {
  right: 15rem !important;
}
.bottom-60 {
  bottom: 15rem !important;
}
.left-60 {
  left: 15rem !important;
}
.top-64 {
  top: 16rem !important;
}
.right-64 {
  right: 16rem !important;
}
.bottom-64 {
  bottom: 16rem !important;
}
.left-64 {
  left: 16rem !important;
}
.top-72 {
  top: 18rem !important;
}
.right-72 {
  right: 18rem !important;
}
.bottom-72 {
  bottom: 18rem !important;
}
.left-72 {
  left: 18rem !important;
}
.top-80 {
  top: 20rem !important;
}
.right-80 {
  right: 20rem !important;
}
.bottom-80 {
  bottom: 20rem !important;
}
.left-80 {
  left: 20rem !important;
}
.top-90 {
  top: 24rem !important;
}
.right-90 {
  right: 24rem !important;
}
.bottom-90 {
  bottom: 24rem !important;
}
.left-90 {
  left: 24rem !important;
}
.top-96 {
  top: 24rem !important;
}
.right-96 {
  right: 24rem !important;
}
.bottom-96 {
  bottom: 24rem !important;
}
.left-96 {
  left: 24rem !important;
}
.top-100 {
  top: 25rem !important;
}
.right-100 {
  right: 25rem !important;
}
.bottom-100 {
  bottom: 25rem !important;
}
.left-100 {
  left: 25rem !important;
}
.top-120 {
  top: 30rem !important;
}
.right-120 {
  right: 30rem !important;
}
.bottom-120 {
  bottom: 30rem !important;
}
.left-120 {
  left: 30rem !important;
}
.top-128 {
  top: 32rem !important;
}
.right-128 {
  right: 32rem !important;
}
.bottom-128 {
  bottom: 32rem !important;
}
.left-128 {
  left: 32rem !important;
}
.top-140 {
  top: 35rem !important;
}
.right-140 {
  right: 35rem !important;
}
.bottom-140 {
  bottom: 35rem !important;
}
.left-140 {
  left: 35rem !important;
}
.top-160 {
  top: 40rem !important;
}
.right-160 {
  right: 40rem !important;
}
.bottom-160 {
  bottom: 40rem !important;
}
.left-160 {
  left: 40rem !important;
}
.top-180 {
  top: 45rem !important;
}
.right-180 {
  right: 45rem !important;
}
.bottom-180 {
  bottom: 45rem !important;
}
.left-180 {
  left: 45rem !important;
}
.top-192 {
  top: 48rem !important;
}
.right-192 {
  right: 48rem !important;
}
.bottom-192 {
  bottom: 48rem !important;
}
.left-192 {
  left: 48rem !important;
}
.top-200 {
  top: 50rem !important;
}
.right-200 {
  right: 50rem !important;
}
.bottom-200 {
  bottom: 50rem !important;
}
.left-200 {
  left: 50rem !important;
}
.top-240 {
  top: 60rem !important;
}
.right-240 {
  right: 60rem !important;
}
.bottom-240 {
  bottom: 60rem !important;
}
.left-240 {
  left: 60rem !important;
}
.top-256 {
  top: 64rem !important;
}
.right-256 {
  right: 64rem !important;
}
.bottom-256 {
  bottom: 64rem !important;
}
.left-256 {
  left: 64rem !important;
}
.top-280 {
  top: 70rem !important;
}
.right-280 {
  right: 70rem !important;
}
.bottom-280 {
  bottom: 70rem !important;
}
.left-280 {
  left: 70rem !important;
}
.top-320 {
  top: 80rem !important;
}
.right-320 {
  right: 80rem !important;
}
.bottom-320 {
  bottom: 80rem !important;
}
.left-320 {
  left: 80rem !important;
}
.top-360 {
  top: 90rem !important;
}
.right-360 {
  right: 90rem !important;
}
.bottom-360 {
  bottom: 90rem !important;
}
.left-360 {
  left: 90rem !important;
}
.top-400 {
  top: 100rem !important;
}
.right-400 {
  right: 100rem !important;
}
.bottom-400 {
  bottom: 100rem !important;
}
.left-400 {
  left: 100rem !important;
}
.top-480 {
  top: 120rem !important;
}
.right-480 {
  right: 120rem !important;
}
.bottom-480 {
  bottom: 120rem !important;
}
.left-480 {
  left: 120rem !important;
}
.top-auto {
  top: auto !important;
}
.right-auto {
  right: auto !important;
}
.bottom-auto {
  bottom: auto !important;
}
.left-auto {
  left: auto !important;
}
.top-px {
  top: 1px !important;
}
.right-px {
  right: 1px !important;
}
.bottom-px {
  bottom: 1px !important;
}
.left-px {
  left: 1px !important;
}
.top-0\.5 {
  top: 0.125rem !important;
}
.right-0\.5 {
  right: 0.125rem !important;
}
.bottom-0\.5 {
  bottom: 0.125rem !important;
}
.left-0\.5 {
  left: 0.125rem !important;
}
.top-1\.5 {
  top: 0.375rem !important;
}
.right-1\.5 {
  right: 0.375rem !important;
}
.bottom-1\.5 {
  bottom: 0.375rem !important;
}
.left-1\.5 {
  left: 0.375rem !important;
}
.top-2\.5 {
  top: 0.625rem !important;
}
.right-2\.5 {
  right: 0.625rem !important;
}
.bottom-2\.5 {
  bottom: 0.625rem !important;
}
.left-2\.5 {
  left: 0.625rem !important;
}
.top-3\.5 {
  top: 0.875rem !important;
}
.right-3\.5 {
  right: 0.875rem !important;
}
.bottom-3\.5 {
  bottom: 0.875rem !important;
}
.left-3\.5 {
  left: 0.875rem !important;
}
.top-1\/2 {
  top: 50% !important;
}
.right-1\/2 {
  right: 50% !important;
}
.bottom-1\/2 {
  bottom: 50% !important;
}
.left-1\/2 {
  left: 50% !important;
}
.top-1\/3 {
  top: 33.333333% !important;
}
.right-1\/3 {
  right: 33.333333% !important;
}
.bottom-1\/3 {
  bottom: 33.333333% !important;
}
.left-1\/3 {
  left: 33.333333% !important;
}
.top-2\/3 {
  top: 66.666667% !important;
}
.right-2\/3 {
  right: 66.666667% !important;
}
.bottom-2\/3 {
  bottom: 66.666667% !important;
}
.left-2\/3 {
  left: 66.666667% !important;
}
.top-1\/4 {
  top: 25% !important;
}
.right-1\/4 {
  right: 25% !important;
}
.bottom-1\/4 {
  bottom: 25% !important;
}
.left-1\/4 {
  left: 25% !important;
}
.top-2\/4 {
  top: 50% !important;
}
.right-2\/4 {
  right: 50% !important;
}
.bottom-2\/4 {
  bottom: 50% !important;
}
.left-2\/4 {
  left: 50% !important;
}
.top-3\/4 {
  top: 75% !important;
}
.right-3\/4 {
  right: 75% !important;
}
.bottom-3\/4 {
  bottom: 75% !important;
}
.left-3\/4 {
  left: 75% !important;
}
.top-1\/5 {
  top: 20% !important;
}
.right-1\/5 {
  right: 20% !important;
}
.bottom-1\/5 {
  bottom: 20% !important;
}
.left-1\/5 {
  left: 20% !important;
}
.top-2\/5 {
  top: 40% !important;
}
.right-2\/5 {
  right: 40% !important;
}
.bottom-2\/5 {
  bottom: 40% !important;
}
.left-2\/5 {
  left: 40% !important;
}
.top-3\/5 {
  top: 60% !important;
}
.right-3\/5 {
  right: 60% !important;
}
.bottom-3\/5 {
  bottom: 60% !important;
}
.left-3\/5 {
  left: 60% !important;
}
.top-4\/5 {
  top: 80% !important;
}
.right-4\/5 {
  right: 80% !important;
}
.bottom-4\/5 {
  bottom: 80% !important;
}
.left-4\/5 {
  left: 80% !important;
}
.top-1\/6 {
  top: 16.666667% !important;
}
.right-1\/6 {
  right: 16.666667% !important;
}
.bottom-1\/6 {
  bottom: 16.666667% !important;
}
.left-1\/6 {
  left: 16.666667% !important;
}
.top-2\/6 {
  top: 33.333333% !important;
}
.right-2\/6 {
  right: 33.333333% !important;
}
.bottom-2\/6 {
  bottom: 33.333333% !important;
}
.left-2\/6 {
  left: 33.333333% !important;
}
.top-3\/6 {
  top: 50% !important;
}
.right-3\/6 {
  right: 50% !important;
}
.bottom-3\/6 {
  bottom: 50% !important;
}
.left-3\/6 {
  left: 50% !important;
}
.top-4\/6 {
  top: 66.666667% !important;
}
.right-4\/6 {
  right: 66.666667% !important;
}
.bottom-4\/6 {
  bottom: 66.666667% !important;
}
.left-4\/6 {
  left: 66.666667% !important;
}
.top-5\/6 {
  top: 83.333333% !important;
}
.right-5\/6 {
  right: 83.333333% !important;
}
.bottom-5\/6 {
  bottom: 83.333333% !important;
}
.left-5\/6 {
  left: 83.333333% !important;
}
.top-1\/12 {
  top: 8.333333% !important;
}
.right-1\/12 {
  right: 8.333333% !important;
}
.bottom-1\/12 {
  bottom: 8.333333% !important;
}
.left-1\/12 {
  left: 8.333333% !important;
}
.top-2\/12 {
  top: 16.666667% !important;
}
.right-2\/12 {
  right: 16.666667% !important;
}
.bottom-2\/12 {
  bottom: 16.666667% !important;
}
.left-2\/12 {
  left: 16.666667% !important;
}
.top-3\/12 {
  top: 25% !important;
}
.right-3\/12 {
  right: 25% !important;
}
.bottom-3\/12 {
  bottom: 25% !important;
}
.left-3\/12 {
  left: 25% !important;
}
.top-4\/12 {
  top: 33.333333% !important;
}
.right-4\/12 {
  right: 33.333333% !important;
}
.bottom-4\/12 {
  bottom: 33.333333% !important;
}
.left-4\/12 {
  left: 33.333333% !important;
}
.top-5\/12 {
  top: 41.666667% !important;
}
.right-5\/12 {
  right: 41.666667% !important;
}
.bottom-5\/12 {
  bottom: 41.666667% !important;
}
.left-5\/12 {
  left: 41.666667% !important;
}
.top-6\/12 {
  top: 50% !important;
}
.right-6\/12 {
  right: 50% !important;
}
.bottom-6\/12 {
  bottom: 50% !important;
}
.left-6\/12 {
  left: 50% !important;
}
.top-7\/12 {
  top: 58.333333% !important;
}
.right-7\/12 {
  right: 58.333333% !important;
}
.bottom-7\/12 {
  bottom: 58.333333% !important;
}
.left-7\/12 {
  left: 58.333333% !important;
}
.top-8\/12 {
  top: 66.666667% !important;
}
.right-8\/12 {
  right: 66.666667% !important;
}
.bottom-8\/12 {
  bottom: 66.666667% !important;
}
.left-8\/12 {
  left: 66.666667% !important;
}
.top-9\/12 {
  top: 75% !important;
}
.right-9\/12 {
  right: 75% !important;
}
.bottom-9\/12 {
  bottom: 75% !important;
}
.left-9\/12 {
  left: 75% !important;
}
.top-10\/12 {
  top: 83.333333% !important;
}
.right-10\/12 {
  right: 83.333333% !important;
}
.bottom-10\/12 {
  bottom: 83.333333% !important;
}
.left-10\/12 {
  left: 83.333333% !important;
}
.top-11\/12 {
  top: 91.666667% !important;
}
.right-11\/12 {
  right: 91.666667% !important;
}
.bottom-11\/12 {
  bottom: 91.666667% !important;
}
.left-11\/12 {
  left: 91.666667% !important;
}
.top-full {
  top: 100% !important;
}
.right-full {
  right: 100% !important;
}
.bottom-full {
  bottom: 100% !important;
}
.left-full {
  left: 100% !important;
}
.top-2px {
  top: 2px !important;
}
.right-2px {
  right: 2px !important;
}
.bottom-2px {
  bottom: 2px !important;
}
.left-2px {
  left: 2px !important;
}
.resize-none {
  resize: none !important;
}
.resize-y {
  resize: vertical !important;
}
.resize-x {
  resize: horizontal !important;
}
.resize {
  resize: both !important;
}
.shadow-xs {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}
.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
}
.shadow-outline {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.shadow-solid {
  box-shadow: 0 0 0 2px currentColor !important;
}
.fill-current {
  fill: currentColor !important;
}
.stroke-current {
  stroke: currentColor !important;
}
.stroke-0 {
  stroke-width: 0 !important;
}
.stroke-1 {
  stroke-width: 1 !important;
}
.stroke-2 {
  stroke-width: 2 !important;
}
.table-auto {
  table-layout: auto !important;
}
.table-fixed {
  table-layout: fixed !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}
.text-current {
  color: currentColor !important;
}
.text-transparent {
  color: transparent !important;
}
.text-white {
  --text-opacity: 1 !important;
  color: #FFFFFF !important;
  color: rgba(255, 255, 255, var(--text-opacity)) !important;
}
.text-black {
  --text-opacity: 1 !important;
  color: #000000 !important;
  color: rgba(0, 0, 0, var(--text-opacity)) !important;
}
.text-gray-50 {
  --text-opacity: 1 !important;
  color: #F9FAFB !important;
  color: rgba(249, 250, 251, var(--text-opacity)) !important;
}
.text-gray-100 {
  --text-opacity: 1 !important;
  color: #F4F5F7 !important;
  color: rgba(244, 245, 247, var(--text-opacity)) !important;
}
.text-gray-200 {
  --text-opacity: 1 !important;
  color: #E5E7EB !important;
  color: rgba(229, 231, 235, var(--text-opacity)) !important;
}
.text-gray-300 {
  --text-opacity: 1 !important;
  color: #D2D6DC !important;
  color: rgba(210, 214, 220, var(--text-opacity)) !important;
}
.text-gray-400 {
  --text-opacity: 1 !important;
  color: #9FA6B2 !important;
  color: rgba(159, 166, 178, var(--text-opacity)) !important;
}
.text-gray-500 {
  --text-opacity: 1 !important;
  color: #6B7280 !important;
  color: rgba(107, 114, 128, var(--text-opacity)) !important;
}
.text-gray-600 {
  --text-opacity: 1 !important;
  color: #4B5563 !important;
  color: rgba(75, 85, 99, var(--text-opacity)) !important;
}
.text-gray-700 {
  --text-opacity: 1 !important;
  color: #374151 !important;
  color: rgba(55, 65, 81, var(--text-opacity)) !important;
}
.text-gray-800 {
  --text-opacity: 1 !important;
  color: #252F3F !important;
  color: rgba(37, 47, 63, var(--text-opacity)) !important;
}
.text-gray-900 {
  --text-opacity: 1 !important;
  color: #161E2E !important;
  color: rgba(22, 30, 46, var(--text-opacity)) !important;
}
.text-gray {
  --text-opacity: 1 !important;
  color: #6B7280 !important;
  color: rgba(107, 114, 128, var(--text-opacity)) !important;
}
.text-cool-gray-50 {
  --text-opacity: 1 !important;
  color: #FBFDFE !important;
  color: rgba(251, 253, 254, var(--text-opacity)) !important;
}
.text-cool-gray-100 {
  --text-opacity: 1 !important;
  color: #F1F5F9 !important;
  color: rgba(241, 245, 249, var(--text-opacity)) !important;
}
.text-cool-gray-200 {
  --text-opacity: 1 !important;
  color: #E2E8F0 !important;
  color: rgba(226, 232, 240, var(--text-opacity)) !important;
}
.text-cool-gray-300 {
  --text-opacity: 1 !important;
  color: #CFD8E3 !important;
  color: rgba(207, 216, 227, var(--text-opacity)) !important;
}
.text-cool-gray-400 {
  --text-opacity: 1 !important;
  color: #97A6BA !important;
  color: rgba(151, 166, 186, var(--text-opacity)) !important;
}
.text-cool-gray-500 {
  --text-opacity: 1 !important;
  color: #64748B !important;
  color: rgba(100, 116, 139, var(--text-opacity)) !important;
}
.text-cool-gray-600 {
  --text-opacity: 1 !important;
  color: #475569 !important;
  color: rgba(71, 85, 105, var(--text-opacity)) !important;
}
.text-cool-gray-700 {
  --text-opacity: 1 !important;
  color: #364152 !important;
  color: rgba(54, 65, 82, var(--text-opacity)) !important;
}
.text-cool-gray-800 {
  --text-opacity: 1 !important;
  color: #27303F !important;
  color: rgba(39, 48, 63, var(--text-opacity)) !important;
}
.text-cool-gray-900 {
  --text-opacity: 1 !important;
  color: #1A202E !important;
  color: rgba(26, 32, 46, var(--text-opacity)) !important;
}
.text-cool-gray {
  --text-opacity: 1 !important;
  color: #64748B !important;
  color: rgba(100, 116, 139, var(--text-opacity)) !important;
}
.text-red-50 {
  --text-opacity: 1 !important;
  color: #FDF2F2 !important;
  color: rgba(253, 242, 242, var(--text-opacity)) !important;
}
.text-red-100 {
  --text-opacity: 1 !important;
  color: #FDE8E8 !important;
  color: rgba(253, 232, 232, var(--text-opacity)) !important;
}
.text-red-200 {
  --text-opacity: 1 !important;
  color: #FBD5D5 !important;
  color: rgba(251, 213, 213, var(--text-opacity)) !important;
}
.text-red-300 {
  --text-opacity: 1 !important;
  color: #F8B4B4 !important;
  color: rgba(248, 180, 180, var(--text-opacity)) !important;
}
.text-red-400 {
  --text-opacity: 1 !important;
  color: #F98080 !important;
  color: rgba(249, 128, 128, var(--text-opacity)) !important;
}
.text-red-500 {
  --text-opacity: 1 !important;
  color: #F05252 !important;
  color: rgba(240, 82, 82, var(--text-opacity)) !important;
}
.text-red-600 {
  --text-opacity: 1 !important;
  color: #E02424 !important;
  color: rgba(224, 36, 36, var(--text-opacity)) !important;
}
.text-red-700 {
  --text-opacity: 1 !important;
  color: #C81E1E !important;
  color: rgba(200, 30, 30, var(--text-opacity)) !important;
}
.text-red-800 {
  --text-opacity: 1 !important;
  color: #9B1C1C !important;
  color: rgba(155, 28, 28, var(--text-opacity)) !important;
}
.text-red-900 {
  --text-opacity: 1 !important;
  color: #771D1D !important;
  color: rgba(119, 29, 29, var(--text-opacity)) !important;
}
.text-red {
  --text-opacity: 1 !important;
  color: #F05252 !important;
  color: rgba(240, 82, 82, var(--text-opacity)) !important;
}
.text-orange-50 {
  --text-opacity: 1 !important;
  color: #FFF8F1 !important;
  color: rgba(255, 248, 241, var(--text-opacity)) !important;
}
.text-orange-100 {
  --text-opacity: 1 !important;
  color: #FEECDC !important;
  color: rgba(254, 236, 220, var(--text-opacity)) !important;
}
.text-orange-200 {
  --text-opacity: 1 !important;
  color: #FCD9BD !important;
  color: rgba(252, 217, 189, var(--text-opacity)) !important;
}
.text-orange-300 {
  --text-opacity: 1 !important;
  color: #FDBA8C !important;
  color: rgba(253, 186, 140, var(--text-opacity)) !important;
}
.text-orange-400 {
  --text-opacity: 1 !important;
  color: #FF8A4C !important;
  color: rgba(255, 138, 76, var(--text-opacity)) !important;
}
.text-orange-500 {
  --text-opacity: 1 !important;
  color: #FF5A1F !important;
  color: rgba(255, 90, 31, var(--text-opacity)) !important;
}
.text-orange-600 {
  --text-opacity: 1 !important;
  color: #D03801 !important;
  color: rgba(208, 56, 1, var(--text-opacity)) !important;
}
.text-orange-700 {
  --text-opacity: 1 !important;
  color: #B43403 !important;
  color: rgba(180, 52, 3, var(--text-opacity)) !important;
}
.text-orange-800 {
  --text-opacity: 1 !important;
  color: #8A2C0D !important;
  color: rgba(138, 44, 13, var(--text-opacity)) !important;
}
.text-orange-900 {
  --text-opacity: 1 !important;
  color: #771D1D !important;
  color: rgba(119, 29, 29, var(--text-opacity)) !important;
}
.text-orange {
  --text-opacity: 1 !important;
  color: #FF5A1F !important;
  color: rgba(255, 90, 31, var(--text-opacity)) !important;
}
.text-yellow-50 {
  --text-opacity: 1 !important;
  color: #FDFDEA !important;
  color: rgba(253, 253, 234, var(--text-opacity)) !important;
}
.text-yellow-100 {
  --text-opacity: 1 !important;
  color: #FDF6B2 !important;
  color: rgba(253, 246, 178, var(--text-opacity)) !important;
}
.text-yellow-200 {
  --text-opacity: 1 !important;
  color: #FCE96A !important;
  color: rgba(252, 233, 106, var(--text-opacity)) !important;
}
.text-yellow-300 {
  --text-opacity: 1 !important;
  color: #FACA15 !important;
  color: rgba(250, 202, 21, var(--text-opacity)) !important;
}
.text-yellow-400 {
  --text-opacity: 1 !important;
  color: #E3A008 !important;
  color: rgba(227, 160, 8, var(--text-opacity)) !important;
}
.text-yellow-500 {
  --text-opacity: 1 !important;
  color: #C27803 !important;
  color: rgba(194, 120, 3, var(--text-opacity)) !important;
}
.text-yellow-600 {
  --text-opacity: 1 !important;
  color: #9F580A !important;
  color: rgba(159, 88, 10, var(--text-opacity)) !important;
}
.text-yellow-700 {
  --text-opacity: 1 !important;
  color: #8E4B10 !important;
  color: rgba(142, 75, 16, var(--text-opacity)) !important;
}
.text-yellow-800 {
  --text-opacity: 1 !important;
  color: #723B13 !important;
  color: rgba(114, 59, 19, var(--text-opacity)) !important;
}
.text-yellow-900 {
  --text-opacity: 1 !important;
  color: #633112 !important;
  color: rgba(99, 49, 18, var(--text-opacity)) !important;
}
.text-yellow {
  --text-opacity: 1 !important;
  color: #C27803 !important;
  color: rgba(194, 120, 3, var(--text-opacity)) !important;
}
.text-green-50 {
  --text-opacity: 1 !important;
  color: #F3FAF7 !important;
  color: rgba(243, 250, 247, var(--text-opacity)) !important;
}
.text-green-100 {
  --text-opacity: 1 !important;
  color: #DEF7EC !important;
  color: rgba(222, 247, 236, var(--text-opacity)) !important;
}
.text-green-200 {
  --text-opacity: 1 !important;
  color: #BCF0DA !important;
  color: rgba(188, 240, 218, var(--text-opacity)) !important;
}
.text-green-300 {
  --text-opacity: 1 !important;
  color: #84E1BC !important;
  color: rgba(132, 225, 188, var(--text-opacity)) !important;
}
.text-green-400 {
  --text-opacity: 1 !important;
  color: #31C48D !important;
  color: rgba(49, 196, 141, var(--text-opacity)) !important;
}
.text-green-500 {
  --text-opacity: 1 !important;
  color: #0E9F6E !important;
  color: rgba(14, 159, 110, var(--text-opacity)) !important;
}
.text-green-600 {
  --text-opacity: 1 !important;
  color: #057A55 !important;
  color: rgba(5, 122, 85, var(--text-opacity)) !important;
}
.text-green-700 {
  --text-opacity: 1 !important;
  color: #046C4E !important;
  color: rgba(4, 108, 78, var(--text-opacity)) !important;
}
.text-green-800 {
  --text-opacity: 1 !important;
  color: #03543F !important;
  color: rgba(3, 84, 63, var(--text-opacity)) !important;
}
.text-green-900 {
  --text-opacity: 1 !important;
  color: #014737 !important;
  color: rgba(1, 71, 55, var(--text-opacity)) !important;
}
.text-green {
  --text-opacity: 1 !important;
  color: #0E9F6E !important;
  color: rgba(14, 159, 110, var(--text-opacity)) !important;
}
.text-teal-50 {
  --text-opacity: 1 !important;
  color: #EDFAFA !important;
  color: rgba(237, 250, 250, var(--text-opacity)) !important;
}
.text-teal-100 {
  --text-opacity: 1 !important;
  color: #D5F5F6 !important;
  color: rgba(213, 245, 246, var(--text-opacity)) !important;
}
.text-teal-200 {
  --text-opacity: 1 !important;
  color: #AFECEF !important;
  color: rgba(175, 236, 239, var(--text-opacity)) !important;
}
.text-teal-300 {
  --text-opacity: 1 !important;
  color: #7EDCE2 !important;
  color: rgba(126, 220, 226, var(--text-opacity)) !important;
}
.text-teal-400 {
  --text-opacity: 1 !important;
  color: #16BDCA !important;
  color: rgba(22, 189, 202, var(--text-opacity)) !important;
}
.text-teal-500 {
  --text-opacity: 1 !important;
  color: #0694A2 !important;
  color: rgba(6, 148, 162, var(--text-opacity)) !important;
}
.text-teal-600 {
  --text-opacity: 1 !important;
  color: #047481 !important;
  color: rgba(4, 116, 129, var(--text-opacity)) !important;
}
.text-teal-700 {
  --text-opacity: 1 !important;
  color: #036672 !important;
  color: rgba(3, 102, 114, var(--text-opacity)) !important;
}
.text-teal-800 {
  --text-opacity: 1 !important;
  color: #05505C !important;
  color: rgba(5, 80, 92, var(--text-opacity)) !important;
}
.text-teal-900 {
  --text-opacity: 1 !important;
  color: #014451 !important;
  color: rgba(1, 68, 81, var(--text-opacity)) !important;
}
.text-teal {
  --text-opacity: 1 !important;
  color: #0694A2 !important;
  color: rgba(6, 148, 162, var(--text-opacity)) !important;
}
.text-blue-50 {
  --text-opacity: 1 !important;
  color: #EBF5FF !important;
  color: rgba(235, 245, 255, var(--text-opacity)) !important;
}
.text-blue-100 {
  --text-opacity: 1 !important;
  color: #E1EFFE !important;
  color: rgba(225, 239, 254, var(--text-opacity)) !important;
}
.text-blue-200 {
  --text-opacity: 1 !important;
  color: #C3DDFD !important;
  color: rgba(195, 221, 253, var(--text-opacity)) !important;
}
.text-blue-300 {
  --text-opacity: 1 !important;
  color: #A4CAFE !important;
  color: rgba(164, 202, 254, var(--text-opacity)) !important;
}
.text-blue-400 {
  --text-opacity: 1 !important;
  color: #76A9FA !important;
  color: rgba(118, 169, 250, var(--text-opacity)) !important;
}
.text-blue-500 {
  --text-opacity: 1 !important;
  color: #3F83F8 !important;
  color: rgba(63, 131, 248, var(--text-opacity)) !important;
}
.text-blue-600 {
  --text-opacity: 1 !important;
  color: #1C64F2 !important;
  color: rgba(28, 100, 242, var(--text-opacity)) !important;
}
.text-blue-700 {
  --text-opacity: 1 !important;
  color: #1A56DB !important;
  color: rgba(26, 86, 219, var(--text-opacity)) !important;
}
.text-blue-800 {
  --text-opacity: 1 !important;
  color: #1E429F !important;
  color: rgba(30, 66, 159, var(--text-opacity)) !important;
}
.text-blue-900 {
  --text-opacity: 1 !important;
  color: #233876 !important;
  color: rgba(35, 56, 118, var(--text-opacity)) !important;
}
.text-blue {
  --text-opacity: 1 !important;
  color: #3F83F8 !important;
  color: rgba(63, 131, 248, var(--text-opacity)) !important;
}
.text-indigo-50 {
  --text-opacity: 1 !important;
  color: #F0F5FF !important;
  color: rgba(240, 245, 255, var(--text-opacity)) !important;
}
.text-indigo-100 {
  --text-opacity: 1 !important;
  color: #E5EDFF !important;
  color: rgba(229, 237, 255, var(--text-opacity)) !important;
}
.text-indigo-200 {
  --text-opacity: 1 !important;
  color: #CDDBFE !important;
  color: rgba(205, 219, 254, var(--text-opacity)) !important;
}
.text-indigo-300 {
  --text-opacity: 1 !important;
  color: #B4C6FC !important;
  color: rgba(180, 198, 252, var(--text-opacity)) !important;
}
.text-indigo-400 {
  --text-opacity: 1 !important;
  color: #8DA2FB !important;
  color: rgba(141, 162, 251, var(--text-opacity)) !important;
}
.text-indigo-500 {
  --text-opacity: 1 !important;
  color: #6875F5 !important;
  color: rgba(104, 117, 245, var(--text-opacity)) !important;
}
.text-indigo-600 {
  --text-opacity: 1 !important;
  color: #5850EC !important;
  color: rgba(88, 80, 236, var(--text-opacity)) !important;
}
.text-indigo-700 {
  --text-opacity: 1 !important;
  color: #5145CD !important;
  color: rgba(81, 69, 205, var(--text-opacity)) !important;
}
.text-indigo-800 {
  --text-opacity: 1 !important;
  color: #42389D !important;
  color: rgba(66, 56, 157, var(--text-opacity)) !important;
}
.text-indigo-900 {
  --text-opacity: 1 !important;
  color: #362F78 !important;
  color: rgba(54, 47, 120, var(--text-opacity)) !important;
}
.text-indigo {
  --text-opacity: 1 !important;
  color: #6875F5 !important;
  color: rgba(104, 117, 245, var(--text-opacity)) !important;
}
.text-purple-50 {
  --text-opacity: 1 !important;
  color: #F6F5FF !important;
  color: rgba(246, 245, 255, var(--text-opacity)) !important;
}
.text-purple-100 {
  --text-opacity: 1 !important;
  color: #EDEBFE !important;
  color: rgba(237, 235, 254, var(--text-opacity)) !important;
}
.text-purple-200 {
  --text-opacity: 1 !important;
  color: #DCD7FE !important;
  color: rgba(220, 215, 254, var(--text-opacity)) !important;
}
.text-purple-300 {
  --text-opacity: 1 !important;
  color: #CABFFD !important;
  color: rgba(202, 191, 253, var(--text-opacity)) !important;
}
.text-purple-400 {
  --text-opacity: 1 !important;
  color: #AC94FA !important;
  color: rgba(172, 148, 250, var(--text-opacity)) !important;
}
.text-purple-500 {
  --text-opacity: 1 !important;
  color: #9061F9 !important;
  color: rgba(144, 97, 249, var(--text-opacity)) !important;
}
.text-purple-600 {
  --text-opacity: 1 !important;
  color: #7E3AF2 !important;
  color: rgba(126, 58, 242, var(--text-opacity)) !important;
}
.text-purple-700 {
  --text-opacity: 1 !important;
  color: #6C2BD9 !important;
  color: rgba(108, 43, 217, var(--text-opacity)) !important;
}
.text-purple-800 {
  --text-opacity: 1 !important;
  color: #5521B5 !important;
  color: rgba(85, 33, 181, var(--text-opacity)) !important;
}
.text-purple-900 {
  --text-opacity: 1 !important;
  color: #4A1D96 !important;
  color: rgba(74, 29, 150, var(--text-opacity)) !important;
}
.text-purple {
  --text-opacity: 1 !important;
  color: #9061F9 !important;
  color: rgba(144, 97, 249, var(--text-opacity)) !important;
}
.text-pink-50 {
  --text-opacity: 1 !important;
  color: #FDF2F8 !important;
  color: rgba(253, 242, 248, var(--text-opacity)) !important;
}
.text-pink-100 {
  --text-opacity: 1 !important;
  color: #FCE8F3 !important;
  color: rgba(252, 232, 243, var(--text-opacity)) !important;
}
.text-pink-200 {
  --text-opacity: 1 !important;
  color: #FAD1E8 !important;
  color: rgba(250, 209, 232, var(--text-opacity)) !important;
}
.text-pink-300 {
  --text-opacity: 1 !important;
  color: #F8B4D9 !important;
  color: rgba(248, 180, 217, var(--text-opacity)) !important;
}
.text-pink-400 {
  --text-opacity: 1 !important;
  color: #F17EB8 !important;
  color: rgba(241, 126, 184, var(--text-opacity)) !important;
}
.text-pink-500 {
  --text-opacity: 1 !important;
  color: #E74694 !important;
  color: rgba(231, 70, 148, var(--text-opacity)) !important;
}
.text-pink-600 {
  --text-opacity: 1 !important;
  color: #D61F69 !important;
  color: rgba(214, 31, 105, var(--text-opacity)) !important;
}
.text-pink-700 {
  --text-opacity: 1 !important;
  color: #BF125D !important;
  color: rgba(191, 18, 93, var(--text-opacity)) !important;
}
.text-pink-800 {
  --text-opacity: 1 !important;
  color: #99154B !important;
  color: rgba(153, 21, 75, var(--text-opacity)) !important;
}
.text-pink-900 {
  --text-opacity: 1 !important;
  color: #751A3D !important;
  color: rgba(117, 26, 61, var(--text-opacity)) !important;
}
.text-pink {
  --text-opacity: 1 !important;
  color: #E74694 !important;
  color: rgba(231, 70, 148, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-current, [class*=theme-dark] .dark\:text-current, [class*=theme-light].light\:text-current, [class*=theme-light] .light\:text-current {
  color: currentColor !important;
}
[class*=theme-dark].dark\:text-transparent, [class*=theme-dark] .dark\:text-transparent, [class*=theme-light].light\:text-transparent, [class*=theme-light] .light\:text-transparent {
  color: transparent !important;
}
[class*=theme-dark].dark\:text-white, [class*=theme-dark] .dark\:text-white, [class*=theme-light].light\:text-white, [class*=theme-light] .light\:text-white {
  --text-opacity: 1 !important;
  color: #FFFFFF !important;
  color: rgba(255, 255, 255, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-black, [class*=theme-dark] .dark\:text-black, [class*=theme-light].light\:text-black, [class*=theme-light] .light\:text-black {
  --text-opacity: 1 !important;
  color: #000000 !important;
  color: rgba(0, 0, 0, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-50, [class*=theme-dark] .dark\:text-gray-50, [class*=theme-light].light\:text-gray-50, [class*=theme-light] .light\:text-gray-50 {
  --text-opacity: 1 !important;
  color: #F9FAFB !important;
  color: rgba(249, 250, 251, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-100, [class*=theme-dark] .dark\:text-gray-100, [class*=theme-light].light\:text-gray-100, [class*=theme-light] .light\:text-gray-100 {
  --text-opacity: 1 !important;
  color: #F4F5F7 !important;
  color: rgba(244, 245, 247, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-200, [class*=theme-dark] .dark\:text-gray-200, [class*=theme-light].light\:text-gray-200, [class*=theme-light] .light\:text-gray-200 {
  --text-opacity: 1 !important;
  color: #E5E7EB !important;
  color: rgba(229, 231, 235, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-300, [class*=theme-dark] .dark\:text-gray-300, [class*=theme-light].light\:text-gray-300, [class*=theme-light] .light\:text-gray-300 {
  --text-opacity: 1 !important;
  color: #D2D6DC !important;
  color: rgba(210, 214, 220, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-400, [class*=theme-dark] .dark\:text-gray-400, [class*=theme-light].light\:text-gray-400, [class*=theme-light] .light\:text-gray-400 {
  --text-opacity: 1 !important;
  color: #9FA6B2 !important;
  color: rgba(159, 166, 178, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-500, [class*=theme-dark] .dark\:text-gray-500, [class*=theme-light].light\:text-gray-500, [class*=theme-light] .light\:text-gray-500 {
  --text-opacity: 1 !important;
  color: #6B7280 !important;
  color: rgba(107, 114, 128, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-600, [class*=theme-dark] .dark\:text-gray-600, [class*=theme-light].light\:text-gray-600, [class*=theme-light] .light\:text-gray-600 {
  --text-opacity: 1 !important;
  color: #4B5563 !important;
  color: rgba(75, 85, 99, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-700, [class*=theme-dark] .dark\:text-gray-700, [class*=theme-light].light\:text-gray-700, [class*=theme-light] .light\:text-gray-700 {
  --text-opacity: 1 !important;
  color: #374151 !important;
  color: rgba(55, 65, 81, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-800, [class*=theme-dark] .dark\:text-gray-800, [class*=theme-light].light\:text-gray-800, [class*=theme-light] .light\:text-gray-800 {
  --text-opacity: 1 !important;
  color: #252F3F !important;
  color: rgba(37, 47, 63, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray-900, [class*=theme-dark] .dark\:text-gray-900, [class*=theme-light].light\:text-gray-900, [class*=theme-light] .light\:text-gray-900 {
  --text-opacity: 1 !important;
  color: #161E2E !important;
  color: rgba(22, 30, 46, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-gray, [class*=theme-dark] .dark\:text-gray, [class*=theme-light].light\:text-gray, [class*=theme-light] .light\:text-gray {
  --text-opacity: 1 !important;
  color: #6B7280 !important;
  color: rgba(107, 114, 128, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-50, [class*=theme-dark] .dark\:text-cool-gray-50, [class*=theme-light].light\:text-cool-gray-50, [class*=theme-light] .light\:text-cool-gray-50 {
  --text-opacity: 1 !important;
  color: #FBFDFE !important;
  color: rgba(251, 253, 254, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-100, [class*=theme-dark] .dark\:text-cool-gray-100, [class*=theme-light].light\:text-cool-gray-100, [class*=theme-light] .light\:text-cool-gray-100 {
  --text-opacity: 1 !important;
  color: #F1F5F9 !important;
  color: rgba(241, 245, 249, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-200, [class*=theme-dark] .dark\:text-cool-gray-200, [class*=theme-light].light\:text-cool-gray-200, [class*=theme-light] .light\:text-cool-gray-200 {
  --text-opacity: 1 !important;
  color: #E2E8F0 !important;
  color: rgba(226, 232, 240, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-300, [class*=theme-dark] .dark\:text-cool-gray-300, [class*=theme-light].light\:text-cool-gray-300, [class*=theme-light] .light\:text-cool-gray-300 {
  --text-opacity: 1 !important;
  color: #CFD8E3 !important;
  color: rgba(207, 216, 227, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-400, [class*=theme-dark] .dark\:text-cool-gray-400, [class*=theme-light].light\:text-cool-gray-400, [class*=theme-light] .light\:text-cool-gray-400 {
  --text-opacity: 1 !important;
  color: #97A6BA !important;
  color: rgba(151, 166, 186, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-500, [class*=theme-dark] .dark\:text-cool-gray-500, [class*=theme-light].light\:text-cool-gray-500, [class*=theme-light] .light\:text-cool-gray-500 {
  --text-opacity: 1 !important;
  color: #64748B !important;
  color: rgba(100, 116, 139, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-600, [class*=theme-dark] .dark\:text-cool-gray-600, [class*=theme-light].light\:text-cool-gray-600, [class*=theme-light] .light\:text-cool-gray-600 {
  --text-opacity: 1 !important;
  color: #475569 !important;
  color: rgba(71, 85, 105, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-700, [class*=theme-dark] .dark\:text-cool-gray-700, [class*=theme-light].light\:text-cool-gray-700, [class*=theme-light] .light\:text-cool-gray-700 {
  --text-opacity: 1 !important;
  color: #364152 !important;
  color: rgba(54, 65, 82, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-800, [class*=theme-dark] .dark\:text-cool-gray-800, [class*=theme-light].light\:text-cool-gray-800, [class*=theme-light] .light\:text-cool-gray-800 {
  --text-opacity: 1 !important;
  color: #27303F !important;
  color: rgba(39, 48, 63, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray-900, [class*=theme-dark] .dark\:text-cool-gray-900, [class*=theme-light].light\:text-cool-gray-900, [class*=theme-light] .light\:text-cool-gray-900 {
  --text-opacity: 1 !important;
  color: #1A202E !important;
  color: rgba(26, 32, 46, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-cool-gray, [class*=theme-dark] .dark\:text-cool-gray, [class*=theme-light].light\:text-cool-gray, [class*=theme-light] .light\:text-cool-gray {
  --text-opacity: 1 !important;
  color: #64748B !important;
  color: rgba(100, 116, 139, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-50, [class*=theme-dark] .dark\:text-red-50, [class*=theme-light].light\:text-red-50, [class*=theme-light] .light\:text-red-50 {
  --text-opacity: 1 !important;
  color: #FDF2F2 !important;
  color: rgba(253, 242, 242, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-100, [class*=theme-dark] .dark\:text-red-100, [class*=theme-light].light\:text-red-100, [class*=theme-light] .light\:text-red-100 {
  --text-opacity: 1 !important;
  color: #FDE8E8 !important;
  color: rgba(253, 232, 232, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-200, [class*=theme-dark] .dark\:text-red-200, [class*=theme-light].light\:text-red-200, [class*=theme-light] .light\:text-red-200 {
  --text-opacity: 1 !important;
  color: #FBD5D5 !important;
  color: rgba(251, 213, 213, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-300, [class*=theme-dark] .dark\:text-red-300, [class*=theme-light].light\:text-red-300, [class*=theme-light] .light\:text-red-300 {
  --text-opacity: 1 !important;
  color: #F8B4B4 !important;
  color: rgba(248, 180, 180, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-400, [class*=theme-dark] .dark\:text-red-400, [class*=theme-light].light\:text-red-400, [class*=theme-light] .light\:text-red-400 {
  --text-opacity: 1 !important;
  color: #F98080 !important;
  color: rgba(249, 128, 128, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-500, [class*=theme-dark] .dark\:text-red-500, [class*=theme-light].light\:text-red-500, [class*=theme-light] .light\:text-red-500 {
  --text-opacity: 1 !important;
  color: #F05252 !important;
  color: rgba(240, 82, 82, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-600, [class*=theme-dark] .dark\:text-red-600, [class*=theme-light].light\:text-red-600, [class*=theme-light] .light\:text-red-600 {
  --text-opacity: 1 !important;
  color: #E02424 !important;
  color: rgba(224, 36, 36, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-700, [class*=theme-dark] .dark\:text-red-700, [class*=theme-light].light\:text-red-700, [class*=theme-light] .light\:text-red-700 {
  --text-opacity: 1 !important;
  color: #C81E1E !important;
  color: rgba(200, 30, 30, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-800, [class*=theme-dark] .dark\:text-red-800, [class*=theme-light].light\:text-red-800, [class*=theme-light] .light\:text-red-800 {
  --text-opacity: 1 !important;
  color: #9B1C1C !important;
  color: rgba(155, 28, 28, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red-900, [class*=theme-dark] .dark\:text-red-900, [class*=theme-light].light\:text-red-900, [class*=theme-light] .light\:text-red-900 {
  --text-opacity: 1 !important;
  color: #771D1D !important;
  color: rgba(119, 29, 29, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-red, [class*=theme-dark] .dark\:text-red, [class*=theme-light].light\:text-red, [class*=theme-light] .light\:text-red {
  --text-opacity: 1 !important;
  color: #F05252 !important;
  color: rgba(240, 82, 82, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-50, [class*=theme-dark] .dark\:text-orange-50, [class*=theme-light].light\:text-orange-50, [class*=theme-light] .light\:text-orange-50 {
  --text-opacity: 1 !important;
  color: #FFF8F1 !important;
  color: rgba(255, 248, 241, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-100, [class*=theme-dark] .dark\:text-orange-100, [class*=theme-light].light\:text-orange-100, [class*=theme-light] .light\:text-orange-100 {
  --text-opacity: 1 !important;
  color: #FEECDC !important;
  color: rgba(254, 236, 220, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-200, [class*=theme-dark] .dark\:text-orange-200, [class*=theme-light].light\:text-orange-200, [class*=theme-light] .light\:text-orange-200 {
  --text-opacity: 1 !important;
  color: #FCD9BD !important;
  color: rgba(252, 217, 189, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-300, [class*=theme-dark] .dark\:text-orange-300, [class*=theme-light].light\:text-orange-300, [class*=theme-light] .light\:text-orange-300 {
  --text-opacity: 1 !important;
  color: #FDBA8C !important;
  color: rgba(253, 186, 140, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-400, [class*=theme-dark] .dark\:text-orange-400, [class*=theme-light].light\:text-orange-400, [class*=theme-light] .light\:text-orange-400 {
  --text-opacity: 1 !important;
  color: #FF8A4C !important;
  color: rgba(255, 138, 76, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-500, [class*=theme-dark] .dark\:text-orange-500, [class*=theme-light].light\:text-orange-500, [class*=theme-light] .light\:text-orange-500 {
  --text-opacity: 1 !important;
  color: #FF5A1F !important;
  color: rgba(255, 90, 31, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-600, [class*=theme-dark] .dark\:text-orange-600, [class*=theme-light].light\:text-orange-600, [class*=theme-light] .light\:text-orange-600 {
  --text-opacity: 1 !important;
  color: #D03801 !important;
  color: rgba(208, 56, 1, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-700, [class*=theme-dark] .dark\:text-orange-700, [class*=theme-light].light\:text-orange-700, [class*=theme-light] .light\:text-orange-700 {
  --text-opacity: 1 !important;
  color: #B43403 !important;
  color: rgba(180, 52, 3, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-800, [class*=theme-dark] .dark\:text-orange-800, [class*=theme-light].light\:text-orange-800, [class*=theme-light] .light\:text-orange-800 {
  --text-opacity: 1 !important;
  color: #8A2C0D !important;
  color: rgba(138, 44, 13, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange-900, [class*=theme-dark] .dark\:text-orange-900, [class*=theme-light].light\:text-orange-900, [class*=theme-light] .light\:text-orange-900 {
  --text-opacity: 1 !important;
  color: #771D1D !important;
  color: rgba(119, 29, 29, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-orange, [class*=theme-dark] .dark\:text-orange, [class*=theme-light].light\:text-orange, [class*=theme-light] .light\:text-orange {
  --text-opacity: 1 !important;
  color: #FF5A1F !important;
  color: rgba(255, 90, 31, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-50, [class*=theme-dark] .dark\:text-yellow-50, [class*=theme-light].light\:text-yellow-50, [class*=theme-light] .light\:text-yellow-50 {
  --text-opacity: 1 !important;
  color: #FDFDEA !important;
  color: rgba(253, 253, 234, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-100, [class*=theme-dark] .dark\:text-yellow-100, [class*=theme-light].light\:text-yellow-100, [class*=theme-light] .light\:text-yellow-100 {
  --text-opacity: 1 !important;
  color: #FDF6B2 !important;
  color: rgba(253, 246, 178, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-200, [class*=theme-dark] .dark\:text-yellow-200, [class*=theme-light].light\:text-yellow-200, [class*=theme-light] .light\:text-yellow-200 {
  --text-opacity: 1 !important;
  color: #FCE96A !important;
  color: rgba(252, 233, 106, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-300, [class*=theme-dark] .dark\:text-yellow-300, [class*=theme-light].light\:text-yellow-300, [class*=theme-light] .light\:text-yellow-300 {
  --text-opacity: 1 !important;
  color: #FACA15 !important;
  color: rgba(250, 202, 21, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-400, [class*=theme-dark] .dark\:text-yellow-400, [class*=theme-light].light\:text-yellow-400, [class*=theme-light] .light\:text-yellow-400 {
  --text-opacity: 1 !important;
  color: #E3A008 !important;
  color: rgba(227, 160, 8, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-500, [class*=theme-dark] .dark\:text-yellow-500, [class*=theme-light].light\:text-yellow-500, [class*=theme-light] .light\:text-yellow-500 {
  --text-opacity: 1 !important;
  color: #C27803 !important;
  color: rgba(194, 120, 3, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-600, [class*=theme-dark] .dark\:text-yellow-600, [class*=theme-light].light\:text-yellow-600, [class*=theme-light] .light\:text-yellow-600 {
  --text-opacity: 1 !important;
  color: #9F580A !important;
  color: rgba(159, 88, 10, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-700, [class*=theme-dark] .dark\:text-yellow-700, [class*=theme-light].light\:text-yellow-700, [class*=theme-light] .light\:text-yellow-700 {
  --text-opacity: 1 !important;
  color: #8E4B10 !important;
  color: rgba(142, 75, 16, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-800, [class*=theme-dark] .dark\:text-yellow-800, [class*=theme-light].light\:text-yellow-800, [class*=theme-light] .light\:text-yellow-800 {
  --text-opacity: 1 !important;
  color: #723B13 !important;
  color: rgba(114, 59, 19, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow-900, [class*=theme-dark] .dark\:text-yellow-900, [class*=theme-light].light\:text-yellow-900, [class*=theme-light] .light\:text-yellow-900 {
  --text-opacity: 1 !important;
  color: #633112 !important;
  color: rgba(99, 49, 18, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-yellow, [class*=theme-dark] .dark\:text-yellow, [class*=theme-light].light\:text-yellow, [class*=theme-light] .light\:text-yellow {
  --text-opacity: 1 !important;
  color: #C27803 !important;
  color: rgba(194, 120, 3, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-50, [class*=theme-dark] .dark\:text-green-50, [class*=theme-light].light\:text-green-50, [class*=theme-light] .light\:text-green-50 {
  --text-opacity: 1 !important;
  color: #F3FAF7 !important;
  color: rgba(243, 250, 247, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-100, [class*=theme-dark] .dark\:text-green-100, [class*=theme-light].light\:text-green-100, [class*=theme-light] .light\:text-green-100 {
  --text-opacity: 1 !important;
  color: #DEF7EC !important;
  color: rgba(222, 247, 236, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-200, [class*=theme-dark] .dark\:text-green-200, [class*=theme-light].light\:text-green-200, [class*=theme-light] .light\:text-green-200 {
  --text-opacity: 1 !important;
  color: #BCF0DA !important;
  color: rgba(188, 240, 218, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-300, [class*=theme-dark] .dark\:text-green-300, [class*=theme-light].light\:text-green-300, [class*=theme-light] .light\:text-green-300 {
  --text-opacity: 1 !important;
  color: #84E1BC !important;
  color: rgba(132, 225, 188, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-400, [class*=theme-dark] .dark\:text-green-400, [class*=theme-light].light\:text-green-400, [class*=theme-light] .light\:text-green-400 {
  --text-opacity: 1 !important;
  color: #31C48D !important;
  color: rgba(49, 196, 141, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-500, [class*=theme-dark] .dark\:text-green-500, [class*=theme-light].light\:text-green-500, [class*=theme-light] .light\:text-green-500 {
  --text-opacity: 1 !important;
  color: #0E9F6E !important;
  color: rgba(14, 159, 110, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-600, [class*=theme-dark] .dark\:text-green-600, [class*=theme-light].light\:text-green-600, [class*=theme-light] .light\:text-green-600 {
  --text-opacity: 1 !important;
  color: #057A55 !important;
  color: rgba(5, 122, 85, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-700, [class*=theme-dark] .dark\:text-green-700, [class*=theme-light].light\:text-green-700, [class*=theme-light] .light\:text-green-700 {
  --text-opacity: 1 !important;
  color: #046C4E !important;
  color: rgba(4, 108, 78, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-800, [class*=theme-dark] .dark\:text-green-800, [class*=theme-light].light\:text-green-800, [class*=theme-light] .light\:text-green-800 {
  --text-opacity: 1 !important;
  color: #03543F !important;
  color: rgba(3, 84, 63, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green-900, [class*=theme-dark] .dark\:text-green-900, [class*=theme-light].light\:text-green-900, [class*=theme-light] .light\:text-green-900 {
  --text-opacity: 1 !important;
  color: #014737 !important;
  color: rgba(1, 71, 55, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-green, [class*=theme-dark] .dark\:text-green, [class*=theme-light].light\:text-green, [class*=theme-light] .light\:text-green {
  --text-opacity: 1 !important;
  color: #0E9F6E !important;
  color: rgba(14, 159, 110, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-50, [class*=theme-dark] .dark\:text-teal-50, [class*=theme-light].light\:text-teal-50, [class*=theme-light] .light\:text-teal-50 {
  --text-opacity: 1 !important;
  color: #EDFAFA !important;
  color: rgba(237, 250, 250, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-100, [class*=theme-dark] .dark\:text-teal-100, [class*=theme-light].light\:text-teal-100, [class*=theme-light] .light\:text-teal-100 {
  --text-opacity: 1 !important;
  color: #D5F5F6 !important;
  color: rgba(213, 245, 246, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-200, [class*=theme-dark] .dark\:text-teal-200, [class*=theme-light].light\:text-teal-200, [class*=theme-light] .light\:text-teal-200 {
  --text-opacity: 1 !important;
  color: #AFECEF !important;
  color: rgba(175, 236, 239, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-300, [class*=theme-dark] .dark\:text-teal-300, [class*=theme-light].light\:text-teal-300, [class*=theme-light] .light\:text-teal-300 {
  --text-opacity: 1 !important;
  color: #7EDCE2 !important;
  color: rgba(126, 220, 226, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-400, [class*=theme-dark] .dark\:text-teal-400, [class*=theme-light].light\:text-teal-400, [class*=theme-light] .light\:text-teal-400 {
  --text-opacity: 1 !important;
  color: #16BDCA !important;
  color: rgba(22, 189, 202, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-500, [class*=theme-dark] .dark\:text-teal-500, [class*=theme-light].light\:text-teal-500, [class*=theme-light] .light\:text-teal-500 {
  --text-opacity: 1 !important;
  color: #0694A2 !important;
  color: rgba(6, 148, 162, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-600, [class*=theme-dark] .dark\:text-teal-600, [class*=theme-light].light\:text-teal-600, [class*=theme-light] .light\:text-teal-600 {
  --text-opacity: 1 !important;
  color: #047481 !important;
  color: rgba(4, 116, 129, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-700, [class*=theme-dark] .dark\:text-teal-700, [class*=theme-light].light\:text-teal-700, [class*=theme-light] .light\:text-teal-700 {
  --text-opacity: 1 !important;
  color: #036672 !important;
  color: rgba(3, 102, 114, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-800, [class*=theme-dark] .dark\:text-teal-800, [class*=theme-light].light\:text-teal-800, [class*=theme-light] .light\:text-teal-800 {
  --text-opacity: 1 !important;
  color: #05505C !important;
  color: rgba(5, 80, 92, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal-900, [class*=theme-dark] .dark\:text-teal-900, [class*=theme-light].light\:text-teal-900, [class*=theme-light] .light\:text-teal-900 {
  --text-opacity: 1 !important;
  color: #014451 !important;
  color: rgba(1, 68, 81, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-teal, [class*=theme-dark] .dark\:text-teal, [class*=theme-light].light\:text-teal, [class*=theme-light] .light\:text-teal {
  --text-opacity: 1 !important;
  color: #0694A2 !important;
  color: rgba(6, 148, 162, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-50, [class*=theme-dark] .dark\:text-blue-50, [class*=theme-light].light\:text-blue-50, [class*=theme-light] .light\:text-blue-50 {
  --text-opacity: 1 !important;
  color: #EBF5FF !important;
  color: rgba(235, 245, 255, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-100, [class*=theme-dark] .dark\:text-blue-100, [class*=theme-light].light\:text-blue-100, [class*=theme-light] .light\:text-blue-100 {
  --text-opacity: 1 !important;
  color: #E1EFFE !important;
  color: rgba(225, 239, 254, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-200, [class*=theme-dark] .dark\:text-blue-200, [class*=theme-light].light\:text-blue-200, [class*=theme-light] .light\:text-blue-200 {
  --text-opacity: 1 !important;
  color: #C3DDFD !important;
  color: rgba(195, 221, 253, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-300, [class*=theme-dark] .dark\:text-blue-300, [class*=theme-light].light\:text-blue-300, [class*=theme-light] .light\:text-blue-300 {
  --text-opacity: 1 !important;
  color: #A4CAFE !important;
  color: rgba(164, 202, 254, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-400, [class*=theme-dark] .dark\:text-blue-400, [class*=theme-light].light\:text-blue-400, [class*=theme-light] .light\:text-blue-400 {
  --text-opacity: 1 !important;
  color: #76A9FA !important;
  color: rgba(118, 169, 250, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-500, [class*=theme-dark] .dark\:text-blue-500, [class*=theme-light].light\:text-blue-500, [class*=theme-light] .light\:text-blue-500 {
  --text-opacity: 1 !important;
  color: #3F83F8 !important;
  color: rgba(63, 131, 248, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-600, [class*=theme-dark] .dark\:text-blue-600, [class*=theme-light].light\:text-blue-600, [class*=theme-light] .light\:text-blue-600 {
  --text-opacity: 1 !important;
  color: #1C64F2 !important;
  color: rgba(28, 100, 242, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-700, [class*=theme-dark] .dark\:text-blue-700, [class*=theme-light].light\:text-blue-700, [class*=theme-light] .light\:text-blue-700 {
  --text-opacity: 1 !important;
  color: #1A56DB !important;
  color: rgba(26, 86, 219, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-800, [class*=theme-dark] .dark\:text-blue-800, [class*=theme-light].light\:text-blue-800, [class*=theme-light] .light\:text-blue-800 {
  --text-opacity: 1 !important;
  color: #1E429F !important;
  color: rgba(30, 66, 159, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue-900, [class*=theme-dark] .dark\:text-blue-900, [class*=theme-light].light\:text-blue-900, [class*=theme-light] .light\:text-blue-900 {
  --text-opacity: 1 !important;
  color: #233876 !important;
  color: rgba(35, 56, 118, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-blue, [class*=theme-dark] .dark\:text-blue, [class*=theme-light].light\:text-blue, [class*=theme-light] .light\:text-blue {
  --text-opacity: 1 !important;
  color: #3F83F8 !important;
  color: rgba(63, 131, 248, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-50, [class*=theme-dark] .dark\:text-indigo-50, [class*=theme-light].light\:text-indigo-50, [class*=theme-light] .light\:text-indigo-50 {
  --text-opacity: 1 !important;
  color: #F0F5FF !important;
  color: rgba(240, 245, 255, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-100, [class*=theme-dark] .dark\:text-indigo-100, [class*=theme-light].light\:text-indigo-100, [class*=theme-light] .light\:text-indigo-100 {
  --text-opacity: 1 !important;
  color: #E5EDFF !important;
  color: rgba(229, 237, 255, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-200, [class*=theme-dark] .dark\:text-indigo-200, [class*=theme-light].light\:text-indigo-200, [class*=theme-light] .light\:text-indigo-200 {
  --text-opacity: 1 !important;
  color: #CDDBFE !important;
  color: rgba(205, 219, 254, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-300, [class*=theme-dark] .dark\:text-indigo-300, [class*=theme-light].light\:text-indigo-300, [class*=theme-light] .light\:text-indigo-300 {
  --text-opacity: 1 !important;
  color: #B4C6FC !important;
  color: rgba(180, 198, 252, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-400, [class*=theme-dark] .dark\:text-indigo-400, [class*=theme-light].light\:text-indigo-400, [class*=theme-light] .light\:text-indigo-400 {
  --text-opacity: 1 !important;
  color: #8DA2FB !important;
  color: rgba(141, 162, 251, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-500, [class*=theme-dark] .dark\:text-indigo-500, [class*=theme-light].light\:text-indigo-500, [class*=theme-light] .light\:text-indigo-500 {
  --text-opacity: 1 !important;
  color: #6875F5 !important;
  color: rgba(104, 117, 245, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-600, [class*=theme-dark] .dark\:text-indigo-600, [class*=theme-light].light\:text-indigo-600, [class*=theme-light] .light\:text-indigo-600 {
  --text-opacity: 1 !important;
  color: #5850EC !important;
  color: rgba(88, 80, 236, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-700, [class*=theme-dark] .dark\:text-indigo-700, [class*=theme-light].light\:text-indigo-700, [class*=theme-light] .light\:text-indigo-700 {
  --text-opacity: 1 !important;
  color: #5145CD !important;
  color: rgba(81, 69, 205, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-800, [class*=theme-dark] .dark\:text-indigo-800, [class*=theme-light].light\:text-indigo-800, [class*=theme-light] .light\:text-indigo-800 {
  --text-opacity: 1 !important;
  color: #42389D !important;
  color: rgba(66, 56, 157, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo-900, [class*=theme-dark] .dark\:text-indigo-900, [class*=theme-light].light\:text-indigo-900, [class*=theme-light] .light\:text-indigo-900 {
  --text-opacity: 1 !important;
  color: #362F78 !important;
  color: rgba(54, 47, 120, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-indigo, [class*=theme-dark] .dark\:text-indigo, [class*=theme-light].light\:text-indigo, [class*=theme-light] .light\:text-indigo {
  --text-opacity: 1 !important;
  color: #6875F5 !important;
  color: rgba(104, 117, 245, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-50, [class*=theme-dark] .dark\:text-purple-50, [class*=theme-light].light\:text-purple-50, [class*=theme-light] .light\:text-purple-50 {
  --text-opacity: 1 !important;
  color: #F6F5FF !important;
  color: rgba(246, 245, 255, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-100, [class*=theme-dark] .dark\:text-purple-100, [class*=theme-light].light\:text-purple-100, [class*=theme-light] .light\:text-purple-100 {
  --text-opacity: 1 !important;
  color: #EDEBFE !important;
  color: rgba(237, 235, 254, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-200, [class*=theme-dark] .dark\:text-purple-200, [class*=theme-light].light\:text-purple-200, [class*=theme-light] .light\:text-purple-200 {
  --text-opacity: 1 !important;
  color: #DCD7FE !important;
  color: rgba(220, 215, 254, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-300, [class*=theme-dark] .dark\:text-purple-300, [class*=theme-light].light\:text-purple-300, [class*=theme-light] .light\:text-purple-300 {
  --text-opacity: 1 !important;
  color: #CABFFD !important;
  color: rgba(202, 191, 253, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-400, [class*=theme-dark] .dark\:text-purple-400, [class*=theme-light].light\:text-purple-400, [class*=theme-light] .light\:text-purple-400 {
  --text-opacity: 1 !important;
  color: #AC94FA !important;
  color: rgba(172, 148, 250, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-500, [class*=theme-dark] .dark\:text-purple-500, [class*=theme-light].light\:text-purple-500, [class*=theme-light] .light\:text-purple-500 {
  --text-opacity: 1 !important;
  color: #9061F9 !important;
  color: rgba(144, 97, 249, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-600, [class*=theme-dark] .dark\:text-purple-600, [class*=theme-light].light\:text-purple-600, [class*=theme-light] .light\:text-purple-600 {
  --text-opacity: 1 !important;
  color: #7E3AF2 !important;
  color: rgba(126, 58, 242, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-700, [class*=theme-dark] .dark\:text-purple-700, [class*=theme-light].light\:text-purple-700, [class*=theme-light] .light\:text-purple-700 {
  --text-opacity: 1 !important;
  color: #6C2BD9 !important;
  color: rgba(108, 43, 217, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-800, [class*=theme-dark] .dark\:text-purple-800, [class*=theme-light].light\:text-purple-800, [class*=theme-light] .light\:text-purple-800 {
  --text-opacity: 1 !important;
  color: #5521B5 !important;
  color: rgba(85, 33, 181, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple-900, [class*=theme-dark] .dark\:text-purple-900, [class*=theme-light].light\:text-purple-900, [class*=theme-light] .light\:text-purple-900 {
  --text-opacity: 1 !important;
  color: #4A1D96 !important;
  color: rgba(74, 29, 150, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-purple, [class*=theme-dark] .dark\:text-purple, [class*=theme-light].light\:text-purple, [class*=theme-light] .light\:text-purple {
  --text-opacity: 1 !important;
  color: #9061F9 !important;
  color: rgba(144, 97, 249, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-50, [class*=theme-dark] .dark\:text-pink-50, [class*=theme-light].light\:text-pink-50, [class*=theme-light] .light\:text-pink-50 {
  --text-opacity: 1 !important;
  color: #FDF2F8 !important;
  color: rgba(253, 242, 248, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-100, [class*=theme-dark] .dark\:text-pink-100, [class*=theme-light].light\:text-pink-100, [class*=theme-light] .light\:text-pink-100 {
  --text-opacity: 1 !important;
  color: #FCE8F3 !important;
  color: rgba(252, 232, 243, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-200, [class*=theme-dark] .dark\:text-pink-200, [class*=theme-light].light\:text-pink-200, [class*=theme-light] .light\:text-pink-200 {
  --text-opacity: 1 !important;
  color: #FAD1E8 !important;
  color: rgba(250, 209, 232, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-300, [class*=theme-dark] .dark\:text-pink-300, [class*=theme-light].light\:text-pink-300, [class*=theme-light] .light\:text-pink-300 {
  --text-opacity: 1 !important;
  color: #F8B4D9 !important;
  color: rgba(248, 180, 217, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-400, [class*=theme-dark] .dark\:text-pink-400, [class*=theme-light].light\:text-pink-400, [class*=theme-light] .light\:text-pink-400 {
  --text-opacity: 1 !important;
  color: #F17EB8 !important;
  color: rgba(241, 126, 184, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-500, [class*=theme-dark] .dark\:text-pink-500, [class*=theme-light].light\:text-pink-500, [class*=theme-light] .light\:text-pink-500 {
  --text-opacity: 1 !important;
  color: #E74694 !important;
  color: rgba(231, 70, 148, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-600, [class*=theme-dark] .dark\:text-pink-600, [class*=theme-light].light\:text-pink-600, [class*=theme-light] .light\:text-pink-600 {
  --text-opacity: 1 !important;
  color: #D61F69 !important;
  color: rgba(214, 31, 105, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-700, [class*=theme-dark] .dark\:text-pink-700, [class*=theme-light].light\:text-pink-700, [class*=theme-light] .light\:text-pink-700 {
  --text-opacity: 1 !important;
  color: #BF125D !important;
  color: rgba(191, 18, 93, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-800, [class*=theme-dark] .dark\:text-pink-800, [class*=theme-light].light\:text-pink-800, [class*=theme-light] .light\:text-pink-800 {
  --text-opacity: 1 !important;
  color: #99154B !important;
  color: rgba(153, 21, 75, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink-900, [class*=theme-dark] .dark\:text-pink-900, [class*=theme-light].light\:text-pink-900, [class*=theme-light] .light\:text-pink-900 {
  --text-opacity: 1 !important;
  color: #751A3D !important;
  color: rgba(117, 26, 61, var(--text-opacity)) !important;
}
[class*=theme-dark].dark\:text-pink, [class*=theme-dark] .dark\:text-pink, [class*=theme-light].light\:text-pink, [class*=theme-light] .light\:text-pink {
  --text-opacity: 1 !important;
  color: #E74694 !important;
  color: rgba(231, 70, 148, var(--text-opacity)) !important;
}
.text-opacity-0 {
  --text-opacity: 0 !important;
}
.text-opacity-12 {
  --text-opacity: 0.12 !important;
}
.text-opacity-25 {
  --text-opacity: 0.25 !important;
}
.text-opacity-38 {
  --text-opacity: 0.38 !important;
}
.text-opacity-50 {
  --text-opacity: 0.5 !important;
}
.text-opacity-54 {
  --text-opacity: 0.54 !important;
}
.text-opacity-70 {
  --text-opacity: 0.70 !important;
}
.text-opacity-75 {
  --text-opacity: 0.75 !important;
}
.text-opacity-84 {
  --text-opacity: 0.84 !important;
}
.text-opacity-100 {
  --text-opacity: 1 !important;
}
.italic {
  font-style: italic !important;
}
.not-italic {
  font-style: normal !important;
}
.uppercase {
  text-transform: uppercase !important;
}
.lowercase {
  text-transform: lowercase !important;
}
.capitalize {
  text-transform: capitalize !important;
}
.normal-case {
  text-transform: none !important;
}
.underline {
  text-decoration: underline !important;
}
.line-through {
  text-decoration: line-through !important;
}
.no-underline {
  text-decoration: none !important;
}
.hover\:underline:hover {
  text-decoration: underline !important;
}
.hover\:line-through:hover {
  text-decoration: line-through !important;
}
.hover\:no-underline:hover {
  text-decoration: none !important;
}
.focus\:underline:focus {
  text-decoration: underline !important;
}
.focus\:line-through:focus {
  text-decoration: line-through !important;
}
.focus\:no-underline:focus {
  text-decoration: none !important;
}
.antialiased {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
.subpixel-antialiased {
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}
.tracking-tighter {
  letter-spacing: -0.05em !important;
}
.tracking-tight {
  letter-spacing: -0.025em !important;
}
.tracking-normal {
  letter-spacing: 0 !important;
}
.tracking-wide {
  letter-spacing: 0.025em !important;
}
.tracking-wider {
  letter-spacing: 0.05em !important;
}
.tracking-widest {
  letter-spacing: 0.1em !important;
}
.select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.select-text {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
.select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}
.select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.whitespace-normal {
  white-space: normal !important;
}
.whitespace-no-wrap {
  white-space: nowrap !important;
}
.whitespace-pre {
  white-space: pre !important;
}
.whitespace-pre-line {
  white-space: pre-line !important;
}
.whitespace-pre-wrap {
  white-space: pre-wrap !important;
}
.break-normal {
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.break-words {
  overflow-wrap: break-word !important;
}
.break-all {
  word-break: break-all !important;
}
.truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.w-0 {
  width: 0 !important;
}
.w-1 {
  width: 0.25rem !important;
}
.w-2 {
  width: 0.5rem !important;
}
.w-3 {
  width: 0.75rem !important;
}
.w-4 {
  width: 1rem !important;
}
.w-5 {
  width: 1.25rem !important;
}
.w-6 {
  width: 1.5rem !important;
}
.w-7 {
  width: 1.75rem !important;
}
.w-8 {
  width: 2rem !important;
}
.w-9 {
  width: 2.25rem !important;
}
.w-10 {
  width: 2.5rem !important;
}
.w-11 {
  width: 2.75rem !important;
}
.w-12 {
  width: 3rem !important;
}
.w-13 {
  width: 3.25rem !important;
}
.w-14 {
  width: 3.5rem !important;
}
.w-15 {
  width: 3.75rem !important;
}
.w-16 {
  width: 4rem !important;
}
.w-18 {
  width: 4.5rem !important;
}
.w-20 {
  width: 5rem !important;
}
.w-22 {
  width: 5.5rem !important;
}
.w-24 {
  width: 6rem !important;
}
.w-26 {
  width: 6.5rem !important;
}
.w-28 {
  width: 7rem !important;
}
.w-30 {
  width: 7.5rem !important;
}
.w-32 {
  width: 8rem !important;
}
.w-36 {
  width: 9rem !important;
}
.w-40 {
  width: 10rem !important;
}
.w-44 {
  width: 11rem !important;
}
.w-48 {
  width: 12rem !important;
}
.w-50 {
  width: 12.5rem !important;
}
.w-52 {
  width: 13rem !important;
}
.w-56 {
  width: 14rem !important;
}
.w-60 {
  width: 15rem !important;
}
.w-64 {
  width: 16rem !important;
}
.w-72 {
  width: 18rem !important;
}
.w-80 {
  width: 20rem !important;
}
.w-90 {
  width: 24rem !important;
}
.w-96 {
  width: 24rem !important;
}
.w-100 {
  width: 25rem !important;
}
.w-120 {
  width: 30rem !important;
}
.w-128 {
  width: 32rem !important;
}
.w-140 {
  width: 35rem !important;
}
.w-160 {
  width: 40rem !important;
}
.w-180 {
  width: 45rem !important;
}
.w-192 {
  width: 48rem !important;
}
.w-200 {
  width: 50rem !important;
}
.w-240 {
  width: 60rem !important;
}
.w-256 {
  width: 64rem !important;
}
.w-280 {
  width: 70rem !important;
}
.w-320 {
  width: 80rem !important;
}
.w-360 {
  width: 90rem !important;
}
.w-400 {
  width: 100rem !important;
}
.w-480 {
  width: 120rem !important;
}
.w-auto {
  width: auto !important;
}
.w-px {
  width: 1px !important;
}
.w-0\.5 {
  width: 0.125rem !important;
}
.w-1\.5 {
  width: 0.375rem !important;
}
.w-2\.5 {
  width: 0.625rem !important;
}
.w-3\.5 {
  width: 0.875rem !important;
}
.w-1\/2 {
  width: 50% !important;
}
.w-1\/3 {
  width: 33.333333% !important;
}
.w-2\/3 {
  width: 66.666667% !important;
}
.w-1\/4 {
  width: 25% !important;
}
.w-2\/4 {
  width: 50% !important;
}
.w-3\/4 {
  width: 75% !important;
}
.w-1\/5 {
  width: 20% !important;
}
.w-2\/5 {
  width: 40% !important;
}
.w-3\/5 {
  width: 60% !important;
}
.w-4\/5 {
  width: 80% !important;
}
.w-1\/6 {
  width: 16.666667% !important;
}
.w-2\/6 {
  width: 33.333333% !important;
}
.w-3\/6 {
  width: 50% !important;
}
.w-4\/6 {
  width: 66.666667% !important;
}
.w-5\/6 {
  width: 83.333333% !important;
}
.w-1\/12 {
  width: 8.333333% !important;
}
.w-2\/12 {
  width: 16.666667% !important;
}
.w-3\/12 {
  width: 25% !important;
}
.w-4\/12 {
  width: 33.333333% !important;
}
.w-5\/12 {
  width: 41.666667% !important;
}
.w-6\/12 {
  width: 50% !important;
}
.w-7\/12 {
  width: 58.333333% !important;
}
.w-8\/12 {
  width: 66.666667% !important;
}
.w-9\/12 {
  width: 75% !important;
}
.w-10\/12 {
  width: 83.333333% !important;
}
.w-11\/12 {
  width: 91.666667% !important;
}
.w-full {
  width: 100% !important;
}
.w-2px {
  width: 2px !important;
}
.w-screen {
  width: 100vw !important;
}
.w-min-content {
  width: -webkit-min-content !important;
  width: -moz-min-content !important;
  width: min-content !important;
}
.w-max-content {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}
.z-0 {
  z-index: 0 !important;
}
.z-10 {
  z-index: 10 !important;
}
.z-20 {
  z-index: 20 !important;
}
.z-30 {
  z-index: 30 !important;
}
.z-40 {
  z-index: 40 !important;
}
.z-50 {
  z-index: 50 !important;
}
.z-60 {
  z-index: 60 !important;
}
.z-70 {
  z-index: 70 !important;
}
.z-80 {
  z-index: 80 !important;
}
.z-90 {
  z-index: 90 !important;
}
.z-99 {
  z-index: 99 !important;
}
.z-999 {
  z-index: 999 !important;
}
.z-9999 {
  z-index: 9999 !important;
}
.z-99999 {
  z-index: 99999 !important;
}
.z-auto {
  z-index: auto !important;
}
.-z-1 {
  z-index: -1 !important;
}
.gap-0 {
  grid-gap: 0 !important;
  gap: 0 !important;
}
.gap-1 {
  grid-gap: 0.25rem !important;
  gap: 0.25rem !important;
}
.gap-2 {
  grid-gap: 0.5rem !important;
  gap: 0.5rem !important;
}
.gap-3 {
  grid-gap: 0.75rem !important;
  gap: 0.75rem !important;
}
.gap-4 {
  grid-gap: 1rem !important;
  gap: 1rem !important;
}
.gap-5 {
  grid-gap: 1.25rem !important;
  gap: 1.25rem !important;
}
.gap-6 {
  grid-gap: 1.5rem !important;
  gap: 1.5rem !important;
}
.gap-7 {
  grid-gap: 1.75rem !important;
  gap: 1.75rem !important;
}
.gap-8 {
  grid-gap: 2rem !important;
  gap: 2rem !important;
}
.gap-9 {
  grid-gap: 2.25rem !important;
  gap: 2.25rem !important;
}
.gap-10 {
  grid-gap: 2.5rem !important;
  gap: 2.5rem !important;
}
.gap-11 {
  grid-gap: 2.75rem !important;
  gap: 2.75rem !important;
}
.gap-12 {
  grid-gap: 3rem !important;
  gap: 3rem !important;
}
.gap-13 {
  grid-gap: 3.25rem !important;
  gap: 3.25rem !important;
}
.gap-14 {
  grid-gap: 3.5rem !important;
  gap: 3.5rem !important;
}
.gap-15 {
  grid-gap: 3.75rem !important;
  gap: 3.75rem !important;
}
.gap-16 {
  grid-gap: 4rem !important;
  gap: 4rem !important;
}
.gap-18 {
  grid-gap: 4.5rem !important;
  gap: 4.5rem !important;
}
.gap-20 {
  grid-gap: 5rem !important;
  gap: 5rem !important;
}
.gap-22 {
  grid-gap: 5.5rem !important;
  gap: 5.5rem !important;
}
.gap-24 {
  grid-gap: 6rem !important;
  gap: 6rem !important;
}
.gap-26 {
  grid-gap: 6.5rem !important;
  gap: 6.5rem !important;
}
.gap-28 {
  grid-gap: 7rem !important;
  gap: 7rem !important;
}
.gap-30 {
  grid-gap: 7.5rem !important;
  gap: 7.5rem !important;
}
.gap-32 {
  grid-gap: 8rem !important;
  gap: 8rem !important;
}
.gap-36 {
  grid-gap: 9rem !important;
  gap: 9rem !important;
}
.gap-40 {
  grid-gap: 10rem !important;
  gap: 10rem !important;
}
.gap-44 {
  grid-gap: 11rem !important;
  gap: 11rem !important;
}
.gap-48 {
  grid-gap: 12rem !important;
  gap: 12rem !important;
}
.gap-50 {
  grid-gap: 12.5rem !important;
  gap: 12.5rem !important;
}
.gap-52 {
  grid-gap: 13rem !important;
  gap: 13rem !important;
}
.gap-56 {
  grid-gap: 14rem !important;
  gap: 14rem !important;
}
.gap-60 {
  grid-gap: 15rem !important;
  gap: 15rem !important;
}
.gap-64 {
  grid-gap: 16rem !important;
  gap: 16rem !important;
}
.gap-72 {
  grid-gap: 18rem !important;
  gap: 18rem !important;
}
.gap-80 {
  grid-gap: 20rem !important;
  gap: 20rem !important;
}
.gap-90 {
  grid-gap: 24rem !important;
  gap: 24rem !important;
}
.gap-96 {
  grid-gap: 24rem !important;
  gap: 24rem !important;
}
.gap-100 {
  grid-gap: 25rem !important;
  gap: 25rem !important;
}
.gap-120 {
  grid-gap: 30rem !important;
  gap: 30rem !important;
}
.gap-128 {
  grid-gap: 32rem !important;
  gap: 32rem !important;
}
.gap-140 {
  grid-gap: 35rem !important;
  gap: 35rem !important;
}
.gap-160 {
  grid-gap: 40rem !important;
  gap: 40rem !important;
}
.gap-180 {
  grid-gap: 45rem !important;
  gap: 45rem !important;
}
.gap-192 {
  grid-gap: 48rem !important;
  gap: 48rem !important;
}
.gap-200 {
  grid-gap: 50rem !important;
  gap: 50rem !important;
}
.gap-240 {
  grid-gap: 60rem !important;
  gap: 60rem !important;
}
.gap-256 {
  grid-gap: 64rem !important;
  gap: 64rem !important;
}
.gap-280 {
  grid-gap: 70rem !important;
  gap: 70rem !important;
}
.gap-320 {
  grid-gap: 80rem !important;
  gap: 80rem !important;
}
.gap-360 {
  grid-gap: 90rem !important;
  gap: 90rem !important;
}
.gap-400 {
  grid-gap: 100rem !important;
  gap: 100rem !important;
}
.gap-480 {
  grid-gap: 120rem !important;
  gap: 120rem !important;
}
.gap-px {
  grid-gap: 1px !important;
  gap: 1px !important;
}
.gap-0\.5 {
  grid-gap: 0.125rem !important;
  gap: 0.125rem !important;
}
.gap-1\.5 {
  grid-gap: 0.375rem !important;
  gap: 0.375rem !important;
}
.gap-2\.5 {
  grid-gap: 0.625rem !important;
  gap: 0.625rem !important;
}
.gap-3\.5 {
  grid-gap: 0.875rem !important;
  gap: 0.875rem !important;
}
.gap-1\/2 {
  grid-gap: 50% !important;
  gap: 50% !important;
}
.gap-1\/3 {
  grid-gap: 33.333333% !important;
  gap: 33.333333% !important;
}
.gap-2\/3 {
  grid-gap: 66.666667% !important;
  gap: 66.666667% !important;
}
.gap-1\/4 {
  grid-gap: 25% !important;
  gap: 25% !important;
}
.gap-2\/4 {
  grid-gap: 50% !important;
  gap: 50% !important;
}
.gap-3\/4 {
  grid-gap: 75% !important;
  gap: 75% !important;
}
.gap-1\/5 {
  grid-gap: 20% !important;
  gap: 20% !important;
}
.gap-2\/5 {
  grid-gap: 40% !important;
  gap: 40% !important;
}
.gap-3\/5 {
  grid-gap: 60% !important;
  gap: 60% !important;
}
.gap-4\/5 {
  grid-gap: 80% !important;
  gap: 80% !important;
}
.gap-1\/6 {
  grid-gap: 16.666667% !important;
  gap: 16.666667% !important;
}
.gap-2\/6 {
  grid-gap: 33.333333% !important;
  gap: 33.333333% !important;
}
.gap-3\/6 {
  grid-gap: 50% !important;
  gap: 50% !important;
}
.gap-4\/6 {
  grid-gap: 66.666667% !important;
  gap: 66.666667% !important;
}
.gap-5\/6 {
  grid-gap: 83.333333% !important;
  gap: 83.333333% !important;
}
.gap-1\/12 {
  grid-gap: 8.333333% !important;
  gap: 8.333333% !important;
}
.gap-2\/12 {
  grid-gap: 16.666667% !important;
  gap: 16.666667% !important;
}
.gap-3\/12 {
  grid-gap: 25% !important;
  gap: 25% !important;
}
.gap-4\/12 {
  grid-gap: 33.333333% !important;
  gap: 33.333333% !important;
}
.gap-5\/12 {
  grid-gap: 41.666667% !important;
  gap: 41.666667% !important;
}
.gap-6\/12 {
  grid-gap: 50% !important;
  gap: 50% !important;
}
.gap-7\/12 {
  grid-gap: 58.333333% !important;
  gap: 58.333333% !important;
}
.gap-8\/12 {
  grid-gap: 66.666667% !important;
  gap: 66.666667% !important;
}
.gap-9\/12 {
  grid-gap: 75% !important;
  gap: 75% !important;
}
.gap-10\/12 {
  grid-gap: 83.333333% !important;
  gap: 83.333333% !important;
}
.gap-11\/12 {
  grid-gap: 91.666667% !important;
  gap: 91.666667% !important;
}
.gap-full {
  grid-gap: 100% !important;
  gap: 100% !important;
}
.gap-2px {
  grid-gap: 2px !important;
  gap: 2px !important;
}
.gap-x-0 {
  grid-column-gap: 0 !important;
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
}
.gap-x-1 {
  grid-column-gap: 0.25rem !important;
  -moz-column-gap: 0.25rem !important;
  column-gap: 0.25rem !important;
}
.gap-x-2 {
  grid-column-gap: 0.5rem !important;
  -moz-column-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}
.gap-x-3 {
  grid-column-gap: 0.75rem !important;
  -moz-column-gap: 0.75rem !important;
  column-gap: 0.75rem !important;
}
.gap-x-4 {
  grid-column-gap: 1rem !important;
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}
.gap-x-5 {
  grid-column-gap: 1.25rem !important;
  -moz-column-gap: 1.25rem !important;
  column-gap: 1.25rem !important;
}
.gap-x-6 {
  grid-column-gap: 1.5rem !important;
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}
.gap-x-7 {
  grid-column-gap: 1.75rem !important;
  -moz-column-gap: 1.75rem !important;
  column-gap: 1.75rem !important;
}
.gap-x-8 {
  grid-column-gap: 2rem !important;
  -moz-column-gap: 2rem !important;
  column-gap: 2rem !important;
}
.gap-x-9 {
  grid-column-gap: 2.25rem !important;
  -moz-column-gap: 2.25rem !important;
  column-gap: 2.25rem !important;
}
.gap-x-10 {
  grid-column-gap: 2.5rem !important;
  -moz-column-gap: 2.5rem !important;
  column-gap: 2.5rem !important;
}
.gap-x-11 {
  grid-column-gap: 2.75rem !important;
  -moz-column-gap: 2.75rem !important;
  column-gap: 2.75rem !important;
}
.gap-x-12 {
  grid-column-gap: 3rem !important;
  -moz-column-gap: 3rem !important;
  column-gap: 3rem !important;
}
.gap-x-13 {
  grid-column-gap: 3.25rem !important;
  -moz-column-gap: 3.25rem !important;
  column-gap: 3.25rem !important;
}
.gap-x-14 {
  grid-column-gap: 3.5rem !important;
  -moz-column-gap: 3.5rem !important;
  column-gap: 3.5rem !important;
}
.gap-x-15 {
  grid-column-gap: 3.75rem !important;
  -moz-column-gap: 3.75rem !important;
  column-gap: 3.75rem !important;
}
.gap-x-16 {
  grid-column-gap: 4rem !important;
  -moz-column-gap: 4rem !important;
  column-gap: 4rem !important;
}
.gap-x-18 {
  grid-column-gap: 4.5rem !important;
  -moz-column-gap: 4.5rem !important;
  column-gap: 4.5rem !important;
}
.gap-x-20 {
  grid-column-gap: 5rem !important;
  -moz-column-gap: 5rem !important;
  column-gap: 5rem !important;
}
.gap-x-22 {
  grid-column-gap: 5.5rem !important;
  -moz-column-gap: 5.5rem !important;
  column-gap: 5.5rem !important;
}
.gap-x-24 {
  grid-column-gap: 6rem !important;
  -moz-column-gap: 6rem !important;
  column-gap: 6rem !important;
}
.gap-x-26 {
  grid-column-gap: 6.5rem !important;
  -moz-column-gap: 6.5rem !important;
  column-gap: 6.5rem !important;
}
.gap-x-28 {
  grid-column-gap: 7rem !important;
  -moz-column-gap: 7rem !important;
  column-gap: 7rem !important;
}
.gap-x-30 {
  grid-column-gap: 7.5rem !important;
  -moz-column-gap: 7.5rem !important;
  column-gap: 7.5rem !important;
}
.gap-x-32 {
  grid-column-gap: 8rem !important;
  -moz-column-gap: 8rem !important;
  column-gap: 8rem !important;
}
.gap-x-36 {
  grid-column-gap: 9rem !important;
  -moz-column-gap: 9rem !important;
  column-gap: 9rem !important;
}
.gap-x-40 {
  grid-column-gap: 10rem !important;
  -moz-column-gap: 10rem !important;
  column-gap: 10rem !important;
}
.gap-x-44 {
  grid-column-gap: 11rem !important;
  -moz-column-gap: 11rem !important;
  column-gap: 11rem !important;
}
.gap-x-48 {
  grid-column-gap: 12rem !important;
  -moz-column-gap: 12rem !important;
  column-gap: 12rem !important;
}
.gap-x-50 {
  grid-column-gap: 12.5rem !important;
  -moz-column-gap: 12.5rem !important;
  column-gap: 12.5rem !important;
}
.gap-x-52 {
  grid-column-gap: 13rem !important;
  -moz-column-gap: 13rem !important;
  column-gap: 13rem !important;
}
.gap-x-56 {
  grid-column-gap: 14rem !important;
  -moz-column-gap: 14rem !important;
  column-gap: 14rem !important;
}
.gap-x-60 {
  grid-column-gap: 15rem !important;
  -moz-column-gap: 15rem !important;
  column-gap: 15rem !important;
}
.gap-x-64 {
  grid-column-gap: 16rem !important;
  -moz-column-gap: 16rem !important;
  column-gap: 16rem !important;
}
.gap-x-72 {
  grid-column-gap: 18rem !important;
  -moz-column-gap: 18rem !important;
  column-gap: 18rem !important;
}
.gap-x-80 {
  grid-column-gap: 20rem !important;
  -moz-column-gap: 20rem !important;
  column-gap: 20rem !important;
}
.gap-x-90 {
  grid-column-gap: 24rem !important;
  -moz-column-gap: 24rem !important;
  column-gap: 24rem !important;
}
.gap-x-96 {
  grid-column-gap: 24rem !important;
  -moz-column-gap: 24rem !important;
  column-gap: 24rem !important;
}
.gap-x-100 {
  grid-column-gap: 25rem !important;
  -moz-column-gap: 25rem !important;
  column-gap: 25rem !important;
}
.gap-x-120 {
  grid-column-gap: 30rem !important;
  -moz-column-gap: 30rem !important;
  column-gap: 30rem !important;
}
.gap-x-128 {
  grid-column-gap: 32rem !important;
  -moz-column-gap: 32rem !important;
  column-gap: 32rem !important;
}
.gap-x-140 {
  grid-column-gap: 35rem !important;
  -moz-column-gap: 35rem !important;
  column-gap: 35rem !important;
}
.gap-x-160 {
  grid-column-gap: 40rem !important;
  -moz-column-gap: 40rem !important;
  column-gap: 40rem !important;
}
.gap-x-180 {
  grid-column-gap: 45rem !important;
  -moz-column-gap: 45rem !important;
  column-gap: 45rem !important;
}
.gap-x-192 {
  grid-column-gap: 48rem !important;
  -moz-column-gap: 48rem !important;
  column-gap: 48rem !important;
}
.gap-x-200 {
  grid-column-gap: 50rem !important;
  -moz-column-gap: 50rem !important;
  column-gap: 50rem !important;
}
.gap-x-240 {
  grid-column-gap: 60rem !important;
  -moz-column-gap: 60rem !important;
  column-gap: 60rem !important;
}
.gap-x-256 {
  grid-column-gap: 64rem !important;
  -moz-column-gap: 64rem !important;
  column-gap: 64rem !important;
}
.gap-x-280 {
  grid-column-gap: 70rem !important;
  -moz-column-gap: 70rem !important;
  column-gap: 70rem !important;
}
.gap-x-320 {
  grid-column-gap: 80rem !important;
  -moz-column-gap: 80rem !important;
  column-gap: 80rem !important;
}
.gap-x-360 {
  grid-column-gap: 90rem !important;
  -moz-column-gap: 90rem !important;
  column-gap: 90rem !important;
}
.gap-x-400 {
  grid-column-gap: 100rem !important;
  -moz-column-gap: 100rem !important;
  column-gap: 100rem !important;
}
.gap-x-480 {
  grid-column-gap: 120rem !important;
  -moz-column-gap: 120rem !important;
  column-gap: 120rem !important;
}
.gap-x-px {
  grid-column-gap: 1px !important;
  -moz-column-gap: 1px !important;
  column-gap: 1px !important;
}
.gap-x-0\.5 {
  grid-column-gap: 0.125rem !important;
  -moz-column-gap: 0.125rem !important;
  column-gap: 0.125rem !important;
}
.gap-x-1\.5 {
  grid-column-gap: 0.375rem !important;
  -moz-column-gap: 0.375rem !important;
  column-gap: 0.375rem !important;
}
.gap-x-2\.5 {
  grid-column-gap: 0.625rem !important;
  -moz-column-gap: 0.625rem !important;
  column-gap: 0.625rem !important;
}
.gap-x-3\.5 {
  grid-column-gap: 0.875rem !important;
  -moz-column-gap: 0.875rem !important;
  column-gap: 0.875rem !important;
}
.gap-x-1\/2 {
  grid-column-gap: 50% !important;
  -moz-column-gap: 50% !important;
  column-gap: 50% !important;
}
.gap-x-1\/3 {
  grid-column-gap: 33.333333% !important;
  -moz-column-gap: 33.333333% !important;
  column-gap: 33.333333% !important;
}
.gap-x-2\/3 {
  grid-column-gap: 66.666667% !important;
  -moz-column-gap: 66.666667% !important;
  column-gap: 66.666667% !important;
}
.gap-x-1\/4 {
  grid-column-gap: 25% !important;
  -moz-column-gap: 25% !important;
  column-gap: 25% !important;
}
.gap-x-2\/4 {
  grid-column-gap: 50% !important;
  -moz-column-gap: 50% !important;
  column-gap: 50% !important;
}
.gap-x-3\/4 {
  grid-column-gap: 75% !important;
  -moz-column-gap: 75% !important;
  column-gap: 75% !important;
}
.gap-x-1\/5 {
  grid-column-gap: 20% !important;
  -moz-column-gap: 20% !important;
  column-gap: 20% !important;
}
.gap-x-2\/5 {
  grid-column-gap: 40% !important;
  -moz-column-gap: 40% !important;
  column-gap: 40% !important;
}
.gap-x-3\/5 {
  grid-column-gap: 60% !important;
  -moz-column-gap: 60% !important;
  column-gap: 60% !important;
}
.gap-x-4\/5 {
  grid-column-gap: 80% !important;
  -moz-column-gap: 80% !important;
  column-gap: 80% !important;
}
.gap-x-1\/6 {
  grid-column-gap: 16.666667% !important;
  -moz-column-gap: 16.666667% !important;
  column-gap: 16.666667% !important;
}
.gap-x-2\/6 {
  grid-column-gap: 33.333333% !important;
  -moz-column-gap: 33.333333% !important;
  column-gap: 33.333333% !important;
}
.gap-x-3\/6 {
  grid-column-gap: 50% !important;
  -moz-column-gap: 50% !important;
  column-gap: 50% !important;
}
.gap-x-4\/6 {
  grid-column-gap: 66.666667% !important;
  -moz-column-gap: 66.666667% !important;
  column-gap: 66.666667% !important;
}
.gap-x-5\/6 {
  grid-column-gap: 83.333333% !important;
  -moz-column-gap: 83.333333% !important;
  column-gap: 83.333333% !important;
}
.gap-x-1\/12 {
  grid-column-gap: 8.333333% !important;
  -moz-column-gap: 8.333333% !important;
  column-gap: 8.333333% !important;
}
.gap-x-2\/12 {
  grid-column-gap: 16.666667% !important;
  -moz-column-gap: 16.666667% !important;
  column-gap: 16.666667% !important;
}
.gap-x-3\/12 {
  grid-column-gap: 25% !important;
  -moz-column-gap: 25% !important;
  column-gap: 25% !important;
}
.gap-x-4\/12 {
  grid-column-gap: 33.333333% !important;
  -moz-column-gap: 33.333333% !important;
  column-gap: 33.333333% !important;
}
.gap-x-5\/12 {
  grid-column-gap: 41.666667% !important;
  -moz-column-gap: 41.666667% !important;
  column-gap: 41.666667% !important;
}
.gap-x-6\/12 {
  grid-column-gap: 50% !important;
  -moz-column-gap: 50% !important;
  column-gap: 50% !important;
}
.gap-x-7\/12 {
  grid-column-gap: 58.333333% !important;
  -moz-column-gap: 58.333333% !important;
  column-gap: 58.333333% !important;
}
.gap-x-8\/12 {
  grid-column-gap: 66.666667% !important;
  -moz-column-gap: 66.666667% !important;
  column-gap: 66.666667% !important;
}
.gap-x-9\/12 {
  grid-column-gap: 75% !important;
  -moz-column-gap: 75% !important;
  column-gap: 75% !important;
}
.gap-x-10\/12 {
  grid-column-gap: 83.333333% !important;
  -moz-column-gap: 83.333333% !important;
  column-gap: 83.333333% !important;
}
.gap-x-11\/12 {
  grid-column-gap: 91.666667% !important;
  -moz-column-gap: 91.666667% !important;
  column-gap: 91.666667% !important;
}
.gap-x-full {
  grid-column-gap: 100% !important;
  -moz-column-gap: 100% !important;
  column-gap: 100% !important;
}
.gap-x-2px {
  grid-column-gap: 2px !important;
  -moz-column-gap: 2px !important;
  column-gap: 2px !important;
}
.gap-y-0 {
  grid-row-gap: 0 !important;
  row-gap: 0 !important;
}
.gap-y-1 {
  grid-row-gap: 0.25rem !important;
  row-gap: 0.25rem !important;
}
.gap-y-2 {
  grid-row-gap: 0.5rem !important;
  row-gap: 0.5rem !important;
}
.gap-y-3 {
  grid-row-gap: 0.75rem !important;
  row-gap: 0.75rem !important;
}
.gap-y-4 {
  grid-row-gap: 1rem !important;
  row-gap: 1rem !important;
}
.gap-y-5 {
  grid-row-gap: 1.25rem !important;
  row-gap: 1.25rem !important;
}
.gap-y-6 {
  grid-row-gap: 1.5rem !important;
  row-gap: 1.5rem !important;
}
.gap-y-7 {
  grid-row-gap: 1.75rem !important;
  row-gap: 1.75rem !important;
}
.gap-y-8 {
  grid-row-gap: 2rem !important;
  row-gap: 2rem !important;
}
.gap-y-9 {
  grid-row-gap: 2.25rem !important;
  row-gap: 2.25rem !important;
}
.gap-y-10 {
  grid-row-gap: 2.5rem !important;
  row-gap: 2.5rem !important;
}
.gap-y-11 {
  grid-row-gap: 2.75rem !important;
  row-gap: 2.75rem !important;
}
.gap-y-12 {
  grid-row-gap: 3rem !important;
  row-gap: 3rem !important;
}
.gap-y-13 {
  grid-row-gap: 3.25rem !important;
  row-gap: 3.25rem !important;
}
.gap-y-14 {
  grid-row-gap: 3.5rem !important;
  row-gap: 3.5rem !important;
}
.gap-y-15 {
  grid-row-gap: 3.75rem !important;
  row-gap: 3.75rem !important;
}
.gap-y-16 {
  grid-row-gap: 4rem !important;
  row-gap: 4rem !important;
}
.gap-y-18 {
  grid-row-gap: 4.5rem !important;
  row-gap: 4.5rem !important;
}
.gap-y-20 {
  grid-row-gap: 5rem !important;
  row-gap: 5rem !important;
}
.gap-y-22 {
  grid-row-gap: 5.5rem !important;
  row-gap: 5.5rem !important;
}
.gap-y-24 {
  grid-row-gap: 6rem !important;
  row-gap: 6rem !important;
}
.gap-y-26 {
  grid-row-gap: 6.5rem !important;
  row-gap: 6.5rem !important;
}
.gap-y-28 {
  grid-row-gap: 7rem !important;
  row-gap: 7rem !important;
}
.gap-y-30 {
  grid-row-gap: 7.5rem !important;
  row-gap: 7.5rem !important;
}
.gap-y-32 {
  grid-row-gap: 8rem !important;
  row-gap: 8rem !important;
}
.gap-y-36 {
  grid-row-gap: 9rem !important;
  row-gap: 9rem !important;
}
.gap-y-40 {
  grid-row-gap: 10rem !important;
  row-gap: 10rem !important;
}
.gap-y-44 {
  grid-row-gap: 11rem !important;
  row-gap: 11rem !important;
}
.gap-y-48 {
  grid-row-gap: 12rem !important;
  row-gap: 12rem !important;
}
.gap-y-50 {
  grid-row-gap: 12.5rem !important;
  row-gap: 12.5rem !important;
}
.gap-y-52 {
  grid-row-gap: 13rem !important;
  row-gap: 13rem !important;
}
.gap-y-56 {
  grid-row-gap: 14rem !important;
  row-gap: 14rem !important;
}
.gap-y-60 {
  grid-row-gap: 15rem !important;
  row-gap: 15rem !important;
}
.gap-y-64 {
  grid-row-gap: 16rem !important;
  row-gap: 16rem !important;
}
.gap-y-72 {
  grid-row-gap: 18rem !important;
  row-gap: 18rem !important;
}
.gap-y-80 {
  grid-row-gap: 20rem !important;
  row-gap: 20rem !important;
}
.gap-y-90 {
  grid-row-gap: 24rem !important;
  row-gap: 24rem !important;
}
.gap-y-96 {
  grid-row-gap: 24rem !important;
  row-gap: 24rem !important;
}
.gap-y-100 {
  grid-row-gap: 25rem !important;
  row-gap: 25rem !important;
}
.gap-y-120 {
  grid-row-gap: 30rem !important;
  row-gap: 30rem !important;
}
.gap-y-128 {
  grid-row-gap: 32rem !important;
  row-gap: 32rem !important;
}
.gap-y-140 {
  grid-row-gap: 35rem !important;
  row-gap: 35rem !important;
}
.gap-y-160 {
  grid-row-gap: 40rem !important;
  row-gap: 40rem !important;
}
.gap-y-180 {
  grid-row-gap: 45rem !important;
  row-gap: 45rem !important;
}
.gap-y-192 {
  grid-row-gap: 48rem !important;
  row-gap: 48rem !important;
}
.gap-y-200 {
  grid-row-gap: 50rem !important;
  row-gap: 50rem !important;
}
.gap-y-240 {
  grid-row-gap: 60rem !important;
  row-gap: 60rem !important;
}
.gap-y-256 {
  grid-row-gap: 64rem !important;
  row-gap: 64rem !important;
}
.gap-y-280 {
  grid-row-gap: 70rem !important;
  row-gap: 70rem !important;
}
.gap-y-320 {
  grid-row-gap: 80rem !important;
  row-gap: 80rem !important;
}
.gap-y-360 {
  grid-row-gap: 90rem !important;
  row-gap: 90rem !important;
}
.gap-y-400 {
  grid-row-gap: 100rem !important;
  row-gap: 100rem !important;
}
.gap-y-480 {
  grid-row-gap: 120rem !important;
  row-gap: 120rem !important;
}
.gap-y-px {
  grid-row-gap: 1px !important;
  row-gap: 1px !important;
}
.gap-y-0\.5 {
  grid-row-gap: 0.125rem !important;
  row-gap: 0.125rem !important;
}
.gap-y-1\.5 {
  grid-row-gap: 0.375rem !important;
  row-gap: 0.375rem !important;
}
.gap-y-2\.5 {
  grid-row-gap: 0.625rem !important;
  row-gap: 0.625rem !important;
}
.gap-y-3\.5 {
  grid-row-gap: 0.875rem !important;
  row-gap: 0.875rem !important;
}
.gap-y-1\/2 {
  grid-row-gap: 50% !important;
  row-gap: 50% !important;
}
.gap-y-1\/3 {
  grid-row-gap: 33.333333% !important;
  row-gap: 33.333333% !important;
}
.gap-y-2\/3 {
  grid-row-gap: 66.666667% !important;
  row-gap: 66.666667% !important;
}
.gap-y-1\/4 {
  grid-row-gap: 25% !important;
  row-gap: 25% !important;
}
.gap-y-2\/4 {
  grid-row-gap: 50% !important;
  row-gap: 50% !important;
}
.gap-y-3\/4 {
  grid-row-gap: 75% !important;
  row-gap: 75% !important;
}
.gap-y-1\/5 {
  grid-row-gap: 20% !important;
  row-gap: 20% !important;
}
.gap-y-2\/5 {
  grid-row-gap: 40% !important;
  row-gap: 40% !important;
}
.gap-y-3\/5 {
  grid-row-gap: 60% !important;
  row-gap: 60% !important;
}
.gap-y-4\/5 {
  grid-row-gap: 80% !important;
  row-gap: 80% !important;
}
.gap-y-1\/6 {
  grid-row-gap: 16.666667% !important;
  row-gap: 16.666667% !important;
}
.gap-y-2\/6 {
  grid-row-gap: 33.333333% !important;
  row-gap: 33.333333% !important;
}
.gap-y-3\/6 {
  grid-row-gap: 50% !important;
  row-gap: 50% !important;
}
.gap-y-4\/6 {
  grid-row-gap: 66.666667% !important;
  row-gap: 66.666667% !important;
}
.gap-y-5\/6 {
  grid-row-gap: 83.333333% !important;
  row-gap: 83.333333% !important;
}
.gap-y-1\/12 {
  grid-row-gap: 8.333333% !important;
  row-gap: 8.333333% !important;
}
.gap-y-2\/12 {
  grid-row-gap: 16.666667% !important;
  row-gap: 16.666667% !important;
}
.gap-y-3\/12 {
  grid-row-gap: 25% !important;
  row-gap: 25% !important;
}
.gap-y-4\/12 {
  grid-row-gap: 33.333333% !important;
  row-gap: 33.333333% !important;
}
.gap-y-5\/12 {
  grid-row-gap: 41.666667% !important;
  row-gap: 41.666667% !important;
}
.gap-y-6\/12 {
  grid-row-gap: 50% !important;
  row-gap: 50% !important;
}
.gap-y-7\/12 {
  grid-row-gap: 58.333333% !important;
  row-gap: 58.333333% !important;
}
.gap-y-8\/12 {
  grid-row-gap: 66.666667% !important;
  row-gap: 66.666667% !important;
}
.gap-y-9\/12 {
  grid-row-gap: 75% !important;
  row-gap: 75% !important;
}
.gap-y-10\/12 {
  grid-row-gap: 83.333333% !important;
  row-gap: 83.333333% !important;
}
.gap-y-11\/12 {
  grid-row-gap: 91.666667% !important;
  row-gap: 91.666667% !important;
}
.gap-y-full {
  grid-row-gap: 100% !important;
  row-gap: 100% !important;
}
.gap-y-2px {
  grid-row-gap: 2px !important;
  row-gap: 2px !important;
}
.grid-flow-row {
  grid-auto-flow: row !important;
}
.grid-flow-col {
  grid-auto-flow: column !important;
}
.grid-flow-row-dense {
  grid-auto-flow: row dense !important;
}
.grid-flow-col-dense {
  grid-auto-flow: column dense !important;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}
.grid-cols-none {
  grid-template-columns: none !important;
}
.col-auto {
  grid-column: auto !important;
}
.col-span-1 {
  grid-column: span 1/span 1 !important;
}
.col-span-2 {
  grid-column: span 2/span 2 !important;
}
.col-span-3 {
  grid-column: span 3/span 3 !important;
}
.col-span-4 {
  grid-column: span 4/span 4 !important;
}
.col-span-5 {
  grid-column: span 5/span 5 !important;
}
.col-span-6 {
  grid-column: span 6/span 6 !important;
}
.col-span-7 {
  grid-column: span 7/span 7 !important;
}
.col-span-8 {
  grid-column: span 8/span 8 !important;
}
.col-span-9 {
  grid-column: span 9/span 9 !important;
}
.col-span-10 {
  grid-column: span 10/span 10 !important;
}
.col-span-11 {
  grid-column: span 11/span 11 !important;
}
.col-span-12 {
  grid-column: span 12/span 12 !important;
}
.col-start-1 {
  grid-column-start: 1 !important;
}
.col-start-2 {
  grid-column-start: 2 !important;
}
.col-start-3 {
  grid-column-start: 3 !important;
}
.col-start-4 {
  grid-column-start: 4 !important;
}
.col-start-5 {
  grid-column-start: 5 !important;
}
.col-start-6 {
  grid-column-start: 6 !important;
}
.col-start-7 {
  grid-column-start: 7 !important;
}
.col-start-8 {
  grid-column-start: 8 !important;
}
.col-start-9 {
  grid-column-start: 9 !important;
}
.col-start-10 {
  grid-column-start: 10 !important;
}
.col-start-11 {
  grid-column-start: 11 !important;
}
.col-start-12 {
  grid-column-start: 12 !important;
}
.col-start-13 {
  grid-column-start: 13 !important;
}
.col-start-auto {
  grid-column-start: auto !important;
}
.col-end-1 {
  grid-column-end: 1 !important;
}
.col-end-2 {
  grid-column-end: 2 !important;
}
.col-end-3 {
  grid-column-end: 3 !important;
}
.col-end-4 {
  grid-column-end: 4 !important;
}
.col-end-5 {
  grid-column-end: 5 !important;
}
.col-end-6 {
  grid-column-end: 6 !important;
}
.col-end-7 {
  grid-column-end: 7 !important;
}
.col-end-8 {
  grid-column-end: 8 !important;
}
.col-end-9 {
  grid-column-end: 9 !important;
}
.col-end-10 {
  grid-column-end: 10 !important;
}
.col-end-11 {
  grid-column-end: 11 !important;
}
.col-end-12 {
  grid-column-end: 12 !important;
}
.col-end-13 {
  grid-column-end: 13 !important;
}
.col-end-auto {
  grid-column-end: auto !important;
}
.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
}
.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}
.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
}
.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
}
.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
}
.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}
.grid-rows-none {
  grid-template-rows: none !important;
}
.row-auto {
  grid-row: auto !important;
}
.row-span-1 {
  grid-row: span 1/span 1 !important;
}
.row-span-2 {
  grid-row: span 2/span 2 !important;
}
.row-span-3 {
  grid-row: span 3/span 3 !important;
}
.row-span-4 {
  grid-row: span 4/span 4 !important;
}
.row-span-5 {
  grid-row: span 5/span 5 !important;
}
.row-span-6 {
  grid-row: span 6/span 6 !important;
}
.row-start-1 {
  grid-row-start: 1 !important;
}
.row-start-2 {
  grid-row-start: 2 !important;
}
.row-start-3 {
  grid-row-start: 3 !important;
}
.row-start-4 {
  grid-row-start: 4 !important;
}
.row-start-5 {
  grid-row-start: 5 !important;
}
.row-start-6 {
  grid-row-start: 6 !important;
}
.row-start-7 {
  grid-row-start: 7 !important;
}
.row-start-auto {
  grid-row-start: auto !important;
}
.row-end-1 {
  grid-row-end: 1 !important;
}
.row-end-2 {
  grid-row-end: 2 !important;
}
.row-end-3 {
  grid-row-end: 3 !important;
}
.row-end-4 {
  grid-row-end: 4 !important;
}
.row-end-5 {
  grid-row-end: 5 !important;
}
.row-end-6 {
  grid-row-end: 6 !important;
}
.row-end-7 {
  grid-row-end: 7 !important;
}
.row-end-auto {
  grid-row-end: auto !important;
}
.transform {
  --transform-translate-x: 0 !important;
  --transform-translate-y: 0 !important;
  --transform-rotate: 0 !important;
  --transform-skew-x: 0 !important;
  --transform-skew-y: 0 !important;
  --transform-scale-x: 1 !important;
  --transform-scale-y: 1 !important;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
}
.transform-none {
  transform: none !important;
}
.origin-center {
  transform-origin: center !important;
}
.origin-top {
  transform-origin: top !important;
}
.origin-top-right {
  transform-origin: top right !important;
}
.origin-right {
  transform-origin: right !important;
}
.origin-bottom-right {
  transform-origin: bottom right !important;
}
.origin-bottom {
  transform-origin: bottom !important;
}
.origin-bottom-left {
  transform-origin: bottom left !important;
}
.origin-left {
  transform-origin: left !important;
}
.origin-top-left {
  transform-origin: top left !important;
}
.scale-0 {
  --transform-scale-x: 0 !important;
  --transform-scale-y: 0 !important;
}
.scale-50 {
  --transform-scale-x: .5 !important;
  --transform-scale-y: .5 !important;
}
.scale-75 {
  --transform-scale-x: .75 !important;
  --transform-scale-y: .75 !important;
}
.scale-90 {
  --transform-scale-x: .9 !important;
  --transform-scale-y: .9 !important;
}
.scale-95 {
  --transform-scale-x: .95 !important;
  --transform-scale-y: .95 !important;
}
.scale-100 {
  --transform-scale-x: 1 !important;
  --transform-scale-y: 1 !important;
}
.scale-105 {
  --transform-scale-x: 1.05 !important;
  --transform-scale-y: 1.05 !important;
}
.scale-110 {
  --transform-scale-x: 1.1 !important;
  --transform-scale-y: 1.1 !important;
}
.scale-125 {
  --transform-scale-x: 1.25 !important;
  --transform-scale-y: 1.25 !important;
}
.scale-150 {
  --transform-scale-x: 1.5 !important;
  --transform-scale-y: 1.5 !important;
}
.scale-x-0 {
  --transform-scale-x: 0 !important;
}
.scale-x-50 {
  --transform-scale-x: .5 !important;
}
.scale-x-75 {
  --transform-scale-x: .75 !important;
}
.scale-x-90 {
  --transform-scale-x: .9 !important;
}
.scale-x-95 {
  --transform-scale-x: .95 !important;
}
.scale-x-100 {
  --transform-scale-x: 1 !important;
}
.scale-x-105 {
  --transform-scale-x: 1.05 !important;
}
.scale-x-110 {
  --transform-scale-x: 1.1 !important;
}
.scale-x-125 {
  --transform-scale-x: 1.25 !important;
}
.scale-x-150 {
  --transform-scale-x: 1.5 !important;
}
.scale-y-0 {
  --transform-scale-y: 0 !important;
}
.scale-y-50 {
  --transform-scale-y: .5 !important;
}
.scale-y-75 {
  --transform-scale-y: .75 !important;
}
.scale-y-90 {
  --transform-scale-y: .9 !important;
}
.scale-y-95 {
  --transform-scale-y: .95 !important;
}
.scale-y-100 {
  --transform-scale-y: 1 !important;
}
.scale-y-105 {
  --transform-scale-y: 1.05 !important;
}
.scale-y-110 {
  --transform-scale-y: 1.1 !important;
}
.scale-y-125 {
  --transform-scale-y: 1.25 !important;
}
.scale-y-150 {
  --transform-scale-y: 1.5 !important;
}
.rotate-0 {
  --transform-rotate: 0 !important;
}
.rotate-15 {
  --transform-rotate: 15deg !important;
}
.rotate-30 {
  --transform-rotate: 30deg !important;
}
.rotate-45 {
  --transform-rotate: 45deg !important;
}
.rotate-60 {
  --transform-rotate: 60deg !important;
}
.rotate-90 {
  --transform-rotate: 90deg !important;
}
.rotate-180 {
  --transform-rotate: 180deg !important;
}
.rotate-270 {
  --transform-rotate: 270deg !important;
}
.-rotate-180 {
  --transform-rotate: -180deg !important;
}
.-rotate-90 {
  --transform-rotate: -90deg !important;
}
.-rotate-45 {
  --transform-rotate: -45deg !important;
}
.-rotate-270 {
  --transform-rotate: 270deg !important;
}
.translate-x-0 {
  --transform-translate-x: 0 !important;
}
.translate-x-1 {
  --transform-translate-x: 0.25rem !important;
}
.translate-x-2 {
  --transform-translate-x: 0.5rem !important;
}
.translate-x-3 {
  --transform-translate-x: 0.75rem !important;
}
.translate-x-4 {
  --transform-translate-x: 1rem !important;
}
.translate-x-5 {
  --transform-translate-x: 1.25rem !important;
}
.translate-x-6 {
  --transform-translate-x: 1.5rem !important;
}
.translate-x-7 {
  --transform-translate-x: 1.75rem !important;
}
.translate-x-8 {
  --transform-translate-x: 2rem !important;
}
.translate-x-9 {
  --transform-translate-x: 2.25rem !important;
}
.translate-x-10 {
  --transform-translate-x: 2.5rem !important;
}
.translate-x-11 {
  --transform-translate-x: 2.75rem !important;
}
.translate-x-12 {
  --transform-translate-x: 3rem !important;
}
.translate-x-13 {
  --transform-translate-x: 3.25rem !important;
}
.translate-x-14 {
  --transform-translate-x: 3.5rem !important;
}
.translate-x-15 {
  --transform-translate-x: 3.75rem !important;
}
.translate-x-16 {
  --transform-translate-x: 4rem !important;
}
.translate-x-18 {
  --transform-translate-x: 4.5rem !important;
}
.translate-x-20 {
  --transform-translate-x: 5rem !important;
}
.translate-x-22 {
  --transform-translate-x: 5.5rem !important;
}
.translate-x-24 {
  --transform-translate-x: 6rem !important;
}
.translate-x-26 {
  --transform-translate-x: 6.5rem !important;
}
.translate-x-28 {
  --transform-translate-x: 7rem !important;
}
.translate-x-30 {
  --transform-translate-x: 7.5rem !important;
}
.translate-x-32 {
  --transform-translate-x: 8rem !important;
}
.translate-x-36 {
  --transform-translate-x: 9rem !important;
}
.translate-x-40 {
  --transform-translate-x: 10rem !important;
}
.translate-x-44 {
  --transform-translate-x: 11rem !important;
}
.translate-x-48 {
  --transform-translate-x: 12rem !important;
}
.translate-x-50 {
  --transform-translate-x: 12.5rem !important;
}
.translate-x-52 {
  --transform-translate-x: 13rem !important;
}
.translate-x-56 {
  --transform-translate-x: 14rem !important;
}
.translate-x-60 {
  --transform-translate-x: 15rem !important;
}
.translate-x-64 {
  --transform-translate-x: 16rem !important;
}
.translate-x-72 {
  --transform-translate-x: 18rem !important;
}
.translate-x-80 {
  --transform-translate-x: 20rem !important;
}
.translate-x-90 {
  --transform-translate-x: 24rem !important;
}
.translate-x-96 {
  --transform-translate-x: 24rem !important;
}
.translate-x-100 {
  --transform-translate-x: 25rem !important;
}
.translate-x-120 {
  --transform-translate-x: 30rem !important;
}
.translate-x-128 {
  --transform-translate-x: 32rem !important;
}
.translate-x-140 {
  --transform-translate-x: 35rem !important;
}
.translate-x-160 {
  --transform-translate-x: 40rem !important;
}
.translate-x-180 {
  --transform-translate-x: 45rem !important;
}
.translate-x-192 {
  --transform-translate-x: 48rem !important;
}
.translate-x-200 {
  --transform-translate-x: 50rem !important;
}
.translate-x-240 {
  --transform-translate-x: 60rem !important;
}
.translate-x-256 {
  --transform-translate-x: 64rem !important;
}
.translate-x-280 {
  --transform-translate-x: 70rem !important;
}
.translate-x-320 {
  --transform-translate-x: 80rem !important;
}
.translate-x-360 {
  --transform-translate-x: 90rem !important;
}
.translate-x-400 {
  --transform-translate-x: 100rem !important;
}
.translate-x-480 {
  --transform-translate-x: 120rem !important;
}
.translate-x-px {
  --transform-translate-x: 1px !important;
}
.translate-x-0\.5 {
  --transform-translate-x: 0.125rem !important;
}
.translate-x-1\.5 {
  --transform-translate-x: 0.375rem !important;
}
.translate-x-2\.5 {
  --transform-translate-x: 0.625rem !important;
}
.translate-x-3\.5 {
  --transform-translate-x: 0.875rem !important;
}
.translate-x-1\/2 {
  --transform-translate-x: 50% !important;
}
.translate-x-1\/3 {
  --transform-translate-x: 33.333333% !important;
}
.translate-x-2\/3 {
  --transform-translate-x: 66.666667% !important;
}
.translate-x-1\/4 {
  --transform-translate-x: 25% !important;
}
.translate-x-2\/4 {
  --transform-translate-x: 50% !important;
}
.translate-x-3\/4 {
  --transform-translate-x: 75% !important;
}
.translate-x-1\/5 {
  --transform-translate-x: 20% !important;
}
.translate-x-2\/5 {
  --transform-translate-x: 40% !important;
}
.translate-x-3\/5 {
  --transform-translate-x: 60% !important;
}
.translate-x-4\/5 {
  --transform-translate-x: 80% !important;
}
.translate-x-1\/6 {
  --transform-translate-x: 16.666667% !important;
}
.translate-x-2\/6 {
  --transform-translate-x: 33.333333% !important;
}
.translate-x-3\/6 {
  --transform-translate-x: 50% !important;
}
.translate-x-4\/6 {
  --transform-translate-x: 66.666667% !important;
}
.translate-x-5\/6 {
  --transform-translate-x: 83.333333% !important;
}
.translate-x-1\/12 {
  --transform-translate-x: 8.333333% !important;
}
.translate-x-2\/12 {
  --transform-translate-x: 16.666667% !important;
}
.translate-x-3\/12 {
  --transform-translate-x: 25% !important;
}
.translate-x-4\/12 {
  --transform-translate-x: 33.333333% !important;
}
.translate-x-5\/12 {
  --transform-translate-x: 41.666667% !important;
}
.translate-x-6\/12 {
  --transform-translate-x: 50% !important;
}
.translate-x-7\/12 {
  --transform-translate-x: 58.333333% !important;
}
.translate-x-8\/12 {
  --transform-translate-x: 66.666667% !important;
}
.translate-x-9\/12 {
  --transform-translate-x: 75% !important;
}
.translate-x-10\/12 {
  --transform-translate-x: 83.333333% !important;
}
.translate-x-11\/12 {
  --transform-translate-x: 91.666667% !important;
}
.translate-x-full {
  --transform-translate-x: 100% !important;
}
.translate-x-2px {
  --transform-translate-x: 2px !important;
}
.-translate-x-1 {
  --transform-translate-x: -0.25rem !important;
}
.-translate-x-2 {
  --transform-translate-x: -0.5rem !important;
}
.-translate-x-3 {
  --transform-translate-x: -0.75rem !important;
}
.-translate-x-4 {
  --transform-translate-x: -1rem !important;
}
.-translate-x-5 {
  --transform-translate-x: -1.25rem !important;
}
.-translate-x-6 {
  --transform-translate-x: -1.5rem !important;
}
.-translate-x-7 {
  --transform-translate-x: -1.75rem !important;
}
.-translate-x-8 {
  --transform-translate-x: -2rem !important;
}
.-translate-x-9 {
  --transform-translate-x: -2.25rem !important;
}
.-translate-x-10 {
  --transform-translate-x: -2.5rem !important;
}
.-translate-x-11 {
  --transform-translate-x: -2.75rem !important;
}
.-translate-x-12 {
  --transform-translate-x: -3rem !important;
}
.-translate-x-13 {
  --transform-translate-x: -3.25rem !important;
}
.-translate-x-14 {
  --transform-translate-x: -3.5rem !important;
}
.-translate-x-15 {
  --transform-translate-x: -3.75rem !important;
}
.-translate-x-16 {
  --transform-translate-x: -4rem !important;
}
.-translate-x-18 {
  --transform-translate-x: -4.5rem !important;
}
.-translate-x-20 {
  --transform-translate-x: -5rem !important;
}
.-translate-x-22 {
  --transform-translate-x: -5.5rem !important;
}
.-translate-x-24 {
  --transform-translate-x: -6rem !important;
}
.-translate-x-26 {
  --transform-translate-x: -6.5rem !important;
}
.-translate-x-28 {
  --transform-translate-x: -7rem !important;
}
.-translate-x-30 {
  --transform-translate-x: -7.5rem !important;
}
.-translate-x-32 {
  --transform-translate-x: -8rem !important;
}
.-translate-x-36 {
  --transform-translate-x: -9rem !important;
}
.-translate-x-40 {
  --transform-translate-x: -10rem !important;
}
.-translate-x-44 {
  --transform-translate-x: -11rem !important;
}
.-translate-x-48 {
  --transform-translate-x: -12rem !important;
}
.-translate-x-50 {
  --transform-translate-x: -12.5rem !important;
}
.-translate-x-52 {
  --transform-translate-x: -13rem !important;
}
.-translate-x-56 {
  --transform-translate-x: -14rem !important;
}
.-translate-x-60 {
  --transform-translate-x: -15rem !important;
}
.-translate-x-64 {
  --transform-translate-x: -16rem !important;
}
.-translate-x-72 {
  --transform-translate-x: -18rem !important;
}
.-translate-x-80 {
  --transform-translate-x: -20rem !important;
}
.-translate-x-90 {
  --transform-translate-x: -24rem !important;
}
.-translate-x-96 {
  --transform-translate-x: -24rem !important;
}
.-translate-x-100 {
  --transform-translate-x: -25rem !important;
}
.-translate-x-120 {
  --transform-translate-x: -30rem !important;
}
.-translate-x-128 {
  --transform-translate-x: -32rem !important;
}
.-translate-x-140 {
  --transform-translate-x: -35rem !important;
}
.-translate-x-160 {
  --transform-translate-x: -40rem !important;
}
.-translate-x-180 {
  --transform-translate-x: -45rem !important;
}
.-translate-x-192 {
  --transform-translate-x: -48rem !important;
}
.-translate-x-200 {
  --transform-translate-x: -50rem !important;
}
.-translate-x-240 {
  --transform-translate-x: -60rem !important;
}
.-translate-x-256 {
  --transform-translate-x: -64rem !important;
}
.-translate-x-280 {
  --transform-translate-x: -70rem !important;
}
.-translate-x-320 {
  --transform-translate-x: -80rem !important;
}
.-translate-x-360 {
  --transform-translate-x: -90rem !important;
}
.-translate-x-400 {
  --transform-translate-x: -100rem !important;
}
.-translate-x-480 {
  --transform-translate-x: -120rem !important;
}
.-translate-x-px {
  --transform-translate-x: -1px !important;
}
.-translate-x-0\.5 {
  --transform-translate-x: -0.125rem !important;
}
.-translate-x-1\.5 {
  --transform-translate-x: -0.375rem !important;
}
.-translate-x-2\.5 {
  --transform-translate-x: -0.625rem !important;
}
.-translate-x-3\.5 {
  --transform-translate-x: -0.875rem !important;
}
.-translate-x-1\/2 {
  --transform-translate-x: -50% !important;
}
.-translate-x-1\/3 {
  --transform-translate-x: -33.33333% !important;
}
.-translate-x-2\/3 {
  --transform-translate-x: -66.66667% !important;
}
.-translate-x-1\/4 {
  --transform-translate-x: -25% !important;
}
.-translate-x-2\/4 {
  --transform-translate-x: -50% !important;
}
.-translate-x-3\/4 {
  --transform-translate-x: -75% !important;
}
.-translate-x-1\/5 {
  --transform-translate-x: -20% !important;
}
.-translate-x-2\/5 {
  --transform-translate-x: -40% !important;
}
.-translate-x-3\/5 {
  --transform-translate-x: -60% !important;
}
.-translate-x-4\/5 {
  --transform-translate-x: -80% !important;
}
.-translate-x-1\/6 {
  --transform-translate-x: -16.66667% !important;
}
.-translate-x-2\/6 {
  --transform-translate-x: -33.33333% !important;
}
.-translate-x-3\/6 {
  --transform-translate-x: -50% !important;
}
.-translate-x-4\/6 {
  --transform-translate-x: -66.66667% !important;
}
.-translate-x-5\/6 {
  --transform-translate-x: -83.33333% !important;
}
.-translate-x-1\/12 {
  --transform-translate-x: -8.33333% !important;
}
.-translate-x-2\/12 {
  --transform-translate-x: -16.66667% !important;
}
.-translate-x-3\/12 {
  --transform-translate-x: -25% !important;
}
.-translate-x-4\/12 {
  --transform-translate-x: -33.33333% !important;
}
.-translate-x-5\/12 {
  --transform-translate-x: -41.66667% !important;
}
.-translate-x-6\/12 {
  --transform-translate-x: -50% !important;
}
.-translate-x-7\/12 {
  --transform-translate-x: -58.33333% !important;
}
.-translate-x-8\/12 {
  --transform-translate-x: -66.66667% !important;
}
.-translate-x-9\/12 {
  --transform-translate-x: -75% !important;
}
.-translate-x-10\/12 {
  --transform-translate-x: -83.33333% !important;
}
.-translate-x-11\/12 {
  --transform-translate-x: -91.66667% !important;
}
.-translate-x-full {
  --transform-translate-x: -100% !important;
}
.-translate-x-2px {
  --transform-translate-x: -2px !important;
}
.translate-y-0 {
  --transform-translate-y: 0 !important;
}
.translate-y-1 {
  --transform-translate-y: 0.25rem !important;
}
.translate-y-2 {
  --transform-translate-y: 0.5rem !important;
}
.translate-y-3 {
  --transform-translate-y: 0.75rem !important;
}
.translate-y-4 {
  --transform-translate-y: 1rem !important;
}
.translate-y-5 {
  --transform-translate-y: 1.25rem !important;
}
.translate-y-6 {
  --transform-translate-y: 1.5rem !important;
}
.translate-y-7 {
  --transform-translate-y: 1.75rem !important;
}
.translate-y-8 {
  --transform-translate-y: 2rem !important;
}
.translate-y-9 {
  --transform-translate-y: 2.25rem !important;
}
.translate-y-10 {
  --transform-translate-y: 2.5rem !important;
}
.translate-y-11 {
  --transform-translate-y: 2.75rem !important;
}
.translate-y-12 {
  --transform-translate-y: 3rem !important;
}
.translate-y-13 {
  --transform-translate-y: 3.25rem !important;
}
.translate-y-14 {
  --transform-translate-y: 3.5rem !important;
}
.translate-y-15 {
  --transform-translate-y: 3.75rem !important;
}
.translate-y-16 {
  --transform-translate-y: 4rem !important;
}
.translate-y-18 {
  --transform-translate-y: 4.5rem !important;
}
.translate-y-20 {
  --transform-translate-y: 5rem !important;
}
.translate-y-22 {
  --transform-translate-y: 5.5rem !important;
}
.translate-y-24 {
  --transform-translate-y: 6rem !important;
}
.translate-y-26 {
  --transform-translate-y: 6.5rem !important;
}
.translate-y-28 {
  --transform-translate-y: 7rem !important;
}
.translate-y-30 {
  --transform-translate-y: 7.5rem !important;
}
.translate-y-32 {
  --transform-translate-y: 8rem !important;
}
.translate-y-36 {
  --transform-translate-y: 9rem !important;
}
.translate-y-40 {
  --transform-translate-y: 10rem !important;
}
.translate-y-44 {
  --transform-translate-y: 11rem !important;
}
.translate-y-48 {
  --transform-translate-y: 12rem !important;
}
.translate-y-50 {
  --transform-translate-y: 12.5rem !important;
}
.translate-y-52 {
  --transform-translate-y: 13rem !important;
}
.translate-y-56 {
  --transform-translate-y: 14rem !important;
}
.translate-y-60 {
  --transform-translate-y: 15rem !important;
}
.translate-y-64 {
  --transform-translate-y: 16rem !important;
}
.translate-y-72 {
  --transform-translate-y: 18rem !important;
}
.translate-y-80 {
  --transform-translate-y: 20rem !important;
}
.translate-y-90 {
  --transform-translate-y: 24rem !important;
}
.translate-y-96 {
  --transform-translate-y: 24rem !important;
}
.translate-y-100 {
  --transform-translate-y: 25rem !important;
}
.translate-y-120 {
  --transform-translate-y: 30rem !important;
}
.translate-y-128 {
  --transform-translate-y: 32rem !important;
}
.translate-y-140 {
  --transform-translate-y: 35rem !important;
}
.translate-y-160 {
  --transform-translate-y: 40rem !important;
}
.translate-y-180 {
  --transform-translate-y: 45rem !important;
}
.translate-y-192 {
  --transform-translate-y: 48rem !important;
}
.translate-y-200 {
  --transform-translate-y: 50rem !important;
}
.translate-y-240 {
  --transform-translate-y: 60rem !important;
}
.translate-y-256 {
  --transform-translate-y: 64rem !important;
}
.translate-y-280 {
  --transform-translate-y: 70rem !important;
}
.translate-y-320 {
  --transform-translate-y: 80rem !important;
}
.translate-y-360 {
  --transform-translate-y: 90rem !important;
}
.translate-y-400 {
  --transform-translate-y: 100rem !important;
}
.translate-y-480 {
  --transform-translate-y: 120rem !important;
}
.translate-y-px {
  --transform-translate-y: 1px !important;
}
.translate-y-0\.5 {
  --transform-translate-y: 0.125rem !important;
}
.translate-y-1\.5 {
  --transform-translate-y: 0.375rem !important;
}
.translate-y-2\.5 {
  --transform-translate-y: 0.625rem !important;
}
.translate-y-3\.5 {
  --transform-translate-y: 0.875rem !important;
}
.translate-y-1\/2 {
  --transform-translate-y: 50% !important;
}
.translate-y-1\/3 {
  --transform-translate-y: 33.333333% !important;
}
.translate-y-2\/3 {
  --transform-translate-y: 66.666667% !important;
}
.translate-y-1\/4 {
  --transform-translate-y: 25% !important;
}
.translate-y-2\/4 {
  --transform-translate-y: 50% !important;
}
.translate-y-3\/4 {
  --transform-translate-y: 75% !important;
}
.translate-y-1\/5 {
  --transform-translate-y: 20% !important;
}
.translate-y-2\/5 {
  --transform-translate-y: 40% !important;
}
.translate-y-3\/5 {
  --transform-translate-y: 60% !important;
}
.translate-y-4\/5 {
  --transform-translate-y: 80% !important;
}
.translate-y-1\/6 {
  --transform-translate-y: 16.666667% !important;
}
.translate-y-2\/6 {
  --transform-translate-y: 33.333333% !important;
}
.translate-y-3\/6 {
  --transform-translate-y: 50% !important;
}
.translate-y-4\/6 {
  --transform-translate-y: 66.666667% !important;
}
.translate-y-5\/6 {
  --transform-translate-y: 83.333333% !important;
}
.translate-y-1\/12 {
  --transform-translate-y: 8.333333% !important;
}
.translate-y-2\/12 {
  --transform-translate-y: 16.666667% !important;
}
.translate-y-3\/12 {
  --transform-translate-y: 25% !important;
}
.translate-y-4\/12 {
  --transform-translate-y: 33.333333% !important;
}
.translate-y-5\/12 {
  --transform-translate-y: 41.666667% !important;
}
.translate-y-6\/12 {
  --transform-translate-y: 50% !important;
}
.translate-y-7\/12 {
  --transform-translate-y: 58.333333% !important;
}
.translate-y-8\/12 {
  --transform-translate-y: 66.666667% !important;
}
.translate-y-9\/12 {
  --transform-translate-y: 75% !important;
}
.translate-y-10\/12 {
  --transform-translate-y: 83.333333% !important;
}
.translate-y-11\/12 {
  --transform-translate-y: 91.666667% !important;
}
.translate-y-full {
  --transform-translate-y: 100% !important;
}
.translate-y-2px {
  --transform-translate-y: 2px !important;
}
.-translate-y-1 {
  --transform-translate-y: -0.25rem !important;
}
.-translate-y-2 {
  --transform-translate-y: -0.5rem !important;
}
.-translate-y-3 {
  --transform-translate-y: -0.75rem !important;
}
.-translate-y-4 {
  --transform-translate-y: -1rem !important;
}
.-translate-y-5 {
  --transform-translate-y: -1.25rem !important;
}
.-translate-y-6 {
  --transform-translate-y: -1.5rem !important;
}
.-translate-y-7 {
  --transform-translate-y: -1.75rem !important;
}
.-translate-y-8 {
  --transform-translate-y: -2rem !important;
}
.-translate-y-9 {
  --transform-translate-y: -2.25rem !important;
}
.-translate-y-10 {
  --transform-translate-y: -2.5rem !important;
}
.-translate-y-11 {
  --transform-translate-y: -2.75rem !important;
}
.-translate-y-12 {
  --transform-translate-y: -3rem !important;
}
.-translate-y-13 {
  --transform-translate-y: -3.25rem !important;
}
.-translate-y-14 {
  --transform-translate-y: -3.5rem !important;
}
.-translate-y-15 {
  --transform-translate-y: -3.75rem !important;
}
.-translate-y-16 {
  --transform-translate-y: -4rem !important;
}
.-translate-y-18 {
  --transform-translate-y: -4.5rem !important;
}
.-translate-y-20 {
  --transform-translate-y: -5rem !important;
}
.-translate-y-22 {
  --transform-translate-y: -5.5rem !important;
}
.-translate-y-24 {
  --transform-translate-y: -6rem !important;
}
.-translate-y-26 {
  --transform-translate-y: -6.5rem !important;
}
.-translate-y-28 {
  --transform-translate-y: -7rem !important;
}
.-translate-y-30 {
  --transform-translate-y: -7.5rem !important;
}
.-translate-y-32 {
  --transform-translate-y: -8rem !important;
}
.-translate-y-36 {
  --transform-translate-y: -9rem !important;
}
.-translate-y-40 {
  --transform-translate-y: -10rem !important;
}
.-translate-y-44 {
  --transform-translate-y: -11rem !important;
}
.-translate-y-48 {
  --transform-translate-y: -12rem !important;
}
.-translate-y-50 {
  --transform-translate-y: -12.5rem !important;
}
.-translate-y-52 {
  --transform-translate-y: -13rem !important;
}
.-translate-y-56 {
  --transform-translate-y: -14rem !important;
}
.-translate-y-60 {
  --transform-translate-y: -15rem !important;
}
.-translate-y-64 {
  --transform-translate-y: -16rem !important;
}
.-translate-y-72 {
  --transform-translate-y: -18rem !important;
}
.-translate-y-80 {
  --transform-translate-y: -20rem !important;
}
.-translate-y-90 {
  --transform-translate-y: -24rem !important;
}
.-translate-y-96 {
  --transform-translate-y: -24rem !important;
}
.-translate-y-100 {
  --transform-translate-y: -25rem !important;
}
.-translate-y-120 {
  --transform-translate-y: -30rem !important;
}
.-translate-y-128 {
  --transform-translate-y: -32rem !important;
}
.-translate-y-140 {
  --transform-translate-y: -35rem !important;
}
.-translate-y-160 {
  --transform-translate-y: -40rem !important;
}
.-translate-y-180 {
  --transform-translate-y: -45rem !important;
}
.-translate-y-192 {
  --transform-translate-y: -48rem !important;
}
.-translate-y-200 {
  --transform-translate-y: -50rem !important;
}
.-translate-y-240 {
  --transform-translate-y: -60rem !important;
}
.-translate-y-256 {
  --transform-translate-y: -64rem !important;
}
.-translate-y-280 {
  --transform-translate-y: -70rem !important;
}
.-translate-y-320 {
  --transform-translate-y: -80rem !important;
}
.-translate-y-360 {
  --transform-translate-y: -90rem !important;
}
.-translate-y-400 {
  --transform-translate-y: -100rem !important;
}
.-translate-y-480 {
  --transform-translate-y: -120rem !important;
}
.-translate-y-px {
  --transform-translate-y: -1px !important;
}
.-translate-y-0\.5 {
  --transform-translate-y: -0.125rem !important;
}
.-translate-y-1\.5 {
  --transform-translate-y: -0.375rem !important;
}
.-translate-y-2\.5 {
  --transform-translate-y: -0.625rem !important;
}
.-translate-y-3\.5 {
  --transform-translate-y: -0.875rem !important;
}
.-translate-y-1\/2 {
  --transform-translate-y: -50% !important;
}
.-translate-y-1\/3 {
  --transform-translate-y: -33.33333% !important;
}
.-translate-y-2\/3 {
  --transform-translate-y: -66.66667% !important;
}
.-translate-y-1\/4 {
  --transform-translate-y: -25% !important;
}
.-translate-y-2\/4 {
  --transform-translate-y: -50% !important;
}
.-translate-y-3\/4 {
  --transform-translate-y: -75% !important;
}
.-translate-y-1\/5 {
  --transform-translate-y: -20% !important;
}
.-translate-y-2\/5 {
  --transform-translate-y: -40% !important;
}
.-translate-y-3\/5 {
  --transform-translate-y: -60% !important;
}
.-translate-y-4\/5 {
  --transform-translate-y: -80% !important;
}
.-translate-y-1\/6 {
  --transform-translate-y: -16.66667% !important;
}
.-translate-y-2\/6 {
  --transform-translate-y: -33.33333% !important;
}
.-translate-y-3\/6 {
  --transform-translate-y: -50% !important;
}
.-translate-y-4\/6 {
  --transform-translate-y: -66.66667% !important;
}
.-translate-y-5\/6 {
  --transform-translate-y: -83.33333% !important;
}
.-translate-y-1\/12 {
  --transform-translate-y: -8.33333% !important;
}
.-translate-y-2\/12 {
  --transform-translate-y: -16.66667% !important;
}
.-translate-y-3\/12 {
  --transform-translate-y: -25% !important;
}
.-translate-y-4\/12 {
  --transform-translate-y: -33.33333% !important;
}
.-translate-y-5\/12 {
  --transform-translate-y: -41.66667% !important;
}
.-translate-y-6\/12 {
  --transform-translate-y: -50% !important;
}
.-translate-y-7\/12 {
  --transform-translate-y: -58.33333% !important;
}
.-translate-y-8\/12 {
  --transform-translate-y: -66.66667% !important;
}
.-translate-y-9\/12 {
  --transform-translate-y: -75% !important;
}
.-translate-y-10\/12 {
  --transform-translate-y: -83.33333% !important;
}
.-translate-y-11\/12 {
  --transform-translate-y: -91.66667% !important;
}
.-translate-y-full {
  --transform-translate-y: -100% !important;
}
.-translate-y-2px {
  --transform-translate-y: -2px !important;
}
.skew-x-0 {
  --transform-skew-x: 0 !important;
}
.skew-x-3 {
  --transform-skew-x: 3deg !important;
}
.skew-x-6 {
  --transform-skew-x: 6deg !important;
}
.skew-x-12 {
  --transform-skew-x: 12deg !important;
}
.-skew-x-12 {
  --transform-skew-x: -12deg !important;
}
.-skew-x-6 {
  --transform-skew-x: -6deg !important;
}
.-skew-x-3 {
  --transform-skew-x: -3deg !important;
}
.skew-y-0 {
  --transform-skew-y: 0 !important;
}
.skew-y-3 {
  --transform-skew-y: 3deg !important;
}
.skew-y-6 {
  --transform-skew-y: 6deg !important;
}
.skew-y-12 {
  --transform-skew-y: 12deg !important;
}
.-skew-y-12 {
  --transform-skew-y: -12deg !important;
}
.-skew-y-6 {
  --transform-skew-y: -6deg !important;
}
.-skew-y-3 {
  --transform-skew-y: -3deg !important;
}
.transition-none {
  transition-property: none !important;
}
.transition-all {
  transition-property: all !important;
}
.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
}
.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke !important;
}
.transition-opacity {
  transition-property: opacity !important;
}
.transition-shadow {
  transition-property: box-shadow !important;
}
.transition-transform {
  transition-property: transform !important;
}
.ease-linear {
  transition-timing-function: linear !important;
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.duration-75 {
  transition-duration: 75ms !important;
}
.duration-100 {
  transition-duration: 100ms !important;
}
.duration-150 {
  transition-duration: 150ms !important;
}
.duration-200 {
  transition-duration: 200ms !important;
}
.duration-300 {
  transition-duration: 300ms !important;
}
.duration-500 {
  transition-duration: 500ms !important;
}
.duration-700 {
  transition-duration: 700ms !important;
}
.duration-1000 {
  transition-duration: 1000ms !important;
}
.delay-75 {
  transition-delay: 75ms !important;
}
.delay-100 {
  transition-delay: 100ms !important;
}
.delay-150 {
  transition-delay: 150ms !important;
}
.delay-200 {
  transition-delay: 200ms !important;
}
.delay-300 {
  transition-delay: 300ms !important;
}
.delay-500 {
  transition-delay: 500ms !important;
}
.delay-700 {
  transition-delay: 700ms !important;
}
.delay-1000 {
  transition-delay: 1000ms !important;
}
@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.animate-none {
  -webkit-animation: none !important;
  animation: none !important;
}
.animate-spin {
  -webkit-animation: spin 1s linear infinite !important;
  animation: spin 1s linear infinite !important;
}
.animate-ping {
  -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}
.animate-pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}
.animate-bounce {
  -webkit-animation: bounce 1s infinite !important;
  animation: bounce 1s infinite !important;
}
.text-black-contrast {
  color: #FFFFFF !important;
}
.bg-black-contrast {
  background-color: #FFFFFF !important;
}
.text-white-contrast {
  color: #252F3F !important;
}
.bg-white-contrast {
  background-color: #252F3F !important;
}
.text-gray-50-contrast {
  color: #161E2E !important;
}
.bg-gray-50-contrast {
  background-color: #161E2E !important;
}
.text-gray-100-contrast {
  color: #161E2E !important;
}
.bg-gray-100-contrast {
  background-color: #161E2E !important;
}
.text-gray-200-contrast {
  color: #161E2E !important;
}
.bg-gray-200-contrast {
  background-color: #161E2E !important;
}
.text-gray-300-contrast {
  color: #161E2E !important;
}
.bg-gray-300-contrast {
  background-color: #161E2E !important;
}
.text-gray-400-contrast {
  color: #161E2E !important;
}
.bg-gray-400-contrast {
  background-color: #161E2E !important;
}
.text-gray-500-contrast {
  color: #161E2E !important;
}
.bg-gray-500-contrast {
  background-color: #161E2E !important;
}
.text-gray-600-contrast {
  color: #F9FAFB !important;
}
.bg-gray-600-contrast {
  background-color: #F9FAFB !important;
}
.text-gray-700-contrast {
  color: #F9FAFB !important;
}
.bg-gray-700-contrast {
  background-color: #F9FAFB !important;
}
.text-gray-800-contrast {
  color: #F9FAFB !important;
}
.bg-gray-800-contrast {
  background-color: #F9FAFB !important;
}
.text-gray-900-contrast {
  color: #F9FAFB !important;
}
.bg-gray-900-contrast {
  background-color: #F9FAFB !important;
}
.text-gray-contrast {
  color: #161E2E !important;
}
.bg-gray-contrast {
  background-color: #161E2E !important;
}
.text-cool-gray-50-contrast {
  color: #1A202E !important;
}
.bg-cool-gray-50-contrast {
  background-color: #1A202E !important;
}
.text-cool-gray-100-contrast {
  color: #1A202E !important;
}
.bg-cool-gray-100-contrast {
  background-color: #1A202E !important;
}
.text-cool-gray-200-contrast {
  color: #1A202E !important;
}
.bg-cool-gray-200-contrast {
  background-color: #1A202E !important;
}
.text-cool-gray-300-contrast {
  color: #1A202E !important;
}
.bg-cool-gray-300-contrast {
  background-color: #1A202E !important;
}
.text-cool-gray-400-contrast {
  color: #1A202E !important;
}
.bg-cool-gray-400-contrast {
  background-color: #1A202E !important;
}
.text-cool-gray-500-contrast {
  color: #1A202E !important;
}
.bg-cool-gray-500-contrast {
  background-color: #1A202E !important;
}
.text-cool-gray-600-contrast {
  color: #FBFDFE !important;
}
.bg-cool-gray-600-contrast {
  background-color: #FBFDFE !important;
}
.text-cool-gray-700-contrast {
  color: #FBFDFE !important;
}
.bg-cool-gray-700-contrast {
  background-color: #FBFDFE !important;
}
.text-cool-gray-800-contrast {
  color: #FBFDFE !important;
}
.bg-cool-gray-800-contrast {
  background-color: #FBFDFE !important;
}
.text-cool-gray-900-contrast {
  color: #FBFDFE !important;
}
.bg-cool-gray-900-contrast {
  background-color: #FBFDFE !important;
}
.text-cool-gray-contrast {
  color: #1A202E !important;
}
.bg-cool-gray-contrast {
  background-color: #1A202E !important;
}
.text-red-50-contrast {
  color: #771D1D !important;
}
.bg-red-50-contrast {
  background-color: #771D1D !important;
}
.text-red-100-contrast {
  color: #771D1D !important;
}
.bg-red-100-contrast {
  background-color: #771D1D !important;
}
.text-red-200-contrast {
  color: #771D1D !important;
}
.bg-red-200-contrast {
  background-color: #771D1D !important;
}
.text-red-300-contrast {
  color: #771D1D !important;
}
.bg-red-300-contrast {
  background-color: #771D1D !important;
}
.text-red-400-contrast {
  color: #771D1D !important;
}
.bg-red-400-contrast {
  background-color: #771D1D !important;
}
.text-red-500-contrast {
  color: #771D1D !important;
}
.bg-red-500-contrast {
  background-color: #771D1D !important;
}
.text-red-600-contrast {
  color: #FDF2F2 !important;
}
.bg-red-600-contrast {
  background-color: #FDF2F2 !important;
}
.text-red-700-contrast {
  color: #FDF2F2 !important;
}
.bg-red-700-contrast {
  background-color: #FDF2F2 !important;
}
.text-red-800-contrast {
  color: #FDF2F2 !important;
}
.bg-red-800-contrast {
  background-color: #FDF2F2 !important;
}
.text-red-900-contrast {
  color: #FDF2F2 !important;
}
.bg-red-900-contrast {
  background-color: #FDF2F2 !important;
}
.text-red-contrast {
  color: #771D1D !important;
}
.bg-red-contrast {
  background-color: #771D1D !important;
}
.text-orange-50-contrast {
  color: #771D1D !important;
}
.bg-orange-50-contrast {
  background-color: #771D1D !important;
}
.text-orange-100-contrast {
  color: #771D1D !important;
}
.bg-orange-100-contrast {
  background-color: #771D1D !important;
}
.text-orange-200-contrast {
  color: #771D1D !important;
}
.bg-orange-200-contrast {
  background-color: #771D1D !important;
}
.text-orange-300-contrast {
  color: #771D1D !important;
}
.bg-orange-300-contrast {
  background-color: #771D1D !important;
}
.text-orange-400-contrast {
  color: #771D1D !important;
}
.bg-orange-400-contrast {
  background-color: #771D1D !important;
}
.text-orange-500-contrast {
  color: #771D1D !important;
}
.bg-orange-500-contrast {
  background-color: #771D1D !important;
}
.text-orange-600-contrast {
  color: #FFF8F1 !important;
}
.bg-orange-600-contrast {
  background-color: #FFF8F1 !important;
}
.text-orange-700-contrast {
  color: #FFF8F1 !important;
}
.bg-orange-700-contrast {
  background-color: #FFF8F1 !important;
}
.text-orange-800-contrast {
  color: #FFF8F1 !important;
}
.bg-orange-800-contrast {
  background-color: #FFF8F1 !important;
}
.text-orange-900-contrast {
  color: #FFF8F1 !important;
}
.bg-orange-900-contrast {
  background-color: #FFF8F1 !important;
}
.text-orange-contrast {
  color: #771D1D !important;
}
.bg-orange-contrast {
  background-color: #771D1D !important;
}
.text-yellow-50-contrast {
  color: #633112 !important;
}
.bg-yellow-50-contrast {
  background-color: #633112 !important;
}
.text-yellow-100-contrast {
  color: #633112 !important;
}
.bg-yellow-100-contrast {
  background-color: #633112 !important;
}
.text-yellow-200-contrast {
  color: #633112 !important;
}
.bg-yellow-200-contrast {
  background-color: #633112 !important;
}
.text-yellow-300-contrast {
  color: #633112 !important;
}
.bg-yellow-300-contrast {
  background-color: #633112 !important;
}
.text-yellow-400-contrast {
  color: #633112 !important;
}
.bg-yellow-400-contrast {
  background-color: #633112 !important;
}
.text-yellow-500-contrast {
  color: #633112 !important;
}
.bg-yellow-500-contrast {
  background-color: #633112 !important;
}
.text-yellow-600-contrast {
  color: #FDFDEA !important;
}
.bg-yellow-600-contrast {
  background-color: #FDFDEA !important;
}
.text-yellow-700-contrast {
  color: #FDFDEA !important;
}
.bg-yellow-700-contrast {
  background-color: #FDFDEA !important;
}
.text-yellow-800-contrast {
  color: #FDFDEA !important;
}
.bg-yellow-800-contrast {
  background-color: #FDFDEA !important;
}
.text-yellow-900-contrast {
  color: #FDFDEA !important;
}
.bg-yellow-900-contrast {
  background-color: #FDFDEA !important;
}
.text-yellow-contrast {
  color: #633112 !important;
}
.bg-yellow-contrast {
  background-color: #633112 !important;
}
.text-green-50-contrast {
  color: #014737 !important;
}
.bg-green-50-contrast {
  background-color: #014737 !important;
}
.text-green-100-contrast {
  color: #014737 !important;
}
.bg-green-100-contrast {
  background-color: #014737 !important;
}
.text-green-200-contrast {
  color: #014737 !important;
}
.bg-green-200-contrast {
  background-color: #014737 !important;
}
.text-green-300-contrast {
  color: #014737 !important;
}
.bg-green-300-contrast {
  background-color: #014737 !important;
}
.text-green-400-contrast {
  color: #014737 !important;
}
.bg-green-400-contrast {
  background-color: #014737 !important;
}
.text-green-500-contrast {
  color: #F3FAF7 !important;
}
.bg-green-500-contrast {
  background-color: #F3FAF7 !important;
}
.text-green-600-contrast {
  color: #F3FAF7 !important;
}
.bg-green-600-contrast {
  background-color: #F3FAF7 !important;
}
.text-green-700-contrast {
  color: #F3FAF7 !important;
}
.bg-green-700-contrast {
  background-color: #F3FAF7 !important;
}
.text-green-800-contrast {
  color: #F3FAF7 !important;
}
.bg-green-800-contrast {
  background-color: #F3FAF7 !important;
}
.text-green-900-contrast {
  color: #F3FAF7 !important;
}
.bg-green-900-contrast {
  background-color: #F3FAF7 !important;
}
.text-green-contrast {
  color: #F3FAF7 !important;
}
.bg-green-contrast {
  background-color: #F3FAF7 !important;
}
.text-teal-50-contrast {
  color: #014451 !important;
}
.bg-teal-50-contrast {
  background-color: #014451 !important;
}
.text-teal-100-contrast {
  color: #014451 !important;
}
.bg-teal-100-contrast {
  background-color: #014451 !important;
}
.text-teal-200-contrast {
  color: #014451 !important;
}
.bg-teal-200-contrast {
  background-color: #014451 !important;
}
.text-teal-300-contrast {
  color: #014451 !important;
}
.bg-teal-300-contrast {
  background-color: #014451 !important;
}
.text-teal-400-contrast {
  color: #014451 !important;
}
.bg-teal-400-contrast {
  background-color: #014451 !important;
}
.text-teal-500-contrast {
  color: #EDFAFA !important;
}
.bg-teal-500-contrast {
  background-color: #EDFAFA !important;
}
.text-teal-600-contrast {
  color: #EDFAFA !important;
}
.bg-teal-600-contrast {
  background-color: #EDFAFA !important;
}
.text-teal-700-contrast {
  color: #EDFAFA !important;
}
.bg-teal-700-contrast {
  background-color: #EDFAFA !important;
}
.text-teal-800-contrast {
  color: #EDFAFA !important;
}
.bg-teal-800-contrast {
  background-color: #EDFAFA !important;
}
.text-teal-900-contrast {
  color: #EDFAFA !important;
}
.bg-teal-900-contrast {
  background-color: #EDFAFA !important;
}
.text-teal-contrast {
  color: #EDFAFA !important;
}
.bg-teal-contrast {
  background-color: #EDFAFA !important;
}
.text-blue-50-contrast {
  color: #233876 !important;
}
.bg-blue-50-contrast {
  background-color: #233876 !important;
}
.text-blue-100-contrast {
  color: #233876 !important;
}
.bg-blue-100-contrast {
  background-color: #233876 !important;
}
.text-blue-200-contrast {
  color: #233876 !important;
}
.bg-blue-200-contrast {
  background-color: #233876 !important;
}
.text-blue-300-contrast {
  color: #233876 !important;
}
.bg-blue-300-contrast {
  background-color: #233876 !important;
}
.text-blue-400-contrast {
  color: #233876 !important;
}
.bg-blue-400-contrast {
  background-color: #233876 !important;
}
.text-blue-500-contrast {
  color: #EBF5FF !important;
}
.bg-blue-500-contrast {
  background-color: #EBF5FF !important;
}
.text-blue-600-contrast {
  color: #EBF5FF !important;
}
.bg-blue-600-contrast {
  background-color: #EBF5FF !important;
}
.text-blue-700-contrast {
  color: #EBF5FF !important;
}
.bg-blue-700-contrast {
  background-color: #EBF5FF !important;
}
.text-blue-800-contrast {
  color: #EBF5FF !important;
}
.bg-blue-800-contrast {
  background-color: #EBF5FF !important;
}
.text-blue-900-contrast {
  color: #EBF5FF !important;
}
.bg-blue-900-contrast {
  background-color: #EBF5FF !important;
}
.text-blue-contrast {
  color: #EBF5FF !important;
}
.bg-blue-contrast {
  background-color: #EBF5FF !important;
}
.text-indigo-50-contrast {
  color: #362F78 !important;
}
.bg-indigo-50-contrast {
  background-color: #362F78 !important;
}
.text-indigo-100-contrast {
  color: #362F78 !important;
}
.bg-indigo-100-contrast {
  background-color: #362F78 !important;
}
.text-indigo-200-contrast {
  color: #362F78 !important;
}
.bg-indigo-200-contrast {
  background-color: #362F78 !important;
}
.text-indigo-300-contrast {
  color: #362F78 !important;
}
.bg-indigo-300-contrast {
  background-color: #362F78 !important;
}
.text-indigo-400-contrast {
  color: #362F78 !important;
}
.bg-indigo-400-contrast {
  background-color: #362F78 !important;
}
.text-indigo-500-contrast {
  color: #F0F5FF !important;
}
.bg-indigo-500-contrast {
  background-color: #F0F5FF !important;
}
.text-indigo-600-contrast {
  color: #F0F5FF !important;
}
.bg-indigo-600-contrast {
  background-color: #F0F5FF !important;
}
.text-indigo-700-contrast {
  color: #F0F5FF !important;
}
.bg-indigo-700-contrast {
  background-color: #F0F5FF !important;
}
.text-indigo-800-contrast {
  color: #F0F5FF !important;
}
.bg-indigo-800-contrast {
  background-color: #F0F5FF !important;
}
.text-indigo-900-contrast {
  color: #F0F5FF !important;
}
.bg-indigo-900-contrast {
  background-color: #F0F5FF !important;
}
.text-indigo-contrast {
  color: #F0F5FF !important;
}
.bg-indigo-contrast {
  background-color: #F0F5FF !important;
}
.text-purple-50-contrast {
  color: #4A1D96 !important;
}
.bg-purple-50-contrast {
  background-color: #4A1D96 !important;
}
.text-purple-100-contrast {
  color: #4A1D96 !important;
}
.bg-purple-100-contrast {
  background-color: #4A1D96 !important;
}
.text-purple-200-contrast {
  color: #4A1D96 !important;
}
.bg-purple-200-contrast {
  background-color: #4A1D96 !important;
}
.text-purple-300-contrast {
  color: #4A1D96 !important;
}
.bg-purple-300-contrast {
  background-color: #4A1D96 !important;
}
.text-purple-400-contrast {
  color: #4A1D96 !important;
}
.bg-purple-400-contrast {
  background-color: #4A1D96 !important;
}
.text-purple-500-contrast {
  color: #F6F5FF !important;
}
.bg-purple-500-contrast {
  background-color: #F6F5FF !important;
}
.text-purple-600-contrast {
  color: #F6F5FF !important;
}
.bg-purple-600-contrast {
  background-color: #F6F5FF !important;
}
.text-purple-700-contrast {
  color: #F6F5FF !important;
}
.bg-purple-700-contrast {
  background-color: #F6F5FF !important;
}
.text-purple-800-contrast {
  color: #F6F5FF !important;
}
.bg-purple-800-contrast {
  background-color: #F6F5FF !important;
}
.text-purple-900-contrast {
  color: #F6F5FF !important;
}
.bg-purple-900-contrast {
  background-color: #F6F5FF !important;
}
.text-purple-contrast {
  color: #F6F5FF !important;
}
.bg-purple-contrast {
  background-color: #F6F5FF !important;
}
.text-pink-50-contrast {
  color: #751A3D !important;
}
.bg-pink-50-contrast {
  background-color: #751A3D !important;
}
.text-pink-100-contrast {
  color: #751A3D !important;
}
.bg-pink-100-contrast {
  background-color: #751A3D !important;
}
.text-pink-200-contrast {
  color: #751A3D !important;
}
.bg-pink-200-contrast {
  background-color: #751A3D !important;
}
.text-pink-300-contrast {
  color: #751A3D !important;
}
.bg-pink-300-contrast {
  background-color: #751A3D !important;
}
.text-pink-400-contrast {
  color: #751A3D !important;
}
.bg-pink-400-contrast {
  background-color: #751A3D !important;
}
.text-pink-500-contrast {
  color: #FDF2F8 !important;
}
.bg-pink-500-contrast {
  background-color: #FDF2F8 !important;
}
.text-pink-600-contrast {
  color: #FDF2F8 !important;
}
.bg-pink-600-contrast {
  background-color: #FDF2F8 !important;
}
.text-pink-700-contrast {
  color: #FDF2F8 !important;
}
.bg-pink-700-contrast {
  background-color: #FDF2F8 !important;
}
.text-pink-800-contrast {
  color: #FDF2F8 !important;
}
.bg-pink-800-contrast {
  background-color: #FDF2F8 !important;
}
.text-pink-900-contrast {
  color: #FDF2F8 !important;
}
.bg-pink-900-contrast {
  background-color: #FDF2F8 !important;
}
.text-pink-contrast {
  color: #FDF2F8 !important;
}
.bg-pink-contrast {
  background-color: #FDF2F8 !important;
}
.white {
  background-color: #FFFFFF !important;
  color: #252F3F !important;
}
.white.mat-icon, .white .mat-icon {
  color: #252F3F !important;
}
.white.text-secondary, .white .text-secondary {
  color: rgba(37, 47, 63, 0.7) !important;
}
.white.text-hint, .white .text-hint, .white.text-disabled, .white .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.white.divider, .white .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.text-white.text-secondary, .text-white .text-secondary {
  color: rgba(255, 255, 255, 0.7) !important;
}
.text-white.text-hint, .text-white .text-hint, .text-white.text-disabled, .text-white .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.text-white.divider, .text-white .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.black {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}
.black.mat-icon, .black .mat-icon {
  color: #FFFFFF !important;
}
.black.text-secondary, .black .text-secondary {
  color: rgba(255, 255, 255, 0.7) !important;
}
.black.text-hint, .black .text-hint, .black.text-disabled, .black .text-disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
.black.divider, .black .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.text-black.text-secondary, .text-black .text-secondary {
  color: rgba(0, 0, 0, 0.7) !important;
}
.text-black.text-hint, .text-black .text-hint, .text-black.text-disabled, .text-black .text-disabled {
  color: rgba(0, 0, 0, 0.38) !important;
}
.text-black.divider, .text-black .divider {
  color: rgba(0, 0, 0, 0.12) !important;
}
.gray-50 {
  background-color: #F9FAFB !important;
  color: #161E2E !important;
}
.gray-50.mat-icon, .gray-50 .mat-icon {
  color: #161E2E !important;
}
.gray-50.text-secondary, .gray-50 .text-secondary {
  color: rgba(22, 30, 46, 0.7) !important;
}
.gray-50.text-hint, .gray-50 .text-hint, .gray-50.text-disabled, .gray-50 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.gray-50.divider, .gray-50 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.text-gray-50.text-secondary, .text-gray-50 .text-secondary {
  color: rgba(249, 250, 251, 0.7) !important;
}
.text-gray-50.text-hint, .text-gray-50 .text-hint, .text-gray-50.text-disabled, .text-gray-50 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.text-gray-50.divider, .text-gray-50 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.gray-100 {
  background-color: #F4F5F7 !important;
  color: #161E2E !important;
}
.gray-100.mat-icon, .gray-100 .mat-icon {
  color: #161E2E !important;
}
.gray-100.text-secondary, .gray-100 .text-secondary {
  color: rgba(22, 30, 46, 0.7) !important;
}
.gray-100.text-hint, .gray-100 .text-hint, .gray-100.text-disabled, .gray-100 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.gray-100.divider, .gray-100 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.text-gray-100.text-secondary, .text-gray-100 .text-secondary {
  color: rgba(244, 245, 247, 0.7) !important;
}
.text-gray-100.text-hint, .text-gray-100 .text-hint, .text-gray-100.text-disabled, .text-gray-100 .text-disabled {
  color: rgba(244, 245, 247, 0.38) !important;
}
.text-gray-100.divider, .text-gray-100 .divider {
  color: rgba(244, 245, 247, 0.12) !important;
}
.gray-200 {
  background-color: #E5E7EB !important;
  color: #161E2E !important;
}
.gray-200.mat-icon, .gray-200 .mat-icon {
  color: #161E2E !important;
}
.gray-200.text-secondary, .gray-200 .text-secondary {
  color: rgba(22, 30, 46, 0.7) !important;
}
.gray-200.text-hint, .gray-200 .text-hint, .gray-200.text-disabled, .gray-200 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.gray-200.divider, .gray-200 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.text-gray-200.text-secondary, .text-gray-200 .text-secondary {
  color: rgba(229, 231, 235, 0.7) !important;
}
.text-gray-200.text-hint, .text-gray-200 .text-hint, .text-gray-200.text-disabled, .text-gray-200 .text-disabled {
  color: rgba(229, 231, 235, 0.38) !important;
}
.text-gray-200.divider, .text-gray-200 .divider {
  color: rgba(229, 231, 235, 0.12) !important;
}
.gray-300 {
  background-color: #D2D6DC !important;
  color: #161E2E !important;
}
.gray-300.mat-icon, .gray-300 .mat-icon {
  color: #161E2E !important;
}
.gray-300.text-secondary, .gray-300 .text-secondary {
  color: rgba(22, 30, 46, 0.7) !important;
}
.gray-300.text-hint, .gray-300 .text-hint, .gray-300.text-disabled, .gray-300 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.gray-300.divider, .gray-300 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.text-gray-300.text-secondary, .text-gray-300 .text-secondary {
  color: rgba(210, 214, 220, 0.7) !important;
}
.text-gray-300.text-hint, .text-gray-300 .text-hint, .text-gray-300.text-disabled, .text-gray-300 .text-disabled {
  color: rgba(210, 214, 220, 0.38) !important;
}
.text-gray-300.divider, .text-gray-300 .divider {
  color: rgba(210, 214, 220, 0.12) !important;
}
.gray-400 {
  background-color: #9FA6B2 !important;
  color: #161E2E !important;
}
.gray-400.mat-icon, .gray-400 .mat-icon {
  color: #161E2E !important;
}
.gray-400.text-secondary, .gray-400 .text-secondary {
  color: rgba(22, 30, 46, 0.7) !important;
}
.gray-400.text-hint, .gray-400 .text-hint, .gray-400.text-disabled, .gray-400 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.gray-400.divider, .gray-400 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.text-gray-400.text-secondary, .text-gray-400 .text-secondary {
  color: rgba(159, 166, 178, 0.7) !important;
}
.text-gray-400.text-hint, .text-gray-400 .text-hint, .text-gray-400.text-disabled, .text-gray-400 .text-disabled {
  color: rgba(159, 166, 178, 0.38) !important;
}
.text-gray-400.divider, .text-gray-400 .divider {
  color: rgba(159, 166, 178, 0.12) !important;
}
.gray-500 {
  background-color: #6B7280 !important;
  color: #161E2E !important;
}
.gray-500.mat-icon, .gray-500 .mat-icon {
  color: #161E2E !important;
}
.gray-500.text-secondary, .gray-500 .text-secondary {
  color: rgba(22, 30, 46, 0.7) !important;
}
.gray-500.text-hint, .gray-500 .text-hint, .gray-500.text-disabled, .gray-500 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.gray-500.divider, .gray-500 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.text-gray-500.text-secondary, .text-gray-500 .text-secondary {
  color: rgba(107, 114, 128, 0.7) !important;
}
.text-gray-500.text-hint, .text-gray-500 .text-hint, .text-gray-500.text-disabled, .text-gray-500 .text-disabled {
  color: rgba(107, 114, 128, 0.38) !important;
}
.text-gray-500.divider, .text-gray-500 .divider {
  color: rgba(107, 114, 128, 0.12) !important;
}
.gray-600 {
  background-color: #4B5563 !important;
  color: #F9FAFB !important;
}
.gray-600.mat-icon, .gray-600 .mat-icon {
  color: #F9FAFB !important;
}
.gray-600.text-secondary, .gray-600 .text-secondary {
  color: rgba(249, 250, 251, 0.7) !important;
}
.gray-600.text-hint, .gray-600 .text-hint, .gray-600.text-disabled, .gray-600 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.gray-600.divider, .gray-600 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.text-gray-600.text-secondary, .text-gray-600 .text-secondary {
  color: rgba(75, 85, 99, 0.7) !important;
}
.text-gray-600.text-hint, .text-gray-600 .text-hint, .text-gray-600.text-disabled, .text-gray-600 .text-disabled {
  color: rgba(75, 85, 99, 0.38) !important;
}
.text-gray-600.divider, .text-gray-600 .divider {
  color: rgba(75, 85, 99, 0.12) !important;
}
.gray-700 {
  background-color: #374151 !important;
  color: #F9FAFB !important;
}
.gray-700.mat-icon, .gray-700 .mat-icon {
  color: #F9FAFB !important;
}
.gray-700.text-secondary, .gray-700 .text-secondary {
  color: rgba(249, 250, 251, 0.7) !important;
}
.gray-700.text-hint, .gray-700 .text-hint, .gray-700.text-disabled, .gray-700 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.gray-700.divider, .gray-700 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.text-gray-700.text-secondary, .text-gray-700 .text-secondary {
  color: rgba(55, 65, 81, 0.7) !important;
}
.text-gray-700.text-hint, .text-gray-700 .text-hint, .text-gray-700.text-disabled, .text-gray-700 .text-disabled {
  color: rgba(55, 65, 81, 0.38) !important;
}
.text-gray-700.divider, .text-gray-700 .divider {
  color: rgba(55, 65, 81, 0.12) !important;
}
.gray-800 {
  background-color: #252F3F !important;
  color: #F9FAFB !important;
}
.gray-800.mat-icon, .gray-800 .mat-icon {
  color: #F9FAFB !important;
}
.gray-800.text-secondary, .gray-800 .text-secondary {
  color: rgba(249, 250, 251, 0.7) !important;
}
.gray-800.text-hint, .gray-800 .text-hint, .gray-800.text-disabled, .gray-800 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.gray-800.divider, .gray-800 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.text-gray-800.text-secondary, .text-gray-800 .text-secondary {
  color: rgba(37, 47, 63, 0.7) !important;
}
.text-gray-800.text-hint, .text-gray-800 .text-hint, .text-gray-800.text-disabled, .text-gray-800 .text-disabled {
  color: rgba(37, 47, 63, 0.38) !important;
}
.text-gray-800.divider, .text-gray-800 .divider {
  color: rgba(37, 47, 63, 0.12) !important;
}
.gray-900 {
  background-color: #161E2E !important;
  color: #F9FAFB !important;
}
.gray-900.mat-icon, .gray-900 .mat-icon {
  color: #F9FAFB !important;
}
.gray-900.text-secondary, .gray-900 .text-secondary {
  color: rgba(249, 250, 251, 0.7) !important;
}
.gray-900.text-hint, .gray-900 .text-hint, .gray-900.text-disabled, .gray-900 .text-disabled {
  color: rgba(249, 250, 251, 0.38) !important;
}
.gray-900.divider, .gray-900 .divider {
  color: rgba(249, 250, 251, 0.12) !important;
}
.text-gray-900.text-secondary, .text-gray-900 .text-secondary {
  color: rgba(22, 30, 46, 0.7) !important;
}
.text-gray-900.text-hint, .text-gray-900 .text-hint, .text-gray-900.text-disabled, .text-gray-900 .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.text-gray-900.divider, .text-gray-900 .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.gray {
  background-color: #6B7280 !important;
  color: #161E2E !important;
}
.gray.mat-icon, .gray .mat-icon {
  color: #161E2E !important;
}
.gray.text-secondary, .gray .text-secondary {
  color: rgba(22, 30, 46, 0.7) !important;
}
.gray.text-hint, .gray .text-hint, .gray.text-disabled, .gray .text-disabled {
  color: rgba(22, 30, 46, 0.38) !important;
}
.gray.divider, .gray .divider {
  color: rgba(22, 30, 46, 0.12) !important;
}
.text-gray.text-secondary, .text-gray .text-secondary {
  color: rgba(107, 114, 128, 0.7) !important;
}
.text-gray.text-hint, .text-gray .text-hint, .text-gray.text-disabled, .text-gray .text-disabled {
  color: rgba(107, 114, 128, 0.38) !important;
}
.text-gray.divider, .text-gray .divider {
  color: rgba(107, 114, 128, 0.12) !important;
}
.cool-gray-50 {
  background-color: #FBFDFE !important;
  color: #1A202E !important;
}
.cool-gray-50.mat-icon, .cool-gray-50 .mat-icon {
  color: #1A202E !important;
}
.cool-gray-50.text-secondary, .cool-gray-50 .text-secondary {
  color: rgba(26, 32, 46, 0.7) !important;
}
.cool-gray-50.text-hint, .cool-gray-50 .text-hint, .cool-gray-50.text-disabled, .cool-gray-50 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.cool-gray-50.divider, .cool-gray-50 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.text-cool-gray-50.text-secondary, .text-cool-gray-50 .text-secondary {
  color: rgba(251, 253, 254, 0.7) !important;
}
.text-cool-gray-50.text-hint, .text-cool-gray-50 .text-hint, .text-cool-gray-50.text-disabled, .text-cool-gray-50 .text-disabled {
  color: rgba(251, 253, 254, 0.38) !important;
}
.text-cool-gray-50.divider, .text-cool-gray-50 .divider {
  color: rgba(251, 253, 254, 0.12) !important;
}
.cool-gray-100 {
  background-color: #F1F5F9 !important;
  color: #1A202E !important;
}
.cool-gray-100.mat-icon, .cool-gray-100 .mat-icon {
  color: #1A202E !important;
}
.cool-gray-100.text-secondary, .cool-gray-100 .text-secondary {
  color: rgba(26, 32, 46, 0.7) !important;
}
.cool-gray-100.text-hint, .cool-gray-100 .text-hint, .cool-gray-100.text-disabled, .cool-gray-100 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.cool-gray-100.divider, .cool-gray-100 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.text-cool-gray-100.text-secondary, .text-cool-gray-100 .text-secondary {
  color: rgba(241, 245, 249, 0.7) !important;
}
.text-cool-gray-100.text-hint, .text-cool-gray-100 .text-hint, .text-cool-gray-100.text-disabled, .text-cool-gray-100 .text-disabled {
  color: rgba(241, 245, 249, 0.38) !important;
}
.text-cool-gray-100.divider, .text-cool-gray-100 .divider {
  color: rgba(241, 245, 249, 0.12) !important;
}
.cool-gray-200 {
  background-color: #E2E8F0 !important;
  color: #1A202E !important;
}
.cool-gray-200.mat-icon, .cool-gray-200 .mat-icon {
  color: #1A202E !important;
}
.cool-gray-200.text-secondary, .cool-gray-200 .text-secondary {
  color: rgba(26, 32, 46, 0.7) !important;
}
.cool-gray-200.text-hint, .cool-gray-200 .text-hint, .cool-gray-200.text-disabled, .cool-gray-200 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.cool-gray-200.divider, .cool-gray-200 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.text-cool-gray-200.text-secondary, .text-cool-gray-200 .text-secondary {
  color: rgba(226, 232, 240, 0.7) !important;
}
.text-cool-gray-200.text-hint, .text-cool-gray-200 .text-hint, .text-cool-gray-200.text-disabled, .text-cool-gray-200 .text-disabled {
  color: rgba(226, 232, 240, 0.38) !important;
}
.text-cool-gray-200.divider, .text-cool-gray-200 .divider {
  color: rgba(226, 232, 240, 0.12) !important;
}
.cool-gray-300 {
  background-color: #CFD8E3 !important;
  color: #1A202E !important;
}
.cool-gray-300.mat-icon, .cool-gray-300 .mat-icon {
  color: #1A202E !important;
}
.cool-gray-300.text-secondary, .cool-gray-300 .text-secondary {
  color: rgba(26, 32, 46, 0.7) !important;
}
.cool-gray-300.text-hint, .cool-gray-300 .text-hint, .cool-gray-300.text-disabled, .cool-gray-300 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.cool-gray-300.divider, .cool-gray-300 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.text-cool-gray-300.text-secondary, .text-cool-gray-300 .text-secondary {
  color: rgba(207, 216, 227, 0.7) !important;
}
.text-cool-gray-300.text-hint, .text-cool-gray-300 .text-hint, .text-cool-gray-300.text-disabled, .text-cool-gray-300 .text-disabled {
  color: rgba(207, 216, 227, 0.38) !important;
}
.text-cool-gray-300.divider, .text-cool-gray-300 .divider {
  color: rgba(207, 216, 227, 0.12) !important;
}
.cool-gray-400 {
  background-color: #97A6BA !important;
  color: #1A202E !important;
}
.cool-gray-400.mat-icon, .cool-gray-400 .mat-icon {
  color: #1A202E !important;
}
.cool-gray-400.text-secondary, .cool-gray-400 .text-secondary {
  color: rgba(26, 32, 46, 0.7) !important;
}
.cool-gray-400.text-hint, .cool-gray-400 .text-hint, .cool-gray-400.text-disabled, .cool-gray-400 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.cool-gray-400.divider, .cool-gray-400 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.text-cool-gray-400.text-secondary, .text-cool-gray-400 .text-secondary {
  color: rgba(151, 166, 186, 0.7) !important;
}
.text-cool-gray-400.text-hint, .text-cool-gray-400 .text-hint, .text-cool-gray-400.text-disabled, .text-cool-gray-400 .text-disabled {
  color: rgba(151, 166, 186, 0.38) !important;
}
.text-cool-gray-400.divider, .text-cool-gray-400 .divider {
  color: rgba(151, 166, 186, 0.12) !important;
}
.cool-gray-500 {
  background-color: #64748B !important;
  color: #1A202E !important;
}
.cool-gray-500.mat-icon, .cool-gray-500 .mat-icon {
  color: #1A202E !important;
}
.cool-gray-500.text-secondary, .cool-gray-500 .text-secondary {
  color: rgba(26, 32, 46, 0.7) !important;
}
.cool-gray-500.text-hint, .cool-gray-500 .text-hint, .cool-gray-500.text-disabled, .cool-gray-500 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.cool-gray-500.divider, .cool-gray-500 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.text-cool-gray-500.text-secondary, .text-cool-gray-500 .text-secondary {
  color: rgba(100, 116, 139, 0.7) !important;
}
.text-cool-gray-500.text-hint, .text-cool-gray-500 .text-hint, .text-cool-gray-500.text-disabled, .text-cool-gray-500 .text-disabled {
  color: rgba(100, 116, 139, 0.38) !important;
}
.text-cool-gray-500.divider, .text-cool-gray-500 .divider {
  color: rgba(100, 116, 139, 0.12) !important;
}
.cool-gray-600 {
  background-color: #475569 !important;
  color: #FBFDFE !important;
}
.cool-gray-600.mat-icon, .cool-gray-600 .mat-icon {
  color: #FBFDFE !important;
}
.cool-gray-600.text-secondary, .cool-gray-600 .text-secondary {
  color: rgba(251, 253, 254, 0.7) !important;
}
.cool-gray-600.text-hint, .cool-gray-600 .text-hint, .cool-gray-600.text-disabled, .cool-gray-600 .text-disabled {
  color: rgba(251, 253, 254, 0.38) !important;
}
.cool-gray-600.divider, .cool-gray-600 .divider {
  color: rgba(251, 253, 254, 0.12) !important;
}
.text-cool-gray-600.text-secondary, .text-cool-gray-600 .text-secondary {
  color: rgba(71, 85, 105, 0.7) !important;
}
.text-cool-gray-600.text-hint, .text-cool-gray-600 .text-hint, .text-cool-gray-600.text-disabled, .text-cool-gray-600 .text-disabled {
  color: rgba(71, 85, 105, 0.38) !important;
}
.text-cool-gray-600.divider, .text-cool-gray-600 .divider {
  color: rgba(71, 85, 105, 0.12) !important;
}
.cool-gray-700 {
  background-color: #364152 !important;
  color: #FBFDFE !important;
}
.cool-gray-700.mat-icon, .cool-gray-700 .mat-icon {
  color: #FBFDFE !important;
}
.cool-gray-700.text-secondary, .cool-gray-700 .text-secondary {
  color: rgba(251, 253, 254, 0.7) !important;
}
.cool-gray-700.text-hint, .cool-gray-700 .text-hint, .cool-gray-700.text-disabled, .cool-gray-700 .text-disabled {
  color: rgba(251, 253, 254, 0.38) !important;
}
.cool-gray-700.divider, .cool-gray-700 .divider {
  color: rgba(251, 253, 254, 0.12) !important;
}
.text-cool-gray-700.text-secondary, .text-cool-gray-700 .text-secondary {
  color: rgba(54, 65, 82, 0.7) !important;
}
.text-cool-gray-700.text-hint, .text-cool-gray-700 .text-hint, .text-cool-gray-700.text-disabled, .text-cool-gray-700 .text-disabled {
  color: rgba(54, 65, 82, 0.38) !important;
}
.text-cool-gray-700.divider, .text-cool-gray-700 .divider {
  color: rgba(54, 65, 82, 0.12) !important;
}
.cool-gray-800 {
  background-color: #27303F !important;
  color: #FBFDFE !important;
}
.cool-gray-800.mat-icon, .cool-gray-800 .mat-icon {
  color: #FBFDFE !important;
}
.cool-gray-800.text-secondary, .cool-gray-800 .text-secondary {
  color: rgba(251, 253, 254, 0.7) !important;
}
.cool-gray-800.text-hint, .cool-gray-800 .text-hint, .cool-gray-800.text-disabled, .cool-gray-800 .text-disabled {
  color: rgba(251, 253, 254, 0.38) !important;
}
.cool-gray-800.divider, .cool-gray-800 .divider {
  color: rgba(251, 253, 254, 0.12) !important;
}
.text-cool-gray-800.text-secondary, .text-cool-gray-800 .text-secondary {
  color: rgba(39, 48, 63, 0.7) !important;
}
.text-cool-gray-800.text-hint, .text-cool-gray-800 .text-hint, .text-cool-gray-800.text-disabled, .text-cool-gray-800 .text-disabled {
  color: rgba(39, 48, 63, 0.38) !important;
}
.text-cool-gray-800.divider, .text-cool-gray-800 .divider {
  color: rgba(39, 48, 63, 0.12) !important;
}
.cool-gray-900 {
  background-color: #1A202E !important;
  color: #FBFDFE !important;
}
.cool-gray-900.mat-icon, .cool-gray-900 .mat-icon {
  color: #FBFDFE !important;
}
.cool-gray-900.text-secondary, .cool-gray-900 .text-secondary {
  color: rgba(251, 253, 254, 0.7) !important;
}
.cool-gray-900.text-hint, .cool-gray-900 .text-hint, .cool-gray-900.text-disabled, .cool-gray-900 .text-disabled {
  color: rgba(251, 253, 254, 0.38) !important;
}
.cool-gray-900.divider, .cool-gray-900 .divider {
  color: rgba(251, 253, 254, 0.12) !important;
}
.text-cool-gray-900.text-secondary, .text-cool-gray-900 .text-secondary {
  color: rgba(26, 32, 46, 0.7) !important;
}
.text-cool-gray-900.text-hint, .text-cool-gray-900 .text-hint, .text-cool-gray-900.text-disabled, .text-cool-gray-900 .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.text-cool-gray-900.divider, .text-cool-gray-900 .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.cool-gray {
  background-color: #64748B !important;
  color: #1A202E !important;
}
.cool-gray.mat-icon, .cool-gray .mat-icon {
  color: #1A202E !important;
}
.cool-gray.text-secondary, .cool-gray .text-secondary {
  color: rgba(26, 32, 46, 0.7) !important;
}
.cool-gray.text-hint, .cool-gray .text-hint, .cool-gray.text-disabled, .cool-gray .text-disabled {
  color: rgba(26, 32, 46, 0.38) !important;
}
.cool-gray.divider, .cool-gray .divider {
  color: rgba(26, 32, 46, 0.12) !important;
}
.text-cool-gray.text-secondary, .text-cool-gray .text-secondary {
  color: rgba(100, 116, 139, 0.7) !important;
}
.text-cool-gray.text-hint, .text-cool-gray .text-hint, .text-cool-gray.text-disabled, .text-cool-gray .text-disabled {
  color: rgba(100, 116, 139, 0.38) !important;
}
.text-cool-gray.divider, .text-cool-gray .divider {
  color: rgba(100, 116, 139, 0.12) !important;
}
.red-50 {
  background-color: #FDF2F2 !important;
  color: #771D1D !important;
}
.red-50.mat-icon, .red-50 .mat-icon {
  color: #771D1D !important;
}
.red-50.text-secondary, .red-50 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.red-50.text-hint, .red-50 .text-hint, .red-50.text-disabled, .red-50 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.red-50.divider, .red-50 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-red-50.text-secondary, .text-red-50 .text-secondary {
  color: rgba(253, 242, 242, 0.7) !important;
}
.text-red-50.text-hint, .text-red-50 .text-hint, .text-red-50.text-disabled, .text-red-50 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.text-red-50.divider, .text-red-50 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.red-100 {
  background-color: #FDE8E8 !important;
  color: #771D1D !important;
}
.red-100.mat-icon, .red-100 .mat-icon {
  color: #771D1D !important;
}
.red-100.text-secondary, .red-100 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.red-100.text-hint, .red-100 .text-hint, .red-100.text-disabled, .red-100 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.red-100.divider, .red-100 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-red-100.text-secondary, .text-red-100 .text-secondary {
  color: rgba(253, 232, 232, 0.7) !important;
}
.text-red-100.text-hint, .text-red-100 .text-hint, .text-red-100.text-disabled, .text-red-100 .text-disabled {
  color: rgba(253, 232, 232, 0.38) !important;
}
.text-red-100.divider, .text-red-100 .divider {
  color: rgba(253, 232, 232, 0.12) !important;
}
.red-200 {
  background-color: #FBD5D5 !important;
  color: #771D1D !important;
}
.red-200.mat-icon, .red-200 .mat-icon {
  color: #771D1D !important;
}
.red-200.text-secondary, .red-200 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.red-200.text-hint, .red-200 .text-hint, .red-200.text-disabled, .red-200 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.red-200.divider, .red-200 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-red-200.text-secondary, .text-red-200 .text-secondary {
  color: rgba(251, 213, 213, 0.7) !important;
}
.text-red-200.text-hint, .text-red-200 .text-hint, .text-red-200.text-disabled, .text-red-200 .text-disabled {
  color: rgba(251, 213, 213, 0.38) !important;
}
.text-red-200.divider, .text-red-200 .divider {
  color: rgba(251, 213, 213, 0.12) !important;
}
.red-300 {
  background-color: #F8B4B4 !important;
  color: #771D1D !important;
}
.red-300.mat-icon, .red-300 .mat-icon {
  color: #771D1D !important;
}
.red-300.text-secondary, .red-300 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.red-300.text-hint, .red-300 .text-hint, .red-300.text-disabled, .red-300 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.red-300.divider, .red-300 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-red-300.text-secondary, .text-red-300 .text-secondary {
  color: rgba(248, 180, 180, 0.7) !important;
}
.text-red-300.text-hint, .text-red-300 .text-hint, .text-red-300.text-disabled, .text-red-300 .text-disabled {
  color: rgba(248, 180, 180, 0.38) !important;
}
.text-red-300.divider, .text-red-300 .divider {
  color: rgba(248, 180, 180, 0.12) !important;
}
.red-400 {
  background-color: #F98080 !important;
  color: #771D1D !important;
}
.red-400.mat-icon, .red-400 .mat-icon {
  color: #771D1D !important;
}
.red-400.text-secondary, .red-400 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.red-400.text-hint, .red-400 .text-hint, .red-400.text-disabled, .red-400 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.red-400.divider, .red-400 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-red-400.text-secondary, .text-red-400 .text-secondary {
  color: rgba(249, 128, 128, 0.7) !important;
}
.text-red-400.text-hint, .text-red-400 .text-hint, .text-red-400.text-disabled, .text-red-400 .text-disabled {
  color: rgba(249, 128, 128, 0.38) !important;
}
.text-red-400.divider, .text-red-400 .divider {
  color: rgba(249, 128, 128, 0.12) !important;
}
.red-500 {
  background-color: #F05252 !important;
  color: #771D1D !important;
}
.red-500.mat-icon, .red-500 .mat-icon {
  color: #771D1D !important;
}
.red-500.text-secondary, .red-500 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.red-500.text-hint, .red-500 .text-hint, .red-500.text-disabled, .red-500 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.red-500.divider, .red-500 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-red-500.text-secondary, .text-red-500 .text-secondary {
  color: rgba(240, 82, 82, 0.7) !important;
}
.text-red-500.text-hint, .text-red-500 .text-hint, .text-red-500.text-disabled, .text-red-500 .text-disabled {
  color: rgba(240, 82, 82, 0.38) !important;
}
.text-red-500.divider, .text-red-500 .divider {
  color: rgba(240, 82, 82, 0.12) !important;
}
.red-600 {
  background-color: #E02424 !important;
  color: #FDF2F2 !important;
}
.red-600.mat-icon, .red-600 .mat-icon {
  color: #FDF2F2 !important;
}
.red-600.text-secondary, .red-600 .text-secondary {
  color: rgba(253, 242, 242, 0.7) !important;
}
.red-600.text-hint, .red-600 .text-hint, .red-600.text-disabled, .red-600 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.red-600.divider, .red-600 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.text-red-600.text-secondary, .text-red-600 .text-secondary {
  color: rgba(224, 36, 36, 0.7) !important;
}
.text-red-600.text-hint, .text-red-600 .text-hint, .text-red-600.text-disabled, .text-red-600 .text-disabled {
  color: rgba(224, 36, 36, 0.38) !important;
}
.text-red-600.divider, .text-red-600 .divider {
  color: rgba(224, 36, 36, 0.12) !important;
}
.red-700 {
  background-color: #C81E1E !important;
  color: #FDF2F2 !important;
}
.red-700.mat-icon, .red-700 .mat-icon {
  color: #FDF2F2 !important;
}
.red-700.text-secondary, .red-700 .text-secondary {
  color: rgba(253, 242, 242, 0.7) !important;
}
.red-700.text-hint, .red-700 .text-hint, .red-700.text-disabled, .red-700 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.red-700.divider, .red-700 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.text-red-700.text-secondary, .text-red-700 .text-secondary {
  color: rgba(200, 30, 30, 0.7) !important;
}
.text-red-700.text-hint, .text-red-700 .text-hint, .text-red-700.text-disabled, .text-red-700 .text-disabled {
  color: rgba(200, 30, 30, 0.38) !important;
}
.text-red-700.divider, .text-red-700 .divider {
  color: rgba(200, 30, 30, 0.12) !important;
}
.red-800 {
  background-color: #9B1C1C !important;
  color: #FDF2F2 !important;
}
.red-800.mat-icon, .red-800 .mat-icon {
  color: #FDF2F2 !important;
}
.red-800.text-secondary, .red-800 .text-secondary {
  color: rgba(253, 242, 242, 0.7) !important;
}
.red-800.text-hint, .red-800 .text-hint, .red-800.text-disabled, .red-800 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.red-800.divider, .red-800 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.text-red-800.text-secondary, .text-red-800 .text-secondary {
  color: rgba(155, 28, 28, 0.7) !important;
}
.text-red-800.text-hint, .text-red-800 .text-hint, .text-red-800.text-disabled, .text-red-800 .text-disabled {
  color: rgba(155, 28, 28, 0.38) !important;
}
.text-red-800.divider, .text-red-800 .divider {
  color: rgba(155, 28, 28, 0.12) !important;
}
.red-900 {
  background-color: #771D1D !important;
  color: #FDF2F2 !important;
}
.red-900.mat-icon, .red-900 .mat-icon {
  color: #FDF2F2 !important;
}
.red-900.text-secondary, .red-900 .text-secondary {
  color: rgba(253, 242, 242, 0.7) !important;
}
.red-900.text-hint, .red-900 .text-hint, .red-900.text-disabled, .red-900 .text-disabled {
  color: rgba(253, 242, 242, 0.38) !important;
}
.red-900.divider, .red-900 .divider {
  color: rgba(253, 242, 242, 0.12) !important;
}
.text-red-900.text-secondary, .text-red-900 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.text-red-900.text-hint, .text-red-900 .text-hint, .text-red-900.text-disabled, .text-red-900 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.text-red-900.divider, .text-red-900 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.red {
  background-color: #F05252 !important;
  color: #771D1D !important;
}
.red.mat-icon, .red .mat-icon {
  color: #771D1D !important;
}
.red.text-secondary, .red .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.red.text-hint, .red .text-hint, .red.text-disabled, .red .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.red.divider, .red .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-red.text-secondary, .text-red .text-secondary {
  color: rgba(240, 82, 82, 0.7) !important;
}
.text-red.text-hint, .text-red .text-hint, .text-red.text-disabled, .text-red .text-disabled {
  color: rgba(240, 82, 82, 0.38) !important;
}
.text-red.divider, .text-red .divider {
  color: rgba(240, 82, 82, 0.12) !important;
}
.orange-50 {
  background-color: #FFF8F1 !important;
  color: #771D1D !important;
}
.orange-50.mat-icon, .orange-50 .mat-icon {
  color: #771D1D !important;
}
.orange-50.text-secondary, .orange-50 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.orange-50.text-hint, .orange-50 .text-hint, .orange-50.text-disabled, .orange-50 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.orange-50.divider, .orange-50 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-orange-50.text-secondary, .text-orange-50 .text-secondary {
  color: rgba(255, 248, 241, 0.7) !important;
}
.text-orange-50.text-hint, .text-orange-50 .text-hint, .text-orange-50.text-disabled, .text-orange-50 .text-disabled {
  color: rgba(255, 248, 241, 0.38) !important;
}
.text-orange-50.divider, .text-orange-50 .divider {
  color: rgba(255, 248, 241, 0.12) !important;
}
.orange-100 {
  background-color: #FEECDC !important;
  color: #771D1D !important;
}
.orange-100.mat-icon, .orange-100 .mat-icon {
  color: #771D1D !important;
}
.orange-100.text-secondary, .orange-100 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.orange-100.text-hint, .orange-100 .text-hint, .orange-100.text-disabled, .orange-100 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.orange-100.divider, .orange-100 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-orange-100.text-secondary, .text-orange-100 .text-secondary {
  color: rgba(254, 236, 220, 0.7) !important;
}
.text-orange-100.text-hint, .text-orange-100 .text-hint, .text-orange-100.text-disabled, .text-orange-100 .text-disabled {
  color: rgba(254, 236, 220, 0.38) !important;
}
.text-orange-100.divider, .text-orange-100 .divider {
  color: rgba(254, 236, 220, 0.12) !important;
}
.orange-200 {
  background-color: #FCD9BD !important;
  color: #771D1D !important;
}
.orange-200.mat-icon, .orange-200 .mat-icon {
  color: #771D1D !important;
}
.orange-200.text-secondary, .orange-200 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.orange-200.text-hint, .orange-200 .text-hint, .orange-200.text-disabled, .orange-200 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.orange-200.divider, .orange-200 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-orange-200.text-secondary, .text-orange-200 .text-secondary {
  color: rgba(252, 217, 189, 0.7) !important;
}
.text-orange-200.text-hint, .text-orange-200 .text-hint, .text-orange-200.text-disabled, .text-orange-200 .text-disabled {
  color: rgba(252, 217, 189, 0.38) !important;
}
.text-orange-200.divider, .text-orange-200 .divider {
  color: rgba(252, 217, 189, 0.12) !important;
}
.orange-300 {
  background-color: #FDBA8C !important;
  color: #771D1D !important;
}
.orange-300.mat-icon, .orange-300 .mat-icon {
  color: #771D1D !important;
}
.orange-300.text-secondary, .orange-300 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.orange-300.text-hint, .orange-300 .text-hint, .orange-300.text-disabled, .orange-300 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.orange-300.divider, .orange-300 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-orange-300.text-secondary, .text-orange-300 .text-secondary {
  color: rgba(253, 186, 140, 0.7) !important;
}
.text-orange-300.text-hint, .text-orange-300 .text-hint, .text-orange-300.text-disabled, .text-orange-300 .text-disabled {
  color: rgba(253, 186, 140, 0.38) !important;
}
.text-orange-300.divider, .text-orange-300 .divider {
  color: rgba(253, 186, 140, 0.12) !important;
}
.orange-400 {
  background-color: #FF8A4C !important;
  color: #771D1D !important;
}
.orange-400.mat-icon, .orange-400 .mat-icon {
  color: #771D1D !important;
}
.orange-400.text-secondary, .orange-400 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.orange-400.text-hint, .orange-400 .text-hint, .orange-400.text-disabled, .orange-400 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.orange-400.divider, .orange-400 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-orange-400.text-secondary, .text-orange-400 .text-secondary {
  color: rgba(255, 138, 76, 0.7) !important;
}
.text-orange-400.text-hint, .text-orange-400 .text-hint, .text-orange-400.text-disabled, .text-orange-400 .text-disabled {
  color: rgba(255, 138, 76, 0.38) !important;
}
.text-orange-400.divider, .text-orange-400 .divider {
  color: rgba(255, 138, 76, 0.12) !important;
}
.orange-500 {
  background-color: #FF5A1F !important;
  color: #771D1D !important;
}
.orange-500.mat-icon, .orange-500 .mat-icon {
  color: #771D1D !important;
}
.orange-500.text-secondary, .orange-500 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.orange-500.text-hint, .orange-500 .text-hint, .orange-500.text-disabled, .orange-500 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.orange-500.divider, .orange-500 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-orange-500.text-secondary, .text-orange-500 .text-secondary {
  color: rgba(255, 90, 31, 0.7) !important;
}
.text-orange-500.text-hint, .text-orange-500 .text-hint, .text-orange-500.text-disabled, .text-orange-500 .text-disabled {
  color: rgba(255, 90, 31, 0.38) !important;
}
.text-orange-500.divider, .text-orange-500 .divider {
  color: rgba(255, 90, 31, 0.12) !important;
}
.orange-600 {
  background-color: #D03801 !important;
  color: #FFF8F1 !important;
}
.orange-600.mat-icon, .orange-600 .mat-icon {
  color: #FFF8F1 !important;
}
.orange-600.text-secondary, .orange-600 .text-secondary {
  color: rgba(255, 248, 241, 0.7) !important;
}
.orange-600.text-hint, .orange-600 .text-hint, .orange-600.text-disabled, .orange-600 .text-disabled {
  color: rgba(255, 248, 241, 0.38) !important;
}
.orange-600.divider, .orange-600 .divider {
  color: rgba(255, 248, 241, 0.12) !important;
}
.text-orange-600.text-secondary, .text-orange-600 .text-secondary {
  color: rgba(208, 56, 1, 0.7) !important;
}
.text-orange-600.text-hint, .text-orange-600 .text-hint, .text-orange-600.text-disabled, .text-orange-600 .text-disabled {
  color: rgba(208, 56, 1, 0.38) !important;
}
.text-orange-600.divider, .text-orange-600 .divider {
  color: rgba(208, 56, 1, 0.12) !important;
}
.orange-700 {
  background-color: #B43403 !important;
  color: #FFF8F1 !important;
}
.orange-700.mat-icon, .orange-700 .mat-icon {
  color: #FFF8F1 !important;
}
.orange-700.text-secondary, .orange-700 .text-secondary {
  color: rgba(255, 248, 241, 0.7) !important;
}
.orange-700.text-hint, .orange-700 .text-hint, .orange-700.text-disabled, .orange-700 .text-disabled {
  color: rgba(255, 248, 241, 0.38) !important;
}
.orange-700.divider, .orange-700 .divider {
  color: rgba(255, 248, 241, 0.12) !important;
}
.text-orange-700.text-secondary, .text-orange-700 .text-secondary {
  color: rgba(180, 52, 3, 0.7) !important;
}
.text-orange-700.text-hint, .text-orange-700 .text-hint, .text-orange-700.text-disabled, .text-orange-700 .text-disabled {
  color: rgba(180, 52, 3, 0.38) !important;
}
.text-orange-700.divider, .text-orange-700 .divider {
  color: rgba(180, 52, 3, 0.12) !important;
}
.orange-800 {
  background-color: #8A2C0D !important;
  color: #FFF8F1 !important;
}
.orange-800.mat-icon, .orange-800 .mat-icon {
  color: #FFF8F1 !important;
}
.orange-800.text-secondary, .orange-800 .text-secondary {
  color: rgba(255, 248, 241, 0.7) !important;
}
.orange-800.text-hint, .orange-800 .text-hint, .orange-800.text-disabled, .orange-800 .text-disabled {
  color: rgba(255, 248, 241, 0.38) !important;
}
.orange-800.divider, .orange-800 .divider {
  color: rgba(255, 248, 241, 0.12) !important;
}
.text-orange-800.text-secondary, .text-orange-800 .text-secondary {
  color: rgba(138, 44, 13, 0.7) !important;
}
.text-orange-800.text-hint, .text-orange-800 .text-hint, .text-orange-800.text-disabled, .text-orange-800 .text-disabled {
  color: rgba(138, 44, 13, 0.38) !important;
}
.text-orange-800.divider, .text-orange-800 .divider {
  color: rgba(138, 44, 13, 0.12) !important;
}
.orange-900 {
  background-color: #771D1D !important;
  color: #FFF8F1 !important;
}
.orange-900.mat-icon, .orange-900 .mat-icon {
  color: #FFF8F1 !important;
}
.orange-900.text-secondary, .orange-900 .text-secondary {
  color: rgba(255, 248, 241, 0.7) !important;
}
.orange-900.text-hint, .orange-900 .text-hint, .orange-900.text-disabled, .orange-900 .text-disabled {
  color: rgba(255, 248, 241, 0.38) !important;
}
.orange-900.divider, .orange-900 .divider {
  color: rgba(255, 248, 241, 0.12) !important;
}
.text-orange-900.text-secondary, .text-orange-900 .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.text-orange-900.text-hint, .text-orange-900 .text-hint, .text-orange-900.text-disabled, .text-orange-900 .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.text-orange-900.divider, .text-orange-900 .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.orange {
  background-color: #FF5A1F !important;
  color: #771D1D !important;
}
.orange.mat-icon, .orange .mat-icon {
  color: #771D1D !important;
}
.orange.text-secondary, .orange .text-secondary {
  color: rgba(119, 29, 29, 0.7) !important;
}
.orange.text-hint, .orange .text-hint, .orange.text-disabled, .orange .text-disabled {
  color: rgba(119, 29, 29, 0.38) !important;
}
.orange.divider, .orange .divider {
  color: rgba(119, 29, 29, 0.12) !important;
}
.text-orange.text-secondary, .text-orange .text-secondary {
  color: rgba(255, 90, 31, 0.7) !important;
}
.text-orange.text-hint, .text-orange .text-hint, .text-orange.text-disabled, .text-orange .text-disabled {
  color: rgba(255, 90, 31, 0.38) !important;
}
.text-orange.divider, .text-orange .divider {
  color: rgba(255, 90, 31, 0.12) !important;
}
.yellow-50 {
  background-color: #FDFDEA !important;
  color: #633112 !important;
}
.yellow-50.mat-icon, .yellow-50 .mat-icon {
  color: #633112 !important;
}
.yellow-50.text-secondary, .yellow-50 .text-secondary {
  color: rgba(99, 49, 18, 0.7) !important;
}
.yellow-50.text-hint, .yellow-50 .text-hint, .yellow-50.text-disabled, .yellow-50 .text-disabled {
  color: rgba(99, 49, 18, 0.38) !important;
}
.yellow-50.divider, .yellow-50 .divider {
  color: rgba(99, 49, 18, 0.12) !important;
}
.text-yellow-50.text-secondary, .text-yellow-50 .text-secondary {
  color: rgba(253, 253, 234, 0.7) !important;
}
.text-yellow-50.text-hint, .text-yellow-50 .text-hint, .text-yellow-50.text-disabled, .text-yellow-50 .text-disabled {
  color: rgba(253, 253, 234, 0.38) !important;
}
.text-yellow-50.divider, .text-yellow-50 .divider {
  color: rgba(253, 253, 234, 0.12) !important;
}
.yellow-100 {
  background-color: #FDF6B2 !important;
  color: #633112 !important;
}
.yellow-100.mat-icon, .yellow-100 .mat-icon {
  color: #633112 !important;
}
.yellow-100.text-secondary, .yellow-100 .text-secondary {
  color: rgba(99, 49, 18, 0.7) !important;
}
.yellow-100.text-hint, .yellow-100 .text-hint, .yellow-100.text-disabled, .yellow-100 .text-disabled {
  color: rgba(99, 49, 18, 0.38) !important;
}
.yellow-100.divider, .yellow-100 .divider {
  color: rgba(99, 49, 18, 0.12) !important;
}
.text-yellow-100.text-secondary, .text-yellow-100 .text-secondary {
  color: rgba(253, 246, 178, 0.7) !important;
}
.text-yellow-100.text-hint, .text-yellow-100 .text-hint, .text-yellow-100.text-disabled, .text-yellow-100 .text-disabled {
  color: rgba(253, 246, 178, 0.38) !important;
}
.text-yellow-100.divider, .text-yellow-100 .divider {
  color: rgba(253, 246, 178, 0.12) !important;
}
.yellow-200 {
  background-color: #FCE96A !important;
  color: #633112 !important;
}
.yellow-200.mat-icon, .yellow-200 .mat-icon {
  color: #633112 !important;
}
.yellow-200.text-secondary, .yellow-200 .text-secondary {
  color: rgba(99, 49, 18, 0.7) !important;
}
.yellow-200.text-hint, .yellow-200 .text-hint, .yellow-200.text-disabled, .yellow-200 .text-disabled {
  color: rgba(99, 49, 18, 0.38) !important;
}
.yellow-200.divider, .yellow-200 .divider {
  color: rgba(99, 49, 18, 0.12) !important;
}
.text-yellow-200.text-secondary, .text-yellow-200 .text-secondary {
  color: rgba(252, 233, 106, 0.7) !important;
}
.text-yellow-200.text-hint, .text-yellow-200 .text-hint, .text-yellow-200.text-disabled, .text-yellow-200 .text-disabled {
  color: rgba(252, 233, 106, 0.38) !important;
}
.text-yellow-200.divider, .text-yellow-200 .divider {
  color: rgba(252, 233, 106, 0.12) !important;
}
.yellow-300 {
  background-color: #FACA15 !important;
  color: #633112 !important;
}
.yellow-300.mat-icon, .yellow-300 .mat-icon {
  color: #633112 !important;
}
.yellow-300.text-secondary, .yellow-300 .text-secondary {
  color: rgba(99, 49, 18, 0.7) !important;
}
.yellow-300.text-hint, .yellow-300 .text-hint, .yellow-300.text-disabled, .yellow-300 .text-disabled {
  color: rgba(99, 49, 18, 0.38) !important;
}
.yellow-300.divider, .yellow-300 .divider {
  color: rgba(99, 49, 18, 0.12) !important;
}
.text-yellow-300.text-secondary, .text-yellow-300 .text-secondary {
  color: rgba(250, 202, 21, 0.7) !important;
}
.text-yellow-300.text-hint, .text-yellow-300 .text-hint, .text-yellow-300.text-disabled, .text-yellow-300 .text-disabled {
  color: rgba(250, 202, 21, 0.38) !important;
}
.text-yellow-300.divider, .text-yellow-300 .divider {
  color: rgba(250, 202, 21, 0.12) !important;
}
.yellow-400 {
  background-color: #E3A008 !important;
  color: #633112 !important;
}
.yellow-400.mat-icon, .yellow-400 .mat-icon {
  color: #633112 !important;
}
.yellow-400.text-secondary, .yellow-400 .text-secondary {
  color: rgba(99, 49, 18, 0.7) !important;
}
.yellow-400.text-hint, .yellow-400 .text-hint, .yellow-400.text-disabled, .yellow-400 .text-disabled {
  color: rgba(99, 49, 18, 0.38) !important;
}
.yellow-400.divider, .yellow-400 .divider {
  color: rgba(99, 49, 18, 0.12) !important;
}
.text-yellow-400.text-secondary, .text-yellow-400 .text-secondary {
  color: rgba(227, 160, 8, 0.7) !important;
}
.text-yellow-400.text-hint, .text-yellow-400 .text-hint, .text-yellow-400.text-disabled, .text-yellow-400 .text-disabled {
  color: rgba(227, 160, 8, 0.38) !important;
}
.text-yellow-400.divider, .text-yellow-400 .divider {
  color: rgba(227, 160, 8, 0.12) !important;
}
.yellow-500 {
  background-color: #C27803 !important;
  color: #633112 !important;
}
.yellow-500.mat-icon, .yellow-500 .mat-icon {
  color: #633112 !important;
}
.yellow-500.text-secondary, .yellow-500 .text-secondary {
  color: rgba(99, 49, 18, 0.7) !important;
}
.yellow-500.text-hint, .yellow-500 .text-hint, .yellow-500.text-disabled, .yellow-500 .text-disabled {
  color: rgba(99, 49, 18, 0.38) !important;
}
.yellow-500.divider, .yellow-500 .divider {
  color: rgba(99, 49, 18, 0.12) !important;
}
.text-yellow-500.text-secondary, .text-yellow-500 .text-secondary {
  color: rgba(194, 120, 3, 0.7) !important;
}
.text-yellow-500.text-hint, .text-yellow-500 .text-hint, .text-yellow-500.text-disabled, .text-yellow-500 .text-disabled {
  color: rgba(194, 120, 3, 0.38) !important;
}
.text-yellow-500.divider, .text-yellow-500 .divider {
  color: rgba(194, 120, 3, 0.12) !important;
}
.yellow-600 {
  background-color: #9F580A !important;
  color: #FDFDEA !important;
}
.yellow-600.mat-icon, .yellow-600 .mat-icon {
  color: #FDFDEA !important;
}
.yellow-600.text-secondary, .yellow-600 .text-secondary {
  color: rgba(253, 253, 234, 0.7) !important;
}
.yellow-600.text-hint, .yellow-600 .text-hint, .yellow-600.text-disabled, .yellow-600 .text-disabled {
  color: rgba(253, 253, 234, 0.38) !important;
}
.yellow-600.divider, .yellow-600 .divider {
  color: rgba(253, 253, 234, 0.12) !important;
}
.text-yellow-600.text-secondary, .text-yellow-600 .text-secondary {
  color: rgba(159, 88, 10, 0.7) !important;
}
.text-yellow-600.text-hint, .text-yellow-600 .text-hint, .text-yellow-600.text-disabled, .text-yellow-600 .text-disabled {
  color: rgba(159, 88, 10, 0.38) !important;
}
.text-yellow-600.divider, .text-yellow-600 .divider {
  color: rgba(159, 88, 10, 0.12) !important;
}
.yellow-700 {
  background-color: #8E4B10 !important;
  color: #FDFDEA !important;
}
.yellow-700.mat-icon, .yellow-700 .mat-icon {
  color: #FDFDEA !important;
}
.yellow-700.text-secondary, .yellow-700 .text-secondary {
  color: rgba(253, 253, 234, 0.7) !important;
}
.yellow-700.text-hint, .yellow-700 .text-hint, .yellow-700.text-disabled, .yellow-700 .text-disabled {
  color: rgba(253, 253, 234, 0.38) !important;
}
.yellow-700.divider, .yellow-700 .divider {
  color: rgba(253, 253, 234, 0.12) !important;
}
.text-yellow-700.text-secondary, .text-yellow-700 .text-secondary {
  color: rgba(142, 75, 16, 0.7) !important;
}
.text-yellow-700.text-hint, .text-yellow-700 .text-hint, .text-yellow-700.text-disabled, .text-yellow-700 .text-disabled {
  color: rgba(142, 75, 16, 0.38) !important;
}
.text-yellow-700.divider, .text-yellow-700 .divider {
  color: rgba(142, 75, 16, 0.12) !important;
}
.yellow-800 {
  background-color: #723B13 !important;
  color: #FDFDEA !important;
}
.yellow-800.mat-icon, .yellow-800 .mat-icon {
  color: #FDFDEA !important;
}
.yellow-800.text-secondary, .yellow-800 .text-secondary {
  color: rgba(253, 253, 234, 0.7) !important;
}
.yellow-800.text-hint, .yellow-800 .text-hint, .yellow-800.text-disabled, .yellow-800 .text-disabled {
  color: rgba(253, 253, 234, 0.38) !important;
}
.yellow-800.divider, .yellow-800 .divider {
  color: rgba(253, 253, 234, 0.12) !important;
}
.text-yellow-800.text-secondary, .text-yellow-800 .text-secondary {
  color: rgba(114, 59, 19, 0.7) !important;
}
.text-yellow-800.text-hint, .text-yellow-800 .text-hint, .text-yellow-800.text-disabled, .text-yellow-800 .text-disabled {
  color: rgba(114, 59, 19, 0.38) !important;
}
.text-yellow-800.divider, .text-yellow-800 .divider {
  color: rgba(114, 59, 19, 0.12) !important;
}
.yellow-900 {
  background-color: #633112 !important;
  color: #FDFDEA !important;
}
.yellow-900.mat-icon, .yellow-900 .mat-icon {
  color: #FDFDEA !important;
}
.yellow-900.text-secondary, .yellow-900 .text-secondary {
  color: rgba(253, 253, 234, 0.7) !important;
}
.yellow-900.text-hint, .yellow-900 .text-hint, .yellow-900.text-disabled, .yellow-900 .text-disabled {
  color: rgba(253, 253, 234, 0.38) !important;
}
.yellow-900.divider, .yellow-900 .divider {
  color: rgba(253, 253, 234, 0.12) !important;
}
.text-yellow-900.text-secondary, .text-yellow-900 .text-secondary {
  color: rgba(99, 49, 18, 0.7) !important;
}
.text-yellow-900.text-hint, .text-yellow-900 .text-hint, .text-yellow-900.text-disabled, .text-yellow-900 .text-disabled {
  color: rgba(99, 49, 18, 0.38) !important;
}
.text-yellow-900.divider, .text-yellow-900 .divider {
  color: rgba(99, 49, 18, 0.12) !important;
}
.yellow {
  background-color: #C27803 !important;
  color: #633112 !important;
}
.yellow.mat-icon, .yellow .mat-icon {
  color: #633112 !important;
}
.yellow.text-secondary, .yellow .text-secondary {
  color: rgba(99, 49, 18, 0.7) !important;
}
.yellow.text-hint, .yellow .text-hint, .yellow.text-disabled, .yellow .text-disabled {
  color: rgba(99, 49, 18, 0.38) !important;
}
.yellow.divider, .yellow .divider {
  color: rgba(99, 49, 18, 0.12) !important;
}
.text-yellow.text-secondary, .text-yellow .text-secondary {
  color: rgba(194, 120, 3, 0.7) !important;
}
.text-yellow.text-hint, .text-yellow .text-hint, .text-yellow.text-disabled, .text-yellow .text-disabled {
  color: rgba(194, 120, 3, 0.38) !important;
}
.text-yellow.divider, .text-yellow .divider {
  color: rgba(194, 120, 3, 0.12) !important;
}
.green-50 {
  background-color: #F3FAF7 !important;
  color: #014737 !important;
}
.green-50.mat-icon, .green-50 .mat-icon {
  color: #014737 !important;
}
.green-50.text-secondary, .green-50 .text-secondary {
  color: rgba(1, 71, 55, 0.7) !important;
}
.green-50.text-hint, .green-50 .text-hint, .green-50.text-disabled, .green-50 .text-disabled {
  color: rgba(1, 71, 55, 0.38) !important;
}
.green-50.divider, .green-50 .divider {
  color: rgba(1, 71, 55, 0.12) !important;
}
.text-green-50.text-secondary, .text-green-50 .text-secondary {
  color: rgba(243, 250, 247, 0.7) !important;
}
.text-green-50.text-hint, .text-green-50 .text-hint, .text-green-50.text-disabled, .text-green-50 .text-disabled {
  color: rgba(243, 250, 247, 0.38) !important;
}
.text-green-50.divider, .text-green-50 .divider {
  color: rgba(243, 250, 247, 0.12) !important;
}
.green-100 {
  background-color: #DEF7EC !important;
  color: #014737 !important;
}
.green-100.mat-icon, .green-100 .mat-icon {
  color: #014737 !important;
}
.green-100.text-secondary, .green-100 .text-secondary {
  color: rgba(1, 71, 55, 0.7) !important;
}
.green-100.text-hint, .green-100 .text-hint, .green-100.text-disabled, .green-100 .text-disabled {
  color: rgba(1, 71, 55, 0.38) !important;
}
.green-100.divider, .green-100 .divider {
  color: rgba(1, 71, 55, 0.12) !important;
}
.text-green-100.text-secondary, .text-green-100 .text-secondary {
  color: rgba(222, 247, 236, 0.7) !important;
}
.text-green-100.text-hint, .text-green-100 .text-hint, .text-green-100.text-disabled, .text-green-100 .text-disabled {
  color: rgba(222, 247, 236, 0.38) !important;
}
.text-green-100.divider, .text-green-100 .divider {
  color: rgba(222, 247, 236, 0.12) !important;
}
.green-200 {
  background-color: #BCF0DA !important;
  color: #014737 !important;
}
.green-200.mat-icon, .green-200 .mat-icon {
  color: #014737 !important;
}
.green-200.text-secondary, .green-200 .text-secondary {
  color: rgba(1, 71, 55, 0.7) !important;
}
.green-200.text-hint, .green-200 .text-hint, .green-200.text-disabled, .green-200 .text-disabled {
  color: rgba(1, 71, 55, 0.38) !important;
}
.green-200.divider, .green-200 .divider {
  color: rgba(1, 71, 55, 0.12) !important;
}
.text-green-200.text-secondary, .text-green-200 .text-secondary {
  color: rgba(188, 240, 218, 0.7) !important;
}
.text-green-200.text-hint, .text-green-200 .text-hint, .text-green-200.text-disabled, .text-green-200 .text-disabled {
  color: rgba(188, 240, 218, 0.38) !important;
}
.text-green-200.divider, .text-green-200 .divider {
  color: rgba(188, 240, 218, 0.12) !important;
}
.green-300 {
  background-color: #84E1BC !important;
  color: #014737 !important;
}
.green-300.mat-icon, .green-300 .mat-icon {
  color: #014737 !important;
}
.green-300.text-secondary, .green-300 .text-secondary {
  color: rgba(1, 71, 55, 0.7) !important;
}
.green-300.text-hint, .green-300 .text-hint, .green-300.text-disabled, .green-300 .text-disabled {
  color: rgba(1, 71, 55, 0.38) !important;
}
.green-300.divider, .green-300 .divider {
  color: rgba(1, 71, 55, 0.12) !important;
}
.text-green-300.text-secondary, .text-green-300 .text-secondary {
  color: rgba(132, 225, 188, 0.7) !important;
}
.text-green-300.text-hint, .text-green-300 .text-hint, .text-green-300.text-disabled, .text-green-300 .text-disabled {
  color: rgba(132, 225, 188, 0.38) !important;
}
.text-green-300.divider, .text-green-300 .divider {
  color: rgba(132, 225, 188, 0.12) !important;
}
.green-400 {
  background-color: #31C48D !important;
  color: #014737 !important;
}
.green-400.mat-icon, .green-400 .mat-icon {
  color: #014737 !important;
}
.green-400.text-secondary, .green-400 .text-secondary {
  color: rgba(1, 71, 55, 0.7) !important;
}
.green-400.text-hint, .green-400 .text-hint, .green-400.text-disabled, .green-400 .text-disabled {
  color: rgba(1, 71, 55, 0.38) !important;
}
.green-400.divider, .green-400 .divider {
  color: rgba(1, 71, 55, 0.12) !important;
}
.text-green-400.text-secondary, .text-green-400 .text-secondary {
  color: rgba(49, 196, 141, 0.7) !important;
}
.text-green-400.text-hint, .text-green-400 .text-hint, .text-green-400.text-disabled, .text-green-400 .text-disabled {
  color: rgba(49, 196, 141, 0.38) !important;
}
.text-green-400.divider, .text-green-400 .divider {
  color: rgba(49, 196, 141, 0.12) !important;
}
.green-500 {
  background-color: #0E9F6E !important;
  color: #F3FAF7 !important;
}
.green-500.mat-icon, .green-500 .mat-icon {
  color: #F3FAF7 !important;
}
.green-500.text-secondary, .green-500 .text-secondary {
  color: rgba(243, 250, 247, 0.7) !important;
}
.green-500.text-hint, .green-500 .text-hint, .green-500.text-disabled, .green-500 .text-disabled {
  color: rgba(243, 250, 247, 0.38) !important;
}
.green-500.divider, .green-500 .divider {
  color: rgba(243, 250, 247, 0.12) !important;
}
.text-green-500.text-secondary, .text-green-500 .text-secondary {
  color: rgba(14, 159, 110, 0.7) !important;
}
.text-green-500.text-hint, .text-green-500 .text-hint, .text-green-500.text-disabled, .text-green-500 .text-disabled {
  color: rgba(14, 159, 110, 0.38) !important;
}
.text-green-500.divider, .text-green-500 .divider {
  color: rgba(14, 159, 110, 0.12) !important;
}
.green-600 {
  background-color: #057A55 !important;
  color: #F3FAF7 !important;
}
.green-600.mat-icon, .green-600 .mat-icon {
  color: #F3FAF7 !important;
}
.green-600.text-secondary, .green-600 .text-secondary {
  color: rgba(243, 250, 247, 0.7) !important;
}
.green-600.text-hint, .green-600 .text-hint, .green-600.text-disabled, .green-600 .text-disabled {
  color: rgba(243, 250, 247, 0.38) !important;
}
.green-600.divider, .green-600 .divider {
  color: rgba(243, 250, 247, 0.12) !important;
}
.text-green-600.text-secondary, .text-green-600 .text-secondary {
  color: rgba(5, 122, 85, 0.7) !important;
}
.text-green-600.text-hint, .text-green-600 .text-hint, .text-green-600.text-disabled, .text-green-600 .text-disabled {
  color: rgba(5, 122, 85, 0.38) !important;
}
.text-green-600.divider, .text-green-600 .divider {
  color: rgba(5, 122, 85, 0.12) !important;
}
.green-700 {
  background-color: #046C4E !important;
  color: #F3FAF7 !important;
}
.green-700.mat-icon, .green-700 .mat-icon {
  color: #F3FAF7 !important;
}
.green-700.text-secondary, .green-700 .text-secondary {
  color: rgba(243, 250, 247, 0.7) !important;
}
.green-700.text-hint, .green-700 .text-hint, .green-700.text-disabled, .green-700 .text-disabled {
  color: rgba(243, 250, 247, 0.38) !important;
}
.green-700.divider, .green-700 .divider {
  color: rgba(243, 250, 247, 0.12) !important;
}
.text-green-700.text-secondary, .text-green-700 .text-secondary {
  color: rgba(4, 108, 78, 0.7) !important;
}
.text-green-700.text-hint, .text-green-700 .text-hint, .text-green-700.text-disabled, .text-green-700 .text-disabled {
  color: rgba(4, 108, 78, 0.38) !important;
}
.text-green-700.divider, .text-green-700 .divider {
  color: rgba(4, 108, 78, 0.12) !important;
}
.green-800 {
  background-color: #03543F !important;
  color: #F3FAF7 !important;
}
.green-800.mat-icon, .green-800 .mat-icon {
  color: #F3FAF7 !important;
}
.green-800.text-secondary, .green-800 .text-secondary {
  color: rgba(243, 250, 247, 0.7) !important;
}
.green-800.text-hint, .green-800 .text-hint, .green-800.text-disabled, .green-800 .text-disabled {
  color: rgba(243, 250, 247, 0.38) !important;
}
.green-800.divider, .green-800 .divider {
  color: rgba(243, 250, 247, 0.12) !important;
}
.text-green-800.text-secondary, .text-green-800 .text-secondary {
  color: rgba(3, 84, 63, 0.7) !important;
}
.text-green-800.text-hint, .text-green-800 .text-hint, .text-green-800.text-disabled, .text-green-800 .text-disabled {
  color: rgba(3, 84, 63, 0.38) !important;
}
.text-green-800.divider, .text-green-800 .divider {
  color: rgba(3, 84, 63, 0.12) !important;
}
.green-900 {
  background-color: #014737 !important;
  color: #F3FAF7 !important;
}
.green-900.mat-icon, .green-900 .mat-icon {
  color: #F3FAF7 !important;
}
.green-900.text-secondary, .green-900 .text-secondary {
  color: rgba(243, 250, 247, 0.7) !important;
}
.green-900.text-hint, .green-900 .text-hint, .green-900.text-disabled, .green-900 .text-disabled {
  color: rgba(243, 250, 247, 0.38) !important;
}
.green-900.divider, .green-900 .divider {
  color: rgba(243, 250, 247, 0.12) !important;
}
.text-green-900.text-secondary, .text-green-900 .text-secondary {
  color: rgba(1, 71, 55, 0.7) !important;
}
.text-green-900.text-hint, .text-green-900 .text-hint, .text-green-900.text-disabled, .text-green-900 .text-disabled {
  color: rgba(1, 71, 55, 0.38) !important;
}
.text-green-900.divider, .text-green-900 .divider {
  color: rgba(1, 71, 55, 0.12) !important;
}
.green {
  background-color: #0E9F6E !important;
  color: #F3FAF7 !important;
}
.green.mat-icon, .green .mat-icon {
  color: #F3FAF7 !important;
}
.green.text-secondary, .green .text-secondary {
  color: rgba(243, 250, 247, 0.7) !important;
}
.green.text-hint, .green .text-hint, .green.text-disabled, .green .text-disabled {
  color: rgba(243, 250, 247, 0.38) !important;
}
.green.divider, .green .divider {
  color: rgba(243, 250, 247, 0.12) !important;
}
.text-green.text-secondary, .text-green .text-secondary {
  color: rgba(14, 159, 110, 0.7) !important;
}
.text-green.text-hint, .text-green .text-hint, .text-green.text-disabled, .text-green .text-disabled {
  color: rgba(14, 159, 110, 0.38) !important;
}
.text-green.divider, .text-green .divider {
  color: rgba(14, 159, 110, 0.12) !important;
}
.teal-50 {
  background-color: #EDFAFA !important;
  color: #014451 !important;
}
.teal-50.mat-icon, .teal-50 .mat-icon {
  color: #014451 !important;
}
.teal-50.text-secondary, .teal-50 .text-secondary {
  color: rgba(1, 68, 81, 0.7) !important;
}
.teal-50.text-hint, .teal-50 .text-hint, .teal-50.text-disabled, .teal-50 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.teal-50.divider, .teal-50 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.text-teal-50.text-secondary, .text-teal-50 .text-secondary {
  color: rgba(237, 250, 250, 0.7) !important;
}
.text-teal-50.text-hint, .text-teal-50 .text-hint, .text-teal-50.text-disabled, .text-teal-50 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.text-teal-50.divider, .text-teal-50 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.teal-100 {
  background-color: #D5F5F6 !important;
  color: #014451 !important;
}
.teal-100.mat-icon, .teal-100 .mat-icon {
  color: #014451 !important;
}
.teal-100.text-secondary, .teal-100 .text-secondary {
  color: rgba(1, 68, 81, 0.7) !important;
}
.teal-100.text-hint, .teal-100 .text-hint, .teal-100.text-disabled, .teal-100 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.teal-100.divider, .teal-100 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.text-teal-100.text-secondary, .text-teal-100 .text-secondary {
  color: rgba(213, 245, 246, 0.7) !important;
}
.text-teal-100.text-hint, .text-teal-100 .text-hint, .text-teal-100.text-disabled, .text-teal-100 .text-disabled {
  color: rgba(213, 245, 246, 0.38) !important;
}
.text-teal-100.divider, .text-teal-100 .divider {
  color: rgba(213, 245, 246, 0.12) !important;
}
.teal-200 {
  background-color: #AFECEF !important;
  color: #014451 !important;
}
.teal-200.mat-icon, .teal-200 .mat-icon {
  color: #014451 !important;
}
.teal-200.text-secondary, .teal-200 .text-secondary {
  color: rgba(1, 68, 81, 0.7) !important;
}
.teal-200.text-hint, .teal-200 .text-hint, .teal-200.text-disabled, .teal-200 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.teal-200.divider, .teal-200 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.text-teal-200.text-secondary, .text-teal-200 .text-secondary {
  color: rgba(175, 236, 239, 0.7) !important;
}
.text-teal-200.text-hint, .text-teal-200 .text-hint, .text-teal-200.text-disabled, .text-teal-200 .text-disabled {
  color: rgba(175, 236, 239, 0.38) !important;
}
.text-teal-200.divider, .text-teal-200 .divider {
  color: rgba(175, 236, 239, 0.12) !important;
}
.teal-300 {
  background-color: #7EDCE2 !important;
  color: #014451 !important;
}
.teal-300.mat-icon, .teal-300 .mat-icon {
  color: #014451 !important;
}
.teal-300.text-secondary, .teal-300 .text-secondary {
  color: rgba(1, 68, 81, 0.7) !important;
}
.teal-300.text-hint, .teal-300 .text-hint, .teal-300.text-disabled, .teal-300 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.teal-300.divider, .teal-300 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.text-teal-300.text-secondary, .text-teal-300 .text-secondary {
  color: rgba(126, 220, 226, 0.7) !important;
}
.text-teal-300.text-hint, .text-teal-300 .text-hint, .text-teal-300.text-disabled, .text-teal-300 .text-disabled {
  color: rgba(126, 220, 226, 0.38) !important;
}
.text-teal-300.divider, .text-teal-300 .divider {
  color: rgba(126, 220, 226, 0.12) !important;
}
.teal-400 {
  background-color: #16BDCA !important;
  color: #014451 !important;
}
.teal-400.mat-icon, .teal-400 .mat-icon {
  color: #014451 !important;
}
.teal-400.text-secondary, .teal-400 .text-secondary {
  color: rgba(1, 68, 81, 0.7) !important;
}
.teal-400.text-hint, .teal-400 .text-hint, .teal-400.text-disabled, .teal-400 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.teal-400.divider, .teal-400 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.text-teal-400.text-secondary, .text-teal-400 .text-secondary {
  color: rgba(22, 189, 202, 0.7) !important;
}
.text-teal-400.text-hint, .text-teal-400 .text-hint, .text-teal-400.text-disabled, .text-teal-400 .text-disabled {
  color: rgba(22, 189, 202, 0.38) !important;
}
.text-teal-400.divider, .text-teal-400 .divider {
  color: rgba(22, 189, 202, 0.12) !important;
}
.teal-500 {
  background-color: #0694A2 !important;
  color: #EDFAFA !important;
}
.teal-500.mat-icon, .teal-500 .mat-icon {
  color: #EDFAFA !important;
}
.teal-500.text-secondary, .teal-500 .text-secondary {
  color: rgba(237, 250, 250, 0.7) !important;
}
.teal-500.text-hint, .teal-500 .text-hint, .teal-500.text-disabled, .teal-500 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.teal-500.divider, .teal-500 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.text-teal-500.text-secondary, .text-teal-500 .text-secondary {
  color: rgba(6, 148, 162, 0.7) !important;
}
.text-teal-500.text-hint, .text-teal-500 .text-hint, .text-teal-500.text-disabled, .text-teal-500 .text-disabled {
  color: rgba(6, 148, 162, 0.38) !important;
}
.text-teal-500.divider, .text-teal-500 .divider {
  color: rgba(6, 148, 162, 0.12) !important;
}
.teal-600 {
  background-color: #047481 !important;
  color: #EDFAFA !important;
}
.teal-600.mat-icon, .teal-600 .mat-icon {
  color: #EDFAFA !important;
}
.teal-600.text-secondary, .teal-600 .text-secondary {
  color: rgba(237, 250, 250, 0.7) !important;
}
.teal-600.text-hint, .teal-600 .text-hint, .teal-600.text-disabled, .teal-600 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.teal-600.divider, .teal-600 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.text-teal-600.text-secondary, .text-teal-600 .text-secondary {
  color: rgba(4, 116, 129, 0.7) !important;
}
.text-teal-600.text-hint, .text-teal-600 .text-hint, .text-teal-600.text-disabled, .text-teal-600 .text-disabled {
  color: rgba(4, 116, 129, 0.38) !important;
}
.text-teal-600.divider, .text-teal-600 .divider {
  color: rgba(4, 116, 129, 0.12) !important;
}
.teal-700 {
  background-color: #036672 !important;
  color: #EDFAFA !important;
}
.teal-700.mat-icon, .teal-700 .mat-icon {
  color: #EDFAFA !important;
}
.teal-700.text-secondary, .teal-700 .text-secondary {
  color: rgba(237, 250, 250, 0.7) !important;
}
.teal-700.text-hint, .teal-700 .text-hint, .teal-700.text-disabled, .teal-700 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.teal-700.divider, .teal-700 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.text-teal-700.text-secondary, .text-teal-700 .text-secondary {
  color: rgba(3, 102, 114, 0.7) !important;
}
.text-teal-700.text-hint, .text-teal-700 .text-hint, .text-teal-700.text-disabled, .text-teal-700 .text-disabled {
  color: rgba(3, 102, 114, 0.38) !important;
}
.text-teal-700.divider, .text-teal-700 .divider {
  color: rgba(3, 102, 114, 0.12) !important;
}
.teal-800 {
  background-color: #05505C !important;
  color: #EDFAFA !important;
}
.teal-800.mat-icon, .teal-800 .mat-icon {
  color: #EDFAFA !important;
}
.teal-800.text-secondary, .teal-800 .text-secondary {
  color: rgba(237, 250, 250, 0.7) !important;
}
.teal-800.text-hint, .teal-800 .text-hint, .teal-800.text-disabled, .teal-800 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.teal-800.divider, .teal-800 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.text-teal-800.text-secondary, .text-teal-800 .text-secondary {
  color: rgba(5, 80, 92, 0.7) !important;
}
.text-teal-800.text-hint, .text-teal-800 .text-hint, .text-teal-800.text-disabled, .text-teal-800 .text-disabled {
  color: rgba(5, 80, 92, 0.38) !important;
}
.text-teal-800.divider, .text-teal-800 .divider {
  color: rgba(5, 80, 92, 0.12) !important;
}
.teal-900 {
  background-color: #014451 !important;
  color: #EDFAFA !important;
}
.teal-900.mat-icon, .teal-900 .mat-icon {
  color: #EDFAFA !important;
}
.teal-900.text-secondary, .teal-900 .text-secondary {
  color: rgba(237, 250, 250, 0.7) !important;
}
.teal-900.text-hint, .teal-900 .text-hint, .teal-900.text-disabled, .teal-900 .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.teal-900.divider, .teal-900 .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.text-teal-900.text-secondary, .text-teal-900 .text-secondary {
  color: rgba(1, 68, 81, 0.7) !important;
}
.text-teal-900.text-hint, .text-teal-900 .text-hint, .text-teal-900.text-disabled, .text-teal-900 .text-disabled {
  color: rgba(1, 68, 81, 0.38) !important;
}
.text-teal-900.divider, .text-teal-900 .divider {
  color: rgba(1, 68, 81, 0.12) !important;
}
.teal {
  background-color: #0694A2 !important;
  color: #EDFAFA !important;
}
.teal.mat-icon, .teal .mat-icon {
  color: #EDFAFA !important;
}
.teal.text-secondary, .teal .text-secondary {
  color: rgba(237, 250, 250, 0.7) !important;
}
.teal.text-hint, .teal .text-hint, .teal.text-disabled, .teal .text-disabled {
  color: rgba(237, 250, 250, 0.38) !important;
}
.teal.divider, .teal .divider {
  color: rgba(237, 250, 250, 0.12) !important;
}
.text-teal.text-secondary, .text-teal .text-secondary {
  color: rgba(6, 148, 162, 0.7) !important;
}
.text-teal.text-hint, .text-teal .text-hint, .text-teal.text-disabled, .text-teal .text-disabled {
  color: rgba(6, 148, 162, 0.38) !important;
}
.text-teal.divider, .text-teal .divider {
  color: rgba(6, 148, 162, 0.12) !important;
}
.blue-50 {
  background-color: #EBF5FF !important;
  color: #233876 !important;
}
.blue-50.mat-icon, .blue-50 .mat-icon {
  color: #233876 !important;
}
.blue-50.text-secondary, .blue-50 .text-secondary {
  color: rgba(35, 56, 118, 0.7) !important;
}
.blue-50.text-hint, .blue-50 .text-hint, .blue-50.text-disabled, .blue-50 .text-disabled {
  color: rgba(35, 56, 118, 0.38) !important;
}
.blue-50.divider, .blue-50 .divider {
  color: rgba(35, 56, 118, 0.12) !important;
}
.text-blue-50.text-secondary, .text-blue-50 .text-secondary {
  color: rgba(235, 245, 255, 0.7) !important;
}
.text-blue-50.text-hint, .text-blue-50 .text-hint, .text-blue-50.text-disabled, .text-blue-50 .text-disabled {
  color: rgba(235, 245, 255, 0.38) !important;
}
.text-blue-50.divider, .text-blue-50 .divider {
  color: rgba(235, 245, 255, 0.12) !important;
}
.blue-100 {
  background-color: #E1EFFE !important;
  color: #233876 !important;
}
.blue-100.mat-icon, .blue-100 .mat-icon {
  color: #233876 !important;
}
.blue-100.text-secondary, .blue-100 .text-secondary {
  color: rgba(35, 56, 118, 0.7) !important;
}
.blue-100.text-hint, .blue-100 .text-hint, .blue-100.text-disabled, .blue-100 .text-disabled {
  color: rgba(35, 56, 118, 0.38) !important;
}
.blue-100.divider, .blue-100 .divider {
  color: rgba(35, 56, 118, 0.12) !important;
}
.text-blue-100.text-secondary, .text-blue-100 .text-secondary {
  color: rgba(225, 239, 254, 0.7) !important;
}
.text-blue-100.text-hint, .text-blue-100 .text-hint, .text-blue-100.text-disabled, .text-blue-100 .text-disabled {
  color: rgba(225, 239, 254, 0.38) !important;
}
.text-blue-100.divider, .text-blue-100 .divider {
  color: rgba(225, 239, 254, 0.12) !important;
}
.blue-200 {
  background-color: #C3DDFD !important;
  color: #233876 !important;
}
.blue-200.mat-icon, .blue-200 .mat-icon {
  color: #233876 !important;
}
.blue-200.text-secondary, .blue-200 .text-secondary {
  color: rgba(35, 56, 118, 0.7) !important;
}
.blue-200.text-hint, .blue-200 .text-hint, .blue-200.text-disabled, .blue-200 .text-disabled {
  color: rgba(35, 56, 118, 0.38) !important;
}
.blue-200.divider, .blue-200 .divider {
  color: rgba(35, 56, 118, 0.12) !important;
}
.text-blue-200.text-secondary, .text-blue-200 .text-secondary {
  color: rgba(195, 221, 253, 0.7) !important;
}
.text-blue-200.text-hint, .text-blue-200 .text-hint, .text-blue-200.text-disabled, .text-blue-200 .text-disabled {
  color: rgba(195, 221, 253, 0.38) !important;
}
.text-blue-200.divider, .text-blue-200 .divider {
  color: rgba(195, 221, 253, 0.12) !important;
}
.blue-300 {
  background-color: #A4CAFE !important;
  color: #233876 !important;
}
.blue-300.mat-icon, .blue-300 .mat-icon {
  color: #233876 !important;
}
.blue-300.text-secondary, .blue-300 .text-secondary {
  color: rgba(35, 56, 118, 0.7) !important;
}
.blue-300.text-hint, .blue-300 .text-hint, .blue-300.text-disabled, .blue-300 .text-disabled {
  color: rgba(35, 56, 118, 0.38) !important;
}
.blue-300.divider, .blue-300 .divider {
  color: rgba(35, 56, 118, 0.12) !important;
}
.text-blue-300.text-secondary, .text-blue-300 .text-secondary {
  color: rgba(164, 202, 254, 0.7) !important;
}
.text-blue-300.text-hint, .text-blue-300 .text-hint, .text-blue-300.text-disabled, .text-blue-300 .text-disabled {
  color: rgba(164, 202, 254, 0.38) !important;
}
.text-blue-300.divider, .text-blue-300 .divider {
  color: rgba(164, 202, 254, 0.12) !important;
}
.blue-400 {
  background-color: #76A9FA !important;
  color: #233876 !important;
}
.blue-400.mat-icon, .blue-400 .mat-icon {
  color: #233876 !important;
}
.blue-400.text-secondary, .blue-400 .text-secondary {
  color: rgba(35, 56, 118, 0.7) !important;
}
.blue-400.text-hint, .blue-400 .text-hint, .blue-400.text-disabled, .blue-400 .text-disabled {
  color: rgba(35, 56, 118, 0.38) !important;
}
.blue-400.divider, .blue-400 .divider {
  color: rgba(35, 56, 118, 0.12) !important;
}
.text-blue-400.text-secondary, .text-blue-400 .text-secondary {
  color: rgba(118, 169, 250, 0.7) !important;
}
.text-blue-400.text-hint, .text-blue-400 .text-hint, .text-blue-400.text-disabled, .text-blue-400 .text-disabled {
  color: rgba(118, 169, 250, 0.38) !important;
}
.text-blue-400.divider, .text-blue-400 .divider {
  color: rgba(118, 169, 250, 0.12) !important;
}
.blue-500 {
  background-color: #3F83F8 !important;
  color: #EBF5FF !important;
}
.blue-500.mat-icon, .blue-500 .mat-icon {
  color: #EBF5FF !important;
}
.blue-500.text-secondary, .blue-500 .text-secondary {
  color: rgba(235, 245, 255, 0.7) !important;
}
.blue-500.text-hint, .blue-500 .text-hint, .blue-500.text-disabled, .blue-500 .text-disabled {
  color: rgba(235, 245, 255, 0.38) !important;
}
.blue-500.divider, .blue-500 .divider {
  color: rgba(235, 245, 255, 0.12) !important;
}
.text-blue-500.text-secondary, .text-blue-500 .text-secondary {
  color: rgba(63, 131, 248, 0.7) !important;
}
.text-blue-500.text-hint, .text-blue-500 .text-hint, .text-blue-500.text-disabled, .text-blue-500 .text-disabled {
  color: rgba(63, 131, 248, 0.38) !important;
}
.text-blue-500.divider, .text-blue-500 .divider {
  color: rgba(63, 131, 248, 0.12) !important;
}
.blue-600 {
  background-color: #1C64F2 !important;
  color: #EBF5FF !important;
}
.blue-600.mat-icon, .blue-600 .mat-icon {
  color: #EBF5FF !important;
}
.blue-600.text-secondary, .blue-600 .text-secondary {
  color: rgba(235, 245, 255, 0.7) !important;
}
.blue-600.text-hint, .blue-600 .text-hint, .blue-600.text-disabled, .blue-600 .text-disabled {
  color: rgba(235, 245, 255, 0.38) !important;
}
.blue-600.divider, .blue-600 .divider {
  color: rgba(235, 245, 255, 0.12) !important;
}
.text-blue-600.text-secondary, .text-blue-600 .text-secondary {
  color: rgba(28, 100, 242, 0.7) !important;
}
.text-blue-600.text-hint, .text-blue-600 .text-hint, .text-blue-600.text-disabled, .text-blue-600 .text-disabled {
  color: rgba(28, 100, 242, 0.38) !important;
}
.text-blue-600.divider, .text-blue-600 .divider {
  color: rgba(28, 100, 242, 0.12) !important;
}
.blue-700 {
  background-color: #1A56DB !important;
  color: #EBF5FF !important;
}
.blue-700.mat-icon, .blue-700 .mat-icon {
  color: #EBF5FF !important;
}
.blue-700.text-secondary, .blue-700 .text-secondary {
  color: rgba(235, 245, 255, 0.7) !important;
}
.blue-700.text-hint, .blue-700 .text-hint, .blue-700.text-disabled, .blue-700 .text-disabled {
  color: rgba(235, 245, 255, 0.38) !important;
}
.blue-700.divider, .blue-700 .divider {
  color: rgba(235, 245, 255, 0.12) !important;
}
.text-blue-700.text-secondary, .text-blue-700 .text-secondary {
  color: rgba(26, 86, 219, 0.7) !important;
}
.text-blue-700.text-hint, .text-blue-700 .text-hint, .text-blue-700.text-disabled, .text-blue-700 .text-disabled {
  color: rgba(26, 86, 219, 0.38) !important;
}
.text-blue-700.divider, .text-blue-700 .divider {
  color: rgba(26, 86, 219, 0.12) !important;
}
.blue-800 {
  background-color: #1E429F !important;
  color: #EBF5FF !important;
}
.blue-800.mat-icon, .blue-800 .mat-icon {
  color: #EBF5FF !important;
}
.blue-800.text-secondary, .blue-800 .text-secondary {
  color: rgba(235, 245, 255, 0.7) !important;
}
.blue-800.text-hint, .blue-800 .text-hint, .blue-800.text-disabled, .blue-800 .text-disabled {
  color: rgba(235, 245, 255, 0.38) !important;
}
.blue-800.divider, .blue-800 .divider {
  color: rgba(235, 245, 255, 0.12) !important;
}
.text-blue-800.text-secondary, .text-blue-800 .text-secondary {
  color: rgba(30, 66, 159, 0.7) !important;
}
.text-blue-800.text-hint, .text-blue-800 .text-hint, .text-blue-800.text-disabled, .text-blue-800 .text-disabled {
  color: rgba(30, 66, 159, 0.38) !important;
}
.text-blue-800.divider, .text-blue-800 .divider {
  color: rgba(30, 66, 159, 0.12) !important;
}
.blue-900 {
  background-color: #233876 !important;
  color: #EBF5FF !important;
}
.blue-900.mat-icon, .blue-900 .mat-icon {
  color: #EBF5FF !important;
}
.blue-900.text-secondary, .blue-900 .text-secondary {
  color: rgba(235, 245, 255, 0.7) !important;
}
.blue-900.text-hint, .blue-900 .text-hint, .blue-900.text-disabled, .blue-900 .text-disabled {
  color: rgba(235, 245, 255, 0.38) !important;
}
.blue-900.divider, .blue-900 .divider {
  color: rgba(235, 245, 255, 0.12) !important;
}
.text-blue-900.text-secondary, .text-blue-900 .text-secondary {
  color: rgba(35, 56, 118, 0.7) !important;
}
.text-blue-900.text-hint, .text-blue-900 .text-hint, .text-blue-900.text-disabled, .text-blue-900 .text-disabled {
  color: rgba(35, 56, 118, 0.38) !important;
}
.text-blue-900.divider, .text-blue-900 .divider {
  color: rgba(35, 56, 118, 0.12) !important;
}
.blue {
  background-color: #3F83F8 !important;
  color: #EBF5FF !important;
}
.blue.mat-icon, .blue .mat-icon {
  color: #EBF5FF !important;
}
.blue.text-secondary, .blue .text-secondary {
  color: rgba(235, 245, 255, 0.7) !important;
}
.blue.text-hint, .blue .text-hint, .blue.text-disabled, .blue .text-disabled {
  color: rgba(235, 245, 255, 0.38) !important;
}
.blue.divider, .blue .divider {
  color: rgba(235, 245, 255, 0.12) !important;
}
.text-blue.text-secondary, .text-blue .text-secondary {
  color: rgba(63, 131, 248, 0.7) !important;
}
.text-blue.text-hint, .text-blue .text-hint, .text-blue.text-disabled, .text-blue .text-disabled {
  color: rgba(63, 131, 248, 0.38) !important;
}
.text-blue.divider, .text-blue .divider {
  color: rgba(63, 131, 248, 0.12) !important;
}
.indigo-50 {
  background-color: #F0F5FF !important;
  color: #362F78 !important;
}
.indigo-50.mat-icon, .indigo-50 .mat-icon {
  color: #362F78 !important;
}
.indigo-50.text-secondary, .indigo-50 .text-secondary {
  color: rgba(54, 47, 120, 0.7) !important;
}
.indigo-50.text-hint, .indigo-50 .text-hint, .indigo-50.text-disabled, .indigo-50 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.indigo-50.divider, .indigo-50 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.text-indigo-50.text-secondary, .text-indigo-50 .text-secondary {
  color: rgba(240, 245, 255, 0.7) !important;
}
.text-indigo-50.text-hint, .text-indigo-50 .text-hint, .text-indigo-50.text-disabled, .text-indigo-50 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.text-indigo-50.divider, .text-indigo-50 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.indigo-100 {
  background-color: #E5EDFF !important;
  color: #362F78 !important;
}
.indigo-100.mat-icon, .indigo-100 .mat-icon {
  color: #362F78 !important;
}
.indigo-100.text-secondary, .indigo-100 .text-secondary {
  color: rgba(54, 47, 120, 0.7) !important;
}
.indigo-100.text-hint, .indigo-100 .text-hint, .indigo-100.text-disabled, .indigo-100 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.indigo-100.divider, .indigo-100 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.text-indigo-100.text-secondary, .text-indigo-100 .text-secondary {
  color: rgba(229, 237, 255, 0.7) !important;
}
.text-indigo-100.text-hint, .text-indigo-100 .text-hint, .text-indigo-100.text-disabled, .text-indigo-100 .text-disabled {
  color: rgba(229, 237, 255, 0.38) !important;
}
.text-indigo-100.divider, .text-indigo-100 .divider {
  color: rgba(229, 237, 255, 0.12) !important;
}
.indigo-200 {
  background-color: #CDDBFE !important;
  color: #362F78 !important;
}
.indigo-200.mat-icon, .indigo-200 .mat-icon {
  color: #362F78 !important;
}
.indigo-200.text-secondary, .indigo-200 .text-secondary {
  color: rgba(54, 47, 120, 0.7) !important;
}
.indigo-200.text-hint, .indigo-200 .text-hint, .indigo-200.text-disabled, .indigo-200 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.indigo-200.divider, .indigo-200 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.text-indigo-200.text-secondary, .text-indigo-200 .text-secondary {
  color: rgba(205, 219, 254, 0.7) !important;
}
.text-indigo-200.text-hint, .text-indigo-200 .text-hint, .text-indigo-200.text-disabled, .text-indigo-200 .text-disabled {
  color: rgba(205, 219, 254, 0.38) !important;
}
.text-indigo-200.divider, .text-indigo-200 .divider {
  color: rgba(205, 219, 254, 0.12) !important;
}
.indigo-300 {
  background-color: #B4C6FC !important;
  color: #362F78 !important;
}
.indigo-300.mat-icon, .indigo-300 .mat-icon {
  color: #362F78 !important;
}
.indigo-300.text-secondary, .indigo-300 .text-secondary {
  color: rgba(54, 47, 120, 0.7) !important;
}
.indigo-300.text-hint, .indigo-300 .text-hint, .indigo-300.text-disabled, .indigo-300 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.indigo-300.divider, .indigo-300 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.text-indigo-300.text-secondary, .text-indigo-300 .text-secondary {
  color: rgba(180, 198, 252, 0.7) !important;
}
.text-indigo-300.text-hint, .text-indigo-300 .text-hint, .text-indigo-300.text-disabled, .text-indigo-300 .text-disabled {
  color: rgba(180, 198, 252, 0.38) !important;
}
.text-indigo-300.divider, .text-indigo-300 .divider {
  color: rgba(180, 198, 252, 0.12) !important;
}
.indigo-400 {
  background-color: #8DA2FB !important;
  color: #362F78 !important;
}
.indigo-400.mat-icon, .indigo-400 .mat-icon {
  color: #362F78 !important;
}
.indigo-400.text-secondary, .indigo-400 .text-secondary {
  color: rgba(54, 47, 120, 0.7) !important;
}
.indigo-400.text-hint, .indigo-400 .text-hint, .indigo-400.text-disabled, .indigo-400 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.indigo-400.divider, .indigo-400 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.text-indigo-400.text-secondary, .text-indigo-400 .text-secondary {
  color: rgba(141, 162, 251, 0.7) !important;
}
.text-indigo-400.text-hint, .text-indigo-400 .text-hint, .text-indigo-400.text-disabled, .text-indigo-400 .text-disabled {
  color: rgba(141, 162, 251, 0.38) !important;
}
.text-indigo-400.divider, .text-indigo-400 .divider {
  color: rgba(141, 162, 251, 0.12) !important;
}
.indigo-500 {
  background-color: #6875F5 !important;
  color: #F0F5FF !important;
}
.indigo-500.mat-icon, .indigo-500 .mat-icon {
  color: #F0F5FF !important;
}
.indigo-500.text-secondary, .indigo-500 .text-secondary {
  color: rgba(240, 245, 255, 0.7) !important;
}
.indigo-500.text-hint, .indigo-500 .text-hint, .indigo-500.text-disabled, .indigo-500 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.indigo-500.divider, .indigo-500 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.text-indigo-500.text-secondary, .text-indigo-500 .text-secondary {
  color: rgba(104, 117, 245, 0.7) !important;
}
.text-indigo-500.text-hint, .text-indigo-500 .text-hint, .text-indigo-500.text-disabled, .text-indigo-500 .text-disabled {
  color: rgba(104, 117, 245, 0.38) !important;
}
.text-indigo-500.divider, .text-indigo-500 .divider {
  color: rgba(104, 117, 245, 0.12) !important;
}
.indigo-600 {
  background-color: #5850EC !important;
  color: #F0F5FF !important;
}
.indigo-600.mat-icon, .indigo-600 .mat-icon {
  color: #F0F5FF !important;
}
.indigo-600.text-secondary, .indigo-600 .text-secondary {
  color: rgba(240, 245, 255, 0.7) !important;
}
.indigo-600.text-hint, .indigo-600 .text-hint, .indigo-600.text-disabled, .indigo-600 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.indigo-600.divider, .indigo-600 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.text-indigo-600.text-secondary, .text-indigo-600 .text-secondary {
  color: rgba(88, 80, 236, 0.7) !important;
}
.text-indigo-600.text-hint, .text-indigo-600 .text-hint, .text-indigo-600.text-disabled, .text-indigo-600 .text-disabled {
  color: rgba(88, 80, 236, 0.38) !important;
}
.text-indigo-600.divider, .text-indigo-600 .divider {
  color: rgba(88, 80, 236, 0.12) !important;
}
.indigo-700 {
  background-color: #5145CD !important;
  color: #F0F5FF !important;
}
.indigo-700.mat-icon, .indigo-700 .mat-icon {
  color: #F0F5FF !important;
}
.indigo-700.text-secondary, .indigo-700 .text-secondary {
  color: rgba(240, 245, 255, 0.7) !important;
}
.indigo-700.text-hint, .indigo-700 .text-hint, .indigo-700.text-disabled, .indigo-700 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.indigo-700.divider, .indigo-700 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.text-indigo-700.text-secondary, .text-indigo-700 .text-secondary {
  color: rgba(81, 69, 205, 0.7) !important;
}
.text-indigo-700.text-hint, .text-indigo-700 .text-hint, .text-indigo-700.text-disabled, .text-indigo-700 .text-disabled {
  color: rgba(81, 69, 205, 0.38) !important;
}
.text-indigo-700.divider, .text-indigo-700 .divider {
  color: rgba(81, 69, 205, 0.12) !important;
}
.indigo-800 {
  background-color: #42389D !important;
  color: #F0F5FF !important;
}
.indigo-800.mat-icon, .indigo-800 .mat-icon {
  color: #F0F5FF !important;
}
.indigo-800.text-secondary, .indigo-800 .text-secondary {
  color: rgba(240, 245, 255, 0.7) !important;
}
.indigo-800.text-hint, .indigo-800 .text-hint, .indigo-800.text-disabled, .indigo-800 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.indigo-800.divider, .indigo-800 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.text-indigo-800.text-secondary, .text-indigo-800 .text-secondary {
  color: rgba(66, 56, 157, 0.7) !important;
}
.text-indigo-800.text-hint, .text-indigo-800 .text-hint, .text-indigo-800.text-disabled, .text-indigo-800 .text-disabled {
  color: rgba(66, 56, 157, 0.38) !important;
}
.text-indigo-800.divider, .text-indigo-800 .divider {
  color: rgba(66, 56, 157, 0.12) !important;
}
.indigo-900 {
  background-color: #362F78 !important;
  color: #F0F5FF !important;
}
.indigo-900.mat-icon, .indigo-900 .mat-icon {
  color: #F0F5FF !important;
}
.indigo-900.text-secondary, .indigo-900 .text-secondary {
  color: rgba(240, 245, 255, 0.7) !important;
}
.indigo-900.text-hint, .indigo-900 .text-hint, .indigo-900.text-disabled, .indigo-900 .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.indigo-900.divider, .indigo-900 .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.text-indigo-900.text-secondary, .text-indigo-900 .text-secondary {
  color: rgba(54, 47, 120, 0.7) !important;
}
.text-indigo-900.text-hint, .text-indigo-900 .text-hint, .text-indigo-900.text-disabled, .text-indigo-900 .text-disabled {
  color: rgba(54, 47, 120, 0.38) !important;
}
.text-indigo-900.divider, .text-indigo-900 .divider {
  color: rgba(54, 47, 120, 0.12) !important;
}
.indigo {
  background-color: #6875F5 !important;
  color: #F0F5FF !important;
}
.indigo.mat-icon, .indigo .mat-icon {
  color: #F0F5FF !important;
}
.indigo.text-secondary, .indigo .text-secondary {
  color: rgba(240, 245, 255, 0.7) !important;
}
.indigo.text-hint, .indigo .text-hint, .indigo.text-disabled, .indigo .text-disabled {
  color: rgba(240, 245, 255, 0.38) !important;
}
.indigo.divider, .indigo .divider {
  color: rgba(240, 245, 255, 0.12) !important;
}
.text-indigo.text-secondary, .text-indigo .text-secondary {
  color: rgba(104, 117, 245, 0.7) !important;
}
.text-indigo.text-hint, .text-indigo .text-hint, .text-indigo.text-disabled, .text-indigo .text-disabled {
  color: rgba(104, 117, 245, 0.38) !important;
}
.text-indigo.divider, .text-indigo .divider {
  color: rgba(104, 117, 245, 0.12) !important;
}
.purple-50 {
  background-color: #F6F5FF !important;
  color: #4A1D96 !important;
}
.purple-50.mat-icon, .purple-50 .mat-icon {
  color: #4A1D96 !important;
}
.purple-50.text-secondary, .purple-50 .text-secondary {
  color: rgba(74, 29, 150, 0.7) !important;
}
.purple-50.text-hint, .purple-50 .text-hint, .purple-50.text-disabled, .purple-50 .text-disabled {
  color: rgba(74, 29, 150, 0.38) !important;
}
.purple-50.divider, .purple-50 .divider {
  color: rgba(74, 29, 150, 0.12) !important;
}
.text-purple-50.text-secondary, .text-purple-50 .text-secondary {
  color: rgba(246, 245, 255, 0.7) !important;
}
.text-purple-50.text-hint, .text-purple-50 .text-hint, .text-purple-50.text-disabled, .text-purple-50 .text-disabled {
  color: rgba(246, 245, 255, 0.38) !important;
}
.text-purple-50.divider, .text-purple-50 .divider {
  color: rgba(246, 245, 255, 0.12) !important;
}
.purple-100 {
  background-color: #EDEBFE !important;
  color: #4A1D96 !important;
}
.purple-100.mat-icon, .purple-100 .mat-icon {
  color: #4A1D96 !important;
}
.purple-100.text-secondary, .purple-100 .text-secondary {
  color: rgba(74, 29, 150, 0.7) !important;
}
.purple-100.text-hint, .purple-100 .text-hint, .purple-100.text-disabled, .purple-100 .text-disabled {
  color: rgba(74, 29, 150, 0.38) !important;
}
.purple-100.divider, .purple-100 .divider {
  color: rgba(74, 29, 150, 0.12) !important;
}
.text-purple-100.text-secondary, .text-purple-100 .text-secondary {
  color: rgba(237, 235, 254, 0.7) !important;
}
.text-purple-100.text-hint, .text-purple-100 .text-hint, .text-purple-100.text-disabled, .text-purple-100 .text-disabled {
  color: rgba(237, 235, 254, 0.38) !important;
}
.text-purple-100.divider, .text-purple-100 .divider {
  color: rgba(237, 235, 254, 0.12) !important;
}
.purple-200 {
  background-color: #DCD7FE !important;
  color: #4A1D96 !important;
}
.purple-200.mat-icon, .purple-200 .mat-icon {
  color: #4A1D96 !important;
}
.purple-200.text-secondary, .purple-200 .text-secondary {
  color: rgba(74, 29, 150, 0.7) !important;
}
.purple-200.text-hint, .purple-200 .text-hint, .purple-200.text-disabled, .purple-200 .text-disabled {
  color: rgba(74, 29, 150, 0.38) !important;
}
.purple-200.divider, .purple-200 .divider {
  color: rgba(74, 29, 150, 0.12) !important;
}
.text-purple-200.text-secondary, .text-purple-200 .text-secondary {
  color: rgba(220, 215, 254, 0.7) !important;
}
.text-purple-200.text-hint, .text-purple-200 .text-hint, .text-purple-200.text-disabled, .text-purple-200 .text-disabled {
  color: rgba(220, 215, 254, 0.38) !important;
}
.text-purple-200.divider, .text-purple-200 .divider {
  color: rgba(220, 215, 254, 0.12) !important;
}
.purple-300 {
  background-color: #CABFFD !important;
  color: #4A1D96 !important;
}
.purple-300.mat-icon, .purple-300 .mat-icon {
  color: #4A1D96 !important;
}
.purple-300.text-secondary, .purple-300 .text-secondary {
  color: rgba(74, 29, 150, 0.7) !important;
}
.purple-300.text-hint, .purple-300 .text-hint, .purple-300.text-disabled, .purple-300 .text-disabled {
  color: rgba(74, 29, 150, 0.38) !important;
}
.purple-300.divider, .purple-300 .divider {
  color: rgba(74, 29, 150, 0.12) !important;
}
.text-purple-300.text-secondary, .text-purple-300 .text-secondary {
  color: rgba(202, 191, 253, 0.7) !important;
}
.text-purple-300.text-hint, .text-purple-300 .text-hint, .text-purple-300.text-disabled, .text-purple-300 .text-disabled {
  color: rgba(202, 191, 253, 0.38) !important;
}
.text-purple-300.divider, .text-purple-300 .divider {
  color: rgba(202, 191, 253, 0.12) !important;
}
.purple-400 {
  background-color: #AC94FA !important;
  color: #4A1D96 !important;
}
.purple-400.mat-icon, .purple-400 .mat-icon {
  color: #4A1D96 !important;
}
.purple-400.text-secondary, .purple-400 .text-secondary {
  color: rgba(74, 29, 150, 0.7) !important;
}
.purple-400.text-hint, .purple-400 .text-hint, .purple-400.text-disabled, .purple-400 .text-disabled {
  color: rgba(74, 29, 150, 0.38) !important;
}
.purple-400.divider, .purple-400 .divider {
  color: rgba(74, 29, 150, 0.12) !important;
}
.text-purple-400.text-secondary, .text-purple-400 .text-secondary {
  color: rgba(172, 148, 250, 0.7) !important;
}
.text-purple-400.text-hint, .text-purple-400 .text-hint, .text-purple-400.text-disabled, .text-purple-400 .text-disabled {
  color: rgba(172, 148, 250, 0.38) !important;
}
.text-purple-400.divider, .text-purple-400 .divider {
  color: rgba(172, 148, 250, 0.12) !important;
}
.purple-500 {
  background-color: #9061F9 !important;
  color: #F6F5FF !important;
}
.purple-500.mat-icon, .purple-500 .mat-icon {
  color: #F6F5FF !important;
}
.purple-500.text-secondary, .purple-500 .text-secondary {
  color: rgba(246, 245, 255, 0.7) !important;
}
.purple-500.text-hint, .purple-500 .text-hint, .purple-500.text-disabled, .purple-500 .text-disabled {
  color: rgba(246, 245, 255, 0.38) !important;
}
.purple-500.divider, .purple-500 .divider {
  color: rgba(246, 245, 255, 0.12) !important;
}
.text-purple-500.text-secondary, .text-purple-500 .text-secondary {
  color: rgba(144, 97, 249, 0.7) !important;
}
.text-purple-500.text-hint, .text-purple-500 .text-hint, .text-purple-500.text-disabled, .text-purple-500 .text-disabled {
  color: rgba(144, 97, 249, 0.38) !important;
}
.text-purple-500.divider, .text-purple-500 .divider {
  color: rgba(144, 97, 249, 0.12) !important;
}
.purple-600 {
  background-color: #7E3AF2 !important;
  color: #F6F5FF !important;
}
.purple-600.mat-icon, .purple-600 .mat-icon {
  color: #F6F5FF !important;
}
.purple-600.text-secondary, .purple-600 .text-secondary {
  color: rgba(246, 245, 255, 0.7) !important;
}
.purple-600.text-hint, .purple-600 .text-hint, .purple-600.text-disabled, .purple-600 .text-disabled {
  color: rgba(246, 245, 255, 0.38) !important;
}
.purple-600.divider, .purple-600 .divider {
  color: rgba(246, 245, 255, 0.12) !important;
}
.text-purple-600.text-secondary, .text-purple-600 .text-secondary {
  color: rgba(126, 58, 242, 0.7) !important;
}
.text-purple-600.text-hint, .text-purple-600 .text-hint, .text-purple-600.text-disabled, .text-purple-600 .text-disabled {
  color: rgba(126, 58, 242, 0.38) !important;
}
.text-purple-600.divider, .text-purple-600 .divider {
  color: rgba(126, 58, 242, 0.12) !important;
}
.purple-700 {
  background-color: #6C2BD9 !important;
  color: #F6F5FF !important;
}
.purple-700.mat-icon, .purple-700 .mat-icon {
  color: #F6F5FF !important;
}
.purple-700.text-secondary, .purple-700 .text-secondary {
  color: rgba(246, 245, 255, 0.7) !important;
}
.purple-700.text-hint, .purple-700 .text-hint, .purple-700.text-disabled, .purple-700 .text-disabled {
  color: rgba(246, 245, 255, 0.38) !important;
}
.purple-700.divider, .purple-700 .divider {
  color: rgba(246, 245, 255, 0.12) !important;
}
.text-purple-700.text-secondary, .text-purple-700 .text-secondary {
  color: rgba(108, 43, 217, 0.7) !important;
}
.text-purple-700.text-hint, .text-purple-700 .text-hint, .text-purple-700.text-disabled, .text-purple-700 .text-disabled {
  color: rgba(108, 43, 217, 0.38) !important;
}
.text-purple-700.divider, .text-purple-700 .divider {
  color: rgba(108, 43, 217, 0.12) !important;
}
.purple-800 {
  background-color: #5521B5 !important;
  color: #F6F5FF !important;
}
.purple-800.mat-icon, .purple-800 .mat-icon {
  color: #F6F5FF !important;
}
.purple-800.text-secondary, .purple-800 .text-secondary {
  color: rgba(246, 245, 255, 0.7) !important;
}
.purple-800.text-hint, .purple-800 .text-hint, .purple-800.text-disabled, .purple-800 .text-disabled {
  color: rgba(246, 245, 255, 0.38) !important;
}
.purple-800.divider, .purple-800 .divider {
  color: rgba(246, 245, 255, 0.12) !important;
}
.text-purple-800.text-secondary, .text-purple-800 .text-secondary {
  color: rgba(85, 33, 181, 0.7) !important;
}
.text-purple-800.text-hint, .text-purple-800 .text-hint, .text-purple-800.text-disabled, .text-purple-800 .text-disabled {
  color: rgba(85, 33, 181, 0.38) !important;
}
.text-purple-800.divider, .text-purple-800 .divider {
  color: rgba(85, 33, 181, 0.12) !important;
}
.purple-900 {
  background-color: #4A1D96 !important;
  color: #F6F5FF !important;
}
.purple-900.mat-icon, .purple-900 .mat-icon {
  color: #F6F5FF !important;
}
.purple-900.text-secondary, .purple-900 .text-secondary {
  color: rgba(246, 245, 255, 0.7) !important;
}
.purple-900.text-hint, .purple-900 .text-hint, .purple-900.text-disabled, .purple-900 .text-disabled {
  color: rgba(246, 245, 255, 0.38) !important;
}
.purple-900.divider, .purple-900 .divider {
  color: rgba(246, 245, 255, 0.12) !important;
}
.text-purple-900.text-secondary, .text-purple-900 .text-secondary {
  color: rgba(74, 29, 150, 0.7) !important;
}
.text-purple-900.text-hint, .text-purple-900 .text-hint, .text-purple-900.text-disabled, .text-purple-900 .text-disabled {
  color: rgba(74, 29, 150, 0.38) !important;
}
.text-purple-900.divider, .text-purple-900 .divider {
  color: rgba(74, 29, 150, 0.12) !important;
}
.purple {
  background-color: #9061F9 !important;
  color: #F6F5FF !important;
}
.purple.mat-icon, .purple .mat-icon {
  color: #F6F5FF !important;
}
.purple.text-secondary, .purple .text-secondary {
  color: rgba(246, 245, 255, 0.7) !important;
}
.purple.text-hint, .purple .text-hint, .purple.text-disabled, .purple .text-disabled {
  color: rgba(246, 245, 255, 0.38) !important;
}
.purple.divider, .purple .divider {
  color: rgba(246, 245, 255, 0.12) !important;
}
.text-purple.text-secondary, .text-purple .text-secondary {
  color: rgba(144, 97, 249, 0.7) !important;
}
.text-purple.text-hint, .text-purple .text-hint, .text-purple.text-disabled, .text-purple .text-disabled {
  color: rgba(144, 97, 249, 0.38) !important;
}
.text-purple.divider, .text-purple .divider {
  color: rgba(144, 97, 249, 0.12) !important;
}
.pink-50 {
  background-color: #FDF2F8 !important;
  color: #751A3D !important;
}
.pink-50.mat-icon, .pink-50 .mat-icon {
  color: #751A3D !important;
}
.pink-50.text-secondary, .pink-50 .text-secondary {
  color: rgba(117, 26, 61, 0.7) !important;
}
.pink-50.text-hint, .pink-50 .text-hint, .pink-50.text-disabled, .pink-50 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.pink-50.divider, .pink-50 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.text-pink-50.text-secondary, .text-pink-50 .text-secondary {
  color: rgba(253, 242, 248, 0.7) !important;
}
.text-pink-50.text-hint, .text-pink-50 .text-hint, .text-pink-50.text-disabled, .text-pink-50 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.text-pink-50.divider, .text-pink-50 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.pink-100 {
  background-color: #FCE8F3 !important;
  color: #751A3D !important;
}
.pink-100.mat-icon, .pink-100 .mat-icon {
  color: #751A3D !important;
}
.pink-100.text-secondary, .pink-100 .text-secondary {
  color: rgba(117, 26, 61, 0.7) !important;
}
.pink-100.text-hint, .pink-100 .text-hint, .pink-100.text-disabled, .pink-100 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.pink-100.divider, .pink-100 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.text-pink-100.text-secondary, .text-pink-100 .text-secondary {
  color: rgba(252, 232, 243, 0.7) !important;
}
.text-pink-100.text-hint, .text-pink-100 .text-hint, .text-pink-100.text-disabled, .text-pink-100 .text-disabled {
  color: rgba(252, 232, 243, 0.38) !important;
}
.text-pink-100.divider, .text-pink-100 .divider {
  color: rgba(252, 232, 243, 0.12) !important;
}
.pink-200 {
  background-color: #FAD1E8 !important;
  color: #751A3D !important;
}
.pink-200.mat-icon, .pink-200 .mat-icon {
  color: #751A3D !important;
}
.pink-200.text-secondary, .pink-200 .text-secondary {
  color: rgba(117, 26, 61, 0.7) !important;
}
.pink-200.text-hint, .pink-200 .text-hint, .pink-200.text-disabled, .pink-200 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.pink-200.divider, .pink-200 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.text-pink-200.text-secondary, .text-pink-200 .text-secondary {
  color: rgba(250, 209, 232, 0.7) !important;
}
.text-pink-200.text-hint, .text-pink-200 .text-hint, .text-pink-200.text-disabled, .text-pink-200 .text-disabled {
  color: rgba(250, 209, 232, 0.38) !important;
}
.text-pink-200.divider, .text-pink-200 .divider {
  color: rgba(250, 209, 232, 0.12) !important;
}
.pink-300 {
  background-color: #F8B4D9 !important;
  color: #751A3D !important;
}
.pink-300.mat-icon, .pink-300 .mat-icon {
  color: #751A3D !important;
}
.pink-300.text-secondary, .pink-300 .text-secondary {
  color: rgba(117, 26, 61, 0.7) !important;
}
.pink-300.text-hint, .pink-300 .text-hint, .pink-300.text-disabled, .pink-300 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.pink-300.divider, .pink-300 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.text-pink-300.text-secondary, .text-pink-300 .text-secondary {
  color: rgba(248, 180, 217, 0.7) !important;
}
.text-pink-300.text-hint, .text-pink-300 .text-hint, .text-pink-300.text-disabled, .text-pink-300 .text-disabled {
  color: rgba(248, 180, 217, 0.38) !important;
}
.text-pink-300.divider, .text-pink-300 .divider {
  color: rgba(248, 180, 217, 0.12) !important;
}
.pink-400 {
  background-color: #F17EB8 !important;
  color: #751A3D !important;
}
.pink-400.mat-icon, .pink-400 .mat-icon {
  color: #751A3D !important;
}
.pink-400.text-secondary, .pink-400 .text-secondary {
  color: rgba(117, 26, 61, 0.7) !important;
}
.pink-400.text-hint, .pink-400 .text-hint, .pink-400.text-disabled, .pink-400 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.pink-400.divider, .pink-400 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.text-pink-400.text-secondary, .text-pink-400 .text-secondary {
  color: rgba(241, 126, 184, 0.7) !important;
}
.text-pink-400.text-hint, .text-pink-400 .text-hint, .text-pink-400.text-disabled, .text-pink-400 .text-disabled {
  color: rgba(241, 126, 184, 0.38) !important;
}
.text-pink-400.divider, .text-pink-400 .divider {
  color: rgba(241, 126, 184, 0.12) !important;
}
.pink-500 {
  background-color: #E74694 !important;
  color: #FDF2F8 !important;
}
.pink-500.mat-icon, .pink-500 .mat-icon {
  color: #FDF2F8 !important;
}
.pink-500.text-secondary, .pink-500 .text-secondary {
  color: rgba(253, 242, 248, 0.7) !important;
}
.pink-500.text-hint, .pink-500 .text-hint, .pink-500.text-disabled, .pink-500 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.pink-500.divider, .pink-500 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.text-pink-500.text-secondary, .text-pink-500 .text-secondary {
  color: rgba(231, 70, 148, 0.7) !important;
}
.text-pink-500.text-hint, .text-pink-500 .text-hint, .text-pink-500.text-disabled, .text-pink-500 .text-disabled {
  color: rgba(231, 70, 148, 0.38) !important;
}
.text-pink-500.divider, .text-pink-500 .divider {
  color: rgba(231, 70, 148, 0.12) !important;
}
.pink-600 {
  background-color: #D61F69 !important;
  color: #FDF2F8 !important;
}
.pink-600.mat-icon, .pink-600 .mat-icon {
  color: #FDF2F8 !important;
}
.pink-600.text-secondary, .pink-600 .text-secondary {
  color: rgba(253, 242, 248, 0.7) !important;
}
.pink-600.text-hint, .pink-600 .text-hint, .pink-600.text-disabled, .pink-600 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.pink-600.divider, .pink-600 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.text-pink-600.text-secondary, .text-pink-600 .text-secondary {
  color: rgba(214, 31, 105, 0.7) !important;
}
.text-pink-600.text-hint, .text-pink-600 .text-hint, .text-pink-600.text-disabled, .text-pink-600 .text-disabled {
  color: rgba(214, 31, 105, 0.38) !important;
}
.text-pink-600.divider, .text-pink-600 .divider {
  color: rgba(214, 31, 105, 0.12) !important;
}
.pink-700 {
  background-color: #BF125D !important;
  color: #FDF2F8 !important;
}
.pink-700.mat-icon, .pink-700 .mat-icon {
  color: #FDF2F8 !important;
}
.pink-700.text-secondary, .pink-700 .text-secondary {
  color: rgba(253, 242, 248, 0.7) !important;
}
.pink-700.text-hint, .pink-700 .text-hint, .pink-700.text-disabled, .pink-700 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.pink-700.divider, .pink-700 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.text-pink-700.text-secondary, .text-pink-700 .text-secondary {
  color: rgba(191, 18, 93, 0.7) !important;
}
.text-pink-700.text-hint, .text-pink-700 .text-hint, .text-pink-700.text-disabled, .text-pink-700 .text-disabled {
  color: rgba(191, 18, 93, 0.38) !important;
}
.text-pink-700.divider, .text-pink-700 .divider {
  color: rgba(191, 18, 93, 0.12) !important;
}
.pink-800 {
  background-color: #99154B !important;
  color: #FDF2F8 !important;
}
.pink-800.mat-icon, .pink-800 .mat-icon {
  color: #FDF2F8 !important;
}
.pink-800.text-secondary, .pink-800 .text-secondary {
  color: rgba(253, 242, 248, 0.7) !important;
}
.pink-800.text-hint, .pink-800 .text-hint, .pink-800.text-disabled, .pink-800 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.pink-800.divider, .pink-800 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.text-pink-800.text-secondary, .text-pink-800 .text-secondary {
  color: rgba(153, 21, 75, 0.7) !important;
}
.text-pink-800.text-hint, .text-pink-800 .text-hint, .text-pink-800.text-disabled, .text-pink-800 .text-disabled {
  color: rgba(153, 21, 75, 0.38) !important;
}
.text-pink-800.divider, .text-pink-800 .divider {
  color: rgba(153, 21, 75, 0.12) !important;
}
.pink-900 {
  background-color: #751A3D !important;
  color: #FDF2F8 !important;
}
.pink-900.mat-icon, .pink-900 .mat-icon {
  color: #FDF2F8 !important;
}
.pink-900.text-secondary, .pink-900 .text-secondary {
  color: rgba(253, 242, 248, 0.7) !important;
}
.pink-900.text-hint, .pink-900 .text-hint, .pink-900.text-disabled, .pink-900 .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.pink-900.divider, .pink-900 .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.text-pink-900.text-secondary, .text-pink-900 .text-secondary {
  color: rgba(117, 26, 61, 0.7) !important;
}
.text-pink-900.text-hint, .text-pink-900 .text-hint, .text-pink-900.text-disabled, .text-pink-900 .text-disabled {
  color: rgba(117, 26, 61, 0.38) !important;
}
.text-pink-900.divider, .text-pink-900 .divider {
  color: rgba(117, 26, 61, 0.12) !important;
}
.pink {
  background-color: #E74694 !important;
  color: #FDF2F8 !important;
}
.pink.mat-icon, .pink .mat-icon {
  color: #FDF2F8 !important;
}
.pink.text-secondary, .pink .text-secondary {
  color: rgba(253, 242, 248, 0.7) !important;
}
.pink.text-hint, .pink .text-hint, .pink.text-disabled, .pink .text-disabled {
  color: rgba(253, 242, 248, 0.38) !important;
}
.pink.divider, .pink .divider {
  color: rgba(253, 242, 248, 0.12) !important;
}
.text-pink.text-secondary, .text-pink .text-secondary {
  color: rgba(231, 70, 148, 0.7) !important;
}
.text-pink.text-hint, .text-pink .text-hint, .text-pink.text-disabled, .text-pink .text-disabled {
  color: rgba(231, 70, 148, 0.38) !important;
}
.text-pink.divider, .text-pink .divider {
  color: rgba(231, 70, 148, 0.12) !important;
}
.icon-current .mat-icon {
  color: currentColor !important;
}
.icon-transparent .mat-icon {
  color: transparent !important;
}
.icon-white .mat-icon {
  color: #FFFFFF !important;
}
.icon-black .mat-icon {
  color: #000000 !important;
}
.icon-gray-50 .mat-icon {
  color: #F9FAFB !important;
}
.icon-gray-100 .mat-icon {
  color: #F4F5F7 !important;
}
.icon-gray-200 .mat-icon {
  color: #E5E7EB !important;
}
.icon-gray-300 .mat-icon {
  color: #D2D6DC !important;
}
.icon-gray-400 .mat-icon {
  color: #9FA6B2 !important;
}
.icon-gray-500 .mat-icon {
  color: #6B7280 !important;
}
.icon-gray-600 .mat-icon {
  color: #4B5563 !important;
}
.icon-gray-700 .mat-icon {
  color: #374151 !important;
}
.icon-gray-800 .mat-icon {
  color: #252F3F !important;
}
.icon-gray-900 .mat-icon {
  color: #161E2E !important;
}
.icon-gray .mat-icon {
  color: #6B7280 !important;
}
.icon-cool-gray-50 .mat-icon {
  color: #FBFDFE !important;
}
.icon-cool-gray-100 .mat-icon {
  color: #F1F5F9 !important;
}
.icon-cool-gray-200 .mat-icon {
  color: #E2E8F0 !important;
}
.icon-cool-gray-300 .mat-icon {
  color: #CFD8E3 !important;
}
.icon-cool-gray-400 .mat-icon {
  color: #97A6BA !important;
}
.icon-cool-gray-500 .mat-icon {
  color: #64748B !important;
}
.icon-cool-gray-600 .mat-icon {
  color: #475569 !important;
}
.icon-cool-gray-700 .mat-icon {
  color: #364152 !important;
}
.icon-cool-gray-800 .mat-icon {
  color: #27303F !important;
}
.icon-cool-gray-900 .mat-icon {
  color: #1A202E !important;
}
.icon-cool-gray .mat-icon {
  color: #64748B !important;
}
.icon-red-50 .mat-icon {
  color: #FDF2F2 !important;
}
.icon-red-100 .mat-icon {
  color: #FDE8E8 !important;
}
.icon-red-200 .mat-icon {
  color: #FBD5D5 !important;
}
.icon-red-300 .mat-icon {
  color: #F8B4B4 !important;
}
.icon-red-400 .mat-icon {
  color: #F98080 !important;
}
.icon-red-500 .mat-icon {
  color: #F05252 !important;
}
.icon-red-600 .mat-icon {
  color: #E02424 !important;
}
.icon-red-700 .mat-icon {
  color: #C81E1E !important;
}
.icon-red-800 .mat-icon {
  color: #9B1C1C !important;
}
.icon-red-900 .mat-icon {
  color: #771D1D !important;
}
.icon-red .mat-icon {
  color: #F05252 !important;
}
.icon-orange-50 .mat-icon {
  color: #FFF8F1 !important;
}
.icon-orange-100 .mat-icon {
  color: #FEECDC !important;
}
.icon-orange-200 .mat-icon {
  color: #FCD9BD !important;
}
.icon-orange-300 .mat-icon {
  color: #FDBA8C !important;
}
.icon-orange-400 .mat-icon {
  color: #FF8A4C !important;
}
.icon-orange-500 .mat-icon {
  color: #FF5A1F !important;
}
.icon-orange-600 .mat-icon {
  color: #D03801 !important;
}
.icon-orange-700 .mat-icon {
  color: #B43403 !important;
}
.icon-orange-800 .mat-icon {
  color: #8A2C0D !important;
}
.icon-orange-900 .mat-icon {
  color: #771D1D !important;
}
.icon-orange .mat-icon {
  color: #FF5A1F !important;
}
.icon-yellow-50 .mat-icon {
  color: #FDFDEA !important;
}
.icon-yellow-100 .mat-icon {
  color: #FDF6B2 !important;
}
.icon-yellow-200 .mat-icon {
  color: #FCE96A !important;
}
.icon-yellow-300 .mat-icon {
  color: #FACA15 !important;
}
.icon-yellow-400 .mat-icon {
  color: #E3A008 !important;
}
.icon-yellow-500 .mat-icon {
  color: #C27803 !important;
}
.icon-yellow-600 .mat-icon {
  color: #9F580A !important;
}
.icon-yellow-700 .mat-icon {
  color: #8E4B10 !important;
}
.icon-yellow-800 .mat-icon {
  color: #723B13 !important;
}
.icon-yellow-900 .mat-icon {
  color: #633112 !important;
}
.icon-yellow .mat-icon {
  color: #C27803 !important;
}
.icon-green-50 .mat-icon {
  color: #F3FAF7 !important;
}
.icon-green-100 .mat-icon {
  color: #DEF7EC !important;
}
.icon-green-200 .mat-icon {
  color: #BCF0DA !important;
}
.icon-green-300 .mat-icon {
  color: #84E1BC !important;
}
.icon-green-400 .mat-icon {
  color: #31C48D !important;
}
.icon-green-500 .mat-icon {
  color: #0E9F6E !important;
}
.icon-green-600 .mat-icon {
  color: #057A55 !important;
}
.icon-green-700 .mat-icon {
  color: #046C4E !important;
}
.icon-green-800 .mat-icon {
  color: #03543F !important;
}
.icon-green-900 .mat-icon {
  color: #014737 !important;
}
.icon-green .mat-icon {
  color: #0E9F6E !important;
}
.icon-teal-50 .mat-icon {
  color: #EDFAFA !important;
}
.icon-teal-100 .mat-icon {
  color: #D5F5F6 !important;
}
.icon-teal-200 .mat-icon {
  color: #AFECEF !important;
}
.icon-teal-300 .mat-icon {
  color: #7EDCE2 !important;
}
.icon-teal-400 .mat-icon {
  color: #16BDCA !important;
}
.icon-teal-500 .mat-icon {
  color: #0694A2 !important;
}
.icon-teal-600 .mat-icon {
  color: #047481 !important;
}
.icon-teal-700 .mat-icon {
  color: #036672 !important;
}
.icon-teal-800 .mat-icon {
  color: #05505C !important;
}
.icon-teal-900 .mat-icon {
  color: #014451 !important;
}
.icon-teal .mat-icon {
  color: #0694A2 !important;
}
.icon-blue-50 .mat-icon {
  color: #EBF5FF !important;
}
.icon-blue-100 .mat-icon {
  color: #E1EFFE !important;
}
.icon-blue-200 .mat-icon {
  color: #C3DDFD !important;
}
.icon-blue-300 .mat-icon {
  color: #A4CAFE !important;
}
.icon-blue-400 .mat-icon {
  color: #76A9FA !important;
}
.icon-blue-500 .mat-icon {
  color: #3F83F8 !important;
}
.icon-blue-600 .mat-icon {
  color: #1C64F2 !important;
}
.icon-blue-700 .mat-icon {
  color: #1A56DB !important;
}
.icon-blue-800 .mat-icon {
  color: #1E429F !important;
}
.icon-blue-900 .mat-icon {
  color: #233876 !important;
}
.icon-blue .mat-icon {
  color: #3F83F8 !important;
}
.icon-indigo-50 .mat-icon {
  color: #F0F5FF !important;
}
.icon-indigo-100 .mat-icon {
  color: #E5EDFF !important;
}
.icon-indigo-200 .mat-icon {
  color: #CDDBFE !important;
}
.icon-indigo-300 .mat-icon {
  color: #B4C6FC !important;
}
.icon-indigo-400 .mat-icon {
  color: #8DA2FB !important;
}
.icon-indigo-500 .mat-icon {
  color: #6875F5 !important;
}
.icon-indigo-600 .mat-icon {
  color: #5850EC !important;
}
.icon-indigo-700 .mat-icon {
  color: #5145CD !important;
}
.icon-indigo-800 .mat-icon {
  color: #42389D !important;
}
.icon-indigo-900 .mat-icon {
  color: #362F78 !important;
}
.icon-indigo .mat-icon {
  color: #6875F5 !important;
}
.icon-purple-50 .mat-icon {
  color: #F6F5FF !important;
}
.icon-purple-100 .mat-icon {
  color: #EDEBFE !important;
}
.icon-purple-200 .mat-icon {
  color: #DCD7FE !important;
}
.icon-purple-300 .mat-icon {
  color: #CABFFD !important;
}
.icon-purple-400 .mat-icon {
  color: #AC94FA !important;
}
.icon-purple-500 .mat-icon {
  color: #9061F9 !important;
}
.icon-purple-600 .mat-icon {
  color: #7E3AF2 !important;
}
.icon-purple-700 .mat-icon {
  color: #6C2BD9 !important;
}
.icon-purple-800 .mat-icon {
  color: #5521B5 !important;
}
.icon-purple-900 .mat-icon {
  color: #4A1D96 !important;
}
.icon-purple .mat-icon {
  color: #9061F9 !important;
}
.icon-pink-50 .mat-icon {
  color: #FDF2F8 !important;
}
.icon-pink-100 .mat-icon {
  color: #FCE8F3 !important;
}
.icon-pink-200 .mat-icon {
  color: #FAD1E8 !important;
}
.icon-pink-300 .mat-icon {
  color: #F8B4D9 !important;
}
.icon-pink-400 .mat-icon {
  color: #F17EB8 !important;
}
.icon-pink-500 .mat-icon {
  color: #E74694 !important;
}
.icon-pink-600 .mat-icon {
  color: #D61F69 !important;
}
.icon-pink-700 .mat-icon {
  color: #BF125D !important;
}
.icon-pink-800 .mat-icon {
  color: #99154B !important;
}
.icon-pink-900 .mat-icon {
  color: #751A3D !important;
}
.icon-pink .mat-icon {
  color: #E74694 !important;
}
.icon-size-12 {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  min-height: 12px !important;
  font-size: 12px !important;
  line-height: 12px !important;
}
.icon-size-12 svg {
  width: 12px !important;
  height: 12px !important;
}
.icon-size-14 {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  font-size: 14px !important;
  line-height: 14px !important;
}
.icon-size-14 svg {
  width: 14px !important;
  height: 14px !important;
}
.icon-size-16 {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  font-size: 16px !important;
  line-height: 16px !important;
}
.icon-size-16 svg {
  width: 16px !important;
  height: 16px !important;
}
.icon-size-18 {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  font-size: 18px !important;
  line-height: 18px !important;
}
.icon-size-18 svg {
  width: 18px !important;
  height: 18px !important;
}
.icon-size-20 {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  font-size: 20px !important;
  line-height: 20px !important;
}
.icon-size-20 svg {
  width: 20px !important;
  height: 20px !important;
}
.icon-size-24 {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  font-size: 24px !important;
  line-height: 24px !important;
}
.icon-size-24 svg {
  width: 24px !important;
  height: 24px !important;
}
.icon-size-32 {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  font-size: 32px !important;
  line-height: 32px !important;
}
.icon-size-32 svg {
  width: 32px !important;
  height: 32px !important;
}
.icon-size-40 {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  font-size: 40px !important;
  line-height: 40px !important;
}
.icon-size-40 svg {
  width: 40px !important;
  height: 40px !important;
}
.icon-size-48 {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  font-size: 48px !important;
  line-height: 48px !important;
}
.icon-size-48 svg {
  width: 48px !important;
  height: 48px !important;
}
.icon-size-56 {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  font-size: 56px !important;
  line-height: 56px !important;
}
.icon-size-56 svg {
  width: 56px !important;
  height: 56px !important;
}
.icon-size-64 {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  font-size: 64px !important;
  line-height: 64px !important;
}
.icon-size-64 svg {
  width: 64px !important;
  height: 64px !important;
}
.icon-size-72 {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  min-height: 72px !important;
  font-size: 72px !important;
  line-height: 72px !important;
}
.icon-size-72 svg {
  width: 72px !important;
  height: 72px !important;
}
.icon-size-80 {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  min-height: 80px !important;
  font-size: 80px !important;
  line-height: 80px !important;
}
.icon-size-80 svg {
  width: 80px !important;
  height: 80px !important;
}
.icon-size-88 {
  width: 88px !important;
  height: 88px !important;
  min-width: 88px !important;
  min-height: 88px !important;
  font-size: 88px !important;
  line-height: 88px !important;
}
.icon-size-88 svg {
  width: 88px !important;
  height: 88px !important;
}
.icon-size-96 {
  width: 96px !important;
  height: 96px !important;
  min-width: 96px !important;
  min-height: 96px !important;
  font-size: 96px !important;
  line-height: 96px !important;
}
.icon-size-96 svg {
  width: 96px !important;
  height: 96px !important;
}
.mirror {
  transform: scale(-1, 1) !important;
}
.mirror-vertical {
  transform: scale(1, -1) !important;
}
/* ----------------------------------------------------------------------------------------------------- */
/* Use custom @variant directives here to build them.
/* ----------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------- */
/*  Use this directive to control where Tailwind injects the responsive variations of each utility.
/*  If omitted, Tailwind will append these classes to the very end of your stylesheet by default.
/* ----------------------------------------------------------------------------------------------------- */
@media (min-width: 0) and (max-width: 599px) {
  .xs\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .xs\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .xs\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xs\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .xs\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .xs\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .xs\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .xs\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .xs\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .xs\:rounded-none {
    border-radius: 0 !important;
  }

  .xs\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .xs\:rounded {
    border-radius: 0.25rem !important;
  }

  .xs\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .xs\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .xs\:rounded-full {
    border-radius: 9999px !important;
  }

  .xs\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .xs\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .xs\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xs\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xs\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .xs\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .xs\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .xs\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .xs\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .xs\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .xs\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .xs\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .xs\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .xs\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .xs\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .xs\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .xs\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .xs\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .xs\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .xs\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .xs\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .xs\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .xs\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xs\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xs\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .xs\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .xs\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .xs\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .xs\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .xs\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .xs\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .xs\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .xs\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .xs\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .xs\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .xs\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .xs\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .xs\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .xs\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .xs\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .xs\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .xs\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .xs\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .xs\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .xs\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .xs\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .xs\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .xs\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .xs\:border-0 {
    border-width: 0 !important;
  }

  .xs\:border-2 {
    border-width: 2px !important;
  }

  .xs\:border-4 {
    border-width: 4px !important;
  }

  .xs\:border-8 {
    border-width: 8px !important;
  }

  .xs\:border {
    border-width: 1px !important;
  }

  .xs\:border-t-0 {
    border-top-width: 0 !important;
  }

  .xs\:border-r-0 {
    border-right-width: 0 !important;
  }

  .xs\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .xs\:border-l-0 {
    border-left-width: 0 !important;
  }

  .xs\:border-t-2 {
    border-top-width: 2px !important;
  }

  .xs\:border-r-2 {
    border-right-width: 2px !important;
  }

  .xs\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .xs\:border-l-2 {
    border-left-width: 2px !important;
  }

  .xs\:border-t-4 {
    border-top-width: 4px !important;
  }

  .xs\:border-r-4 {
    border-right-width: 4px !important;
  }

  .xs\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .xs\:border-l-4 {
    border-left-width: 4px !important;
  }

  .xs\:border-t-8 {
    border-top-width: 8px !important;
  }

  .xs\:border-r-8 {
    border-right-width: 8px !important;
  }

  .xs\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .xs\:border-l-8 {
    border-left-width: 8px !important;
  }

  .xs\:border-t {
    border-top-width: 1px !important;
  }

  .xs\:border-r {
    border-right-width: 1px !important;
  }

  .xs\:border-b {
    border-bottom-width: 1px !important;
  }

  .xs\:border-l {
    border-left-width: 1px !important;
  }

  .xs\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .xs\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .xs\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .xs\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .xs\:first\:border:first-child {
    border-width: 1px !important;
  }

  .xs\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .xs\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .xs\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .xs\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .xs\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .xs\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .xs\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .xs\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .xs\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .xs\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .xs\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .xs\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .xs\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .xs\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .xs\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .xs\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .xs\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .xs\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .xs\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .xs\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .xs\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .xs\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .xs\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .xs\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .xs\:last\:border:last-child {
    border-width: 1px !important;
  }

  .xs\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .xs\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .xs\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .xs\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .xs\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .xs\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .xs\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .xs\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .xs\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .xs\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .xs\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .xs\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .xs\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .xs\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .xs\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .xs\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .xs\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .xs\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .xs\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .xs\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .xs\:block {
    display: block !important;
  }

  .xs\:inline-block {
    display: inline-block !important;
  }

  .xs\:inline {
    display: inline !important;
  }

  .xs\:flex {
    display: flex !important;
  }

  .xs\:inline-flex {
    display: inline-flex !important;
  }

  .xs\:table {
    display: table !important;
  }

  .xs\:table-caption {
    display: table-caption !important;
  }

  .xs\:table-cell {
    display: table-cell !important;
  }

  .xs\:table-column {
    display: table-column !important;
  }

  .xs\:table-column-group {
    display: table-column-group !important;
  }

  .xs\:table-footer-group {
    display: table-footer-group !important;
  }

  .xs\:table-header-group {
    display: table-header-group !important;
  }

  .xs\:table-row-group {
    display: table-row-group !important;
  }

  .xs\:table-row {
    display: table-row !important;
  }

  .xs\:flow-root {
    display: flow-root !important;
  }

  .xs\:grid {
    display: grid !important;
  }

  .xs\:inline-grid {
    display: inline-grid !important;
  }

  .xs\:contents {
    display: contents !important;
  }

  .xs\:hidden {
    display: none !important;
  }

  .xs\:flex-row {
    flex-direction: row !important;
  }

  .xs\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .xs\:flex-col {
    flex-direction: column !important;
  }

  .xs\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .xs\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .xs\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .xs\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .xs\:items-start {
    align-items: flex-start !important;
  }

  .xs\:items-end {
    align-items: flex-end !important;
  }

  .xs\:items-center {
    align-items: center !important;
  }

  .xs\:items-baseline {
    align-items: baseline !important;
  }

  .xs\:items-stretch {
    align-items: stretch !important;
  }

  .xs\:self-auto {
    align-self: auto !important;
  }

  .xs\:self-start {
    align-self: flex-start !important;
  }

  .xs\:self-end {
    align-self: flex-end !important;
  }

  .xs\:self-center {
    align-self: center !important;
  }

  .xs\:self-stretch {
    align-self: stretch !important;
  }

  .xs\:justify-start {
    justify-content: flex-start !important;
  }

  .xs\:justify-end {
    justify-content: flex-end !important;
  }

  .xs\:justify-center {
    justify-content: center !important;
  }

  .xs\:justify-between {
    justify-content: space-between !important;
  }

  .xs\:justify-around {
    justify-content: space-around !important;
  }

  .xs\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .xs\:content-center {
    align-content: center !important;
  }

  .xs\:content-start {
    align-content: flex-start !important;
  }

  .xs\:content-end {
    align-content: flex-end !important;
  }

  .xs\:content-between {
    align-content: space-between !important;
  }

  .xs\:content-around {
    align-content: space-around !important;
  }

  .xs\:flex-0 {
    flex: 0 0 auto !important;
  }

  .xs\:flex-1 {
    flex: 1 1 0% !important;
  }

  .xs\:flex-auto {
    flex: 1 1 auto !important;
  }

  .xs\:flex-initial {
    flex: 0 1 auto !important;
  }

  .xs\:flex-none {
    flex: none !important;
  }

  .xs\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .xs\:flex-grow {
    flex-grow: 1 !important;
  }

  .xs\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .xs\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .xs\:order-1 {
    order: 1 !important;
  }

  .xs\:order-2 {
    order: 2 !important;
  }

  .xs\:order-3 {
    order: 3 !important;
  }

  .xs\:order-4 {
    order: 4 !important;
  }

  .xs\:order-5 {
    order: 5 !important;
  }

  .xs\:order-6 {
    order: 6 !important;
  }

  .xs\:order-7 {
    order: 7 !important;
  }

  .xs\:order-8 {
    order: 8 !important;
  }

  .xs\:order-9 {
    order: 9 !important;
  }

  .xs\:order-10 {
    order: 10 !important;
  }

  .xs\:order-11 {
    order: 11 !important;
  }

  .xs\:order-12 {
    order: 12 !important;
  }

  .xs\:order-first {
    order: -9999 !important;
  }

  .xs\:order-last {
    order: 9999 !important;
  }

  .xs\:order-none {
    order: 0 !important;
  }

  .xs\:font-hairline {
    font-weight: 100 !important;
  }

  .xs\:font-thin {
    font-weight: 200 !important;
  }

  .xs\:font-light {
    font-weight: 300 !important;
  }

  .xs\:font-normal {
    font-weight: 400 !important;
  }

  .xs\:font-medium {
    font-weight: 500 !important;
  }

  .xs\:font-semibold {
    font-weight: 600 !important;
  }

  .xs\:font-bold {
    font-weight: 700 !important;
  }

  .xs\:font-extrabold {
    font-weight: 800 !important;
  }

  .xs\:font-black {
    font-weight: 900 !important;
  }

  .xs\:h-0 {
    height: 0 !important;
  }

  .xs\:h-1 {
    height: 0.25rem !important;
  }

  .xs\:h-2 {
    height: 0.5rem !important;
  }

  .xs\:h-3 {
    height: 0.75rem !important;
  }

  .xs\:h-4 {
    height: 1rem !important;
  }

  .xs\:h-5 {
    height: 1.25rem !important;
  }

  .xs\:h-6 {
    height: 1.5rem !important;
  }

  .xs\:h-7 {
    height: 1.75rem !important;
  }

  .xs\:h-8 {
    height: 2rem !important;
  }

  .xs\:h-9 {
    height: 2.25rem !important;
  }

  .xs\:h-10 {
    height: 2.5rem !important;
  }

  .xs\:h-11 {
    height: 2.75rem !important;
  }

  .xs\:h-12 {
    height: 3rem !important;
  }

  .xs\:h-13 {
    height: 3.25rem !important;
  }

  .xs\:h-14 {
    height: 3.5rem !important;
  }

  .xs\:h-15 {
    height: 3.75rem !important;
  }

  .xs\:h-16 {
    height: 4rem !important;
  }

  .xs\:h-18 {
    height: 4.5rem !important;
  }

  .xs\:h-20 {
    height: 5rem !important;
  }

  .xs\:h-22 {
    height: 5.5rem !important;
  }

  .xs\:h-24 {
    height: 6rem !important;
  }

  .xs\:h-26 {
    height: 6.5rem !important;
  }

  .xs\:h-28 {
    height: 7rem !important;
  }

  .xs\:h-30 {
    height: 7.5rem !important;
  }

  .xs\:h-32 {
    height: 8rem !important;
  }

  .xs\:h-36 {
    height: 9rem !important;
  }

  .xs\:h-40 {
    height: 10rem !important;
  }

  .xs\:h-44 {
    height: 11rem !important;
  }

  .xs\:h-48 {
    height: 12rem !important;
  }

  .xs\:h-50 {
    height: 12.5rem !important;
  }

  .xs\:h-52 {
    height: 13rem !important;
  }

  .xs\:h-56 {
    height: 14rem !important;
  }

  .xs\:h-60 {
    height: 15rem !important;
  }

  .xs\:h-64 {
    height: 16rem !important;
  }

  .xs\:h-72 {
    height: 18rem !important;
  }

  .xs\:h-80 {
    height: 20rem !important;
  }

  .xs\:h-90 {
    height: 24rem !important;
  }

  .xs\:h-96 {
    height: 24rem !important;
  }

  .xs\:h-100 {
    height: 25rem !important;
  }

  .xs\:h-120 {
    height: 30rem !important;
  }

  .xs\:h-128 {
    height: 32rem !important;
  }

  .xs\:h-140 {
    height: 35rem !important;
  }

  .xs\:h-160 {
    height: 40rem !important;
  }

  .xs\:h-180 {
    height: 45rem !important;
  }

  .xs\:h-192 {
    height: 48rem !important;
  }

  .xs\:h-200 {
    height: 50rem !important;
  }

  .xs\:h-240 {
    height: 60rem !important;
  }

  .xs\:h-256 {
    height: 64rem !important;
  }

  .xs\:h-280 {
    height: 70rem !important;
  }

  .xs\:h-320 {
    height: 80rem !important;
  }

  .xs\:h-360 {
    height: 90rem !important;
  }

  .xs\:h-400 {
    height: 100rem !important;
  }

  .xs\:h-480 {
    height: 120rem !important;
  }

  .xs\:h-auto {
    height: auto !important;
  }

  .xs\:h-px {
    height: 1px !important;
  }

  .xs\:h-0\.5 {
    height: 0.125rem !important;
  }

  .xs\:h-1\.5 {
    height: 0.375rem !important;
  }

  .xs\:h-2\.5 {
    height: 0.625rem !important;
  }

  .xs\:h-3\.5 {
    height: 0.875rem !important;
  }

  .xs\:h-1\/2 {
    height: 50% !important;
  }

  .xs\:h-1\/3 {
    height: 33.333333% !important;
  }

  .xs\:h-2\/3 {
    height: 66.666667% !important;
  }

  .xs\:h-1\/4 {
    height: 25% !important;
  }

  .xs\:h-2\/4 {
    height: 50% !important;
  }

  .xs\:h-3\/4 {
    height: 75% !important;
  }

  .xs\:h-1\/5 {
    height: 20% !important;
  }

  .xs\:h-2\/5 {
    height: 40% !important;
  }

  .xs\:h-3\/5 {
    height: 60% !important;
  }

  .xs\:h-4\/5 {
    height: 80% !important;
  }

  .xs\:h-1\/6 {
    height: 16.666667% !important;
  }

  .xs\:h-2\/6 {
    height: 33.333333% !important;
  }

  .xs\:h-3\/6 {
    height: 50% !important;
  }

  .xs\:h-4\/6 {
    height: 66.666667% !important;
  }

  .xs\:h-5\/6 {
    height: 83.333333% !important;
  }

  .xs\:h-1\/12 {
    height: 8.333333% !important;
  }

  .xs\:h-2\/12 {
    height: 16.666667% !important;
  }

  .xs\:h-3\/12 {
    height: 25% !important;
  }

  .xs\:h-4\/12 {
    height: 33.333333% !important;
  }

  .xs\:h-5\/12 {
    height: 41.666667% !important;
  }

  .xs\:h-6\/12 {
    height: 50% !important;
  }

  .xs\:h-7\/12 {
    height: 58.333333% !important;
  }

  .xs\:h-8\/12 {
    height: 66.666667% !important;
  }

  .xs\:h-9\/12 {
    height: 75% !important;
  }

  .xs\:h-10\/12 {
    height: 83.333333% !important;
  }

  .xs\:h-11\/12 {
    height: 91.666667% !important;
  }

  .xs\:h-full {
    height: 100% !important;
  }

  .xs\:h-2px {
    height: 2px !important;
  }

  .xs\:h-screen {
    height: 100vh !important;
  }

  .xs\:text-xs {
    font-size: 0.625rem !important;
  }

  .xs\:text-sm {
    font-size: 0.75rem !important;
  }

  .xs\:text-md {
    font-size: 0.8125rem !important;
  }

  .xs\:text-base {
    font-size: 0.875rem !important;
  }

  .xs\:text-lg {
    font-size: 1rem !important;
  }

  .xs\:text-xl {
    font-size: 1.125rem !important;
  }

  .xs\:text-2xl {
    font-size: 1.25rem !important;
  }

  .xs\:text-3xl {
    font-size: 1.5rem !important;
  }

  .xs\:text-4xl {
    font-size: 2rem !important;
  }

  .xs\:text-5xl {
    font-size: 2.25rem !important;
  }

  .xs\:text-6xl {
    font-size: 2.5rem !important;
  }

  .xs\:text-7xl {
    font-size: 3rem !important;
  }

  .xs\:text-8xl {
    font-size: 4rem !important;
  }

  .xs\:text-9xl {
    font-size: 6rem !important;
  }

  .xs\:text-10xl {
    font-size: 8rem !important;
  }

  .xs\:leading-3 {
    line-height: 0.75rem !important;
  }

  .xs\:leading-4 {
    line-height: 1rem !important;
  }

  .xs\:leading-5 {
    line-height: 1.25rem !important;
  }

  .xs\:leading-6 {
    line-height: 1.5rem !important;
  }

  .xs\:leading-7 {
    line-height: 1.75rem !important;
  }

  .xs\:leading-8 {
    line-height: 2rem !important;
  }

  .xs\:leading-9 {
    line-height: 2.25rem !important;
  }

  .xs\:leading-10 {
    line-height: 2.5rem !important;
  }

  .xs\:leading-none {
    line-height: 1 !important;
  }

  .xs\:leading-tight {
    line-height: 1.25 !important;
  }

  .xs\:leading-snug {
    line-height: 1.375 !important;
  }

  .xs\:leading-normal {
    line-height: 1.5 !important;
  }

  .xs\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .xs\:leading-loose {
    line-height: 2 !important;
  }

  .xs\:m-0 {
    margin: 0 !important;
  }

  .xs\:m-1 {
    margin: 0.25rem !important;
  }

  .xs\:m-2 {
    margin: 0.5rem !important;
  }

  .xs\:m-3 {
    margin: 0.75rem !important;
  }

  .xs\:m-4 {
    margin: 1rem !important;
  }

  .xs\:m-5 {
    margin: 1.25rem !important;
  }

  .xs\:m-6 {
    margin: 1.5rem !important;
  }

  .xs\:m-7 {
    margin: 1.75rem !important;
  }

  .xs\:m-8 {
    margin: 2rem !important;
  }

  .xs\:m-9 {
    margin: 2.25rem !important;
  }

  .xs\:m-10 {
    margin: 2.5rem !important;
  }

  .xs\:m-11 {
    margin: 2.75rem !important;
  }

  .xs\:m-12 {
    margin: 3rem !important;
  }

  .xs\:m-13 {
    margin: 3.25rem !important;
  }

  .xs\:m-14 {
    margin: 3.5rem !important;
  }

  .xs\:m-15 {
    margin: 3.75rem !important;
  }

  .xs\:m-16 {
    margin: 4rem !important;
  }

  .xs\:m-18 {
    margin: 4.5rem !important;
  }

  .xs\:m-20 {
    margin: 5rem !important;
  }

  .xs\:m-22 {
    margin: 5.5rem !important;
  }

  .xs\:m-24 {
    margin: 6rem !important;
  }

  .xs\:m-26 {
    margin: 6.5rem !important;
  }

  .xs\:m-28 {
    margin: 7rem !important;
  }

  .xs\:m-30 {
    margin: 7.5rem !important;
  }

  .xs\:m-32 {
    margin: 8rem !important;
  }

  .xs\:m-36 {
    margin: 9rem !important;
  }

  .xs\:m-40 {
    margin: 10rem !important;
  }

  .xs\:m-44 {
    margin: 11rem !important;
  }

  .xs\:m-48 {
    margin: 12rem !important;
  }

  .xs\:m-50 {
    margin: 12.5rem !important;
  }

  .xs\:m-52 {
    margin: 13rem !important;
  }

  .xs\:m-56 {
    margin: 14rem !important;
  }

  .xs\:m-60 {
    margin: 15rem !important;
  }

  .xs\:m-64 {
    margin: 16rem !important;
  }

  .xs\:m-72 {
    margin: 18rem !important;
  }

  .xs\:m-80 {
    margin: 20rem !important;
  }

  .xs\:m-90 {
    margin: 24rem !important;
  }

  .xs\:m-96 {
    margin: 24rem !important;
  }

  .xs\:m-100 {
    margin: 25rem !important;
  }

  .xs\:m-120 {
    margin: 30rem !important;
  }

  .xs\:m-128 {
    margin: 32rem !important;
  }

  .xs\:m-140 {
    margin: 35rem !important;
  }

  .xs\:m-160 {
    margin: 40rem !important;
  }

  .xs\:m-180 {
    margin: 45rem !important;
  }

  .xs\:m-192 {
    margin: 48rem !important;
  }

  .xs\:m-200 {
    margin: 50rem !important;
  }

  .xs\:m-240 {
    margin: 60rem !important;
  }

  .xs\:m-256 {
    margin: 64rem !important;
  }

  .xs\:m-280 {
    margin: 70rem !important;
  }

  .xs\:m-320 {
    margin: 80rem !important;
  }

  .xs\:m-360 {
    margin: 90rem !important;
  }

  .xs\:m-400 {
    margin: 100rem !important;
  }

  .xs\:m-480 {
    margin: 120rem !important;
  }

  .xs\:m-auto {
    margin: auto !important;
  }

  .xs\:m-px {
    margin: 1px !important;
  }

  .xs\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .xs\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .xs\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .xs\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .xs\:m-1\/2 {
    margin: 50% !important;
  }

  .xs\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .xs\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .xs\:m-1\/4 {
    margin: 25% !important;
  }

  .xs\:m-2\/4 {
    margin: 50% !important;
  }

  .xs\:m-3\/4 {
    margin: 75% !important;
  }

  .xs\:m-1\/5 {
    margin: 20% !important;
  }

  .xs\:m-2\/5 {
    margin: 40% !important;
  }

  .xs\:m-3\/5 {
    margin: 60% !important;
  }

  .xs\:m-4\/5 {
    margin: 80% !important;
  }

  .xs\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .xs\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .xs\:m-3\/6 {
    margin: 50% !important;
  }

  .xs\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .xs\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .xs\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .xs\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .xs\:m-3\/12 {
    margin: 25% !important;
  }

  .xs\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .xs\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .xs\:m-6\/12 {
    margin: 50% !important;
  }

  .xs\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .xs\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .xs\:m-9\/12 {
    margin: 75% !important;
  }

  .xs\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .xs\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .xs\:m-full {
    margin: 100% !important;
  }

  .xs\:m-2px {
    margin: 2px !important;
  }

  .xs\:-m-1 {
    margin: -0.25rem !important;
  }

  .xs\:-m-2 {
    margin: -0.5rem !important;
  }

  .xs\:-m-3 {
    margin: -0.75rem !important;
  }

  .xs\:-m-4 {
    margin: -1rem !important;
  }

  .xs\:-m-5 {
    margin: -1.25rem !important;
  }

  .xs\:-m-6 {
    margin: -1.5rem !important;
  }

  .xs\:-m-7 {
    margin: -1.75rem !important;
  }

  .xs\:-m-8 {
    margin: -2rem !important;
  }

  .xs\:-m-9 {
    margin: -2.25rem !important;
  }

  .xs\:-m-10 {
    margin: -2.5rem !important;
  }

  .xs\:-m-11 {
    margin: -2.75rem !important;
  }

  .xs\:-m-12 {
    margin: -3rem !important;
  }

  .xs\:-m-13 {
    margin: -3.25rem !important;
  }

  .xs\:-m-14 {
    margin: -3.5rem !important;
  }

  .xs\:-m-15 {
    margin: -3.75rem !important;
  }

  .xs\:-m-16 {
    margin: -4rem !important;
  }

  .xs\:-m-18 {
    margin: -4.5rem !important;
  }

  .xs\:-m-20 {
    margin: -5rem !important;
  }

  .xs\:-m-22 {
    margin: -5.5rem !important;
  }

  .xs\:-m-24 {
    margin: -6rem !important;
  }

  .xs\:-m-26 {
    margin: -6.5rem !important;
  }

  .xs\:-m-28 {
    margin: -7rem !important;
  }

  .xs\:-m-30 {
    margin: -7.5rem !important;
  }

  .xs\:-m-32 {
    margin: -8rem !important;
  }

  .xs\:-m-36 {
    margin: -9rem !important;
  }

  .xs\:-m-40 {
    margin: -10rem !important;
  }

  .xs\:-m-44 {
    margin: -11rem !important;
  }

  .xs\:-m-48 {
    margin: -12rem !important;
  }

  .xs\:-m-50 {
    margin: -12.5rem !important;
  }

  .xs\:-m-52 {
    margin: -13rem !important;
  }

  .xs\:-m-56 {
    margin: -14rem !important;
  }

  .xs\:-m-60 {
    margin: -15rem !important;
  }

  .xs\:-m-64 {
    margin: -16rem !important;
  }

  .xs\:-m-72 {
    margin: -18rem !important;
  }

  .xs\:-m-80 {
    margin: -20rem !important;
  }

  .xs\:-m-90 {
    margin: -24rem !important;
  }

  .xs\:-m-96 {
    margin: -24rem !important;
  }

  .xs\:-m-100 {
    margin: -25rem !important;
  }

  .xs\:-m-120 {
    margin: -30rem !important;
  }

  .xs\:-m-128 {
    margin: -32rem !important;
  }

  .xs\:-m-140 {
    margin: -35rem !important;
  }

  .xs\:-m-160 {
    margin: -40rem !important;
  }

  .xs\:-m-180 {
    margin: -45rem !important;
  }

  .xs\:-m-192 {
    margin: -48rem !important;
  }

  .xs\:-m-200 {
    margin: -50rem !important;
  }

  .xs\:-m-240 {
    margin: -60rem !important;
  }

  .xs\:-m-256 {
    margin: -64rem !important;
  }

  .xs\:-m-280 {
    margin: -70rem !important;
  }

  .xs\:-m-320 {
    margin: -80rem !important;
  }

  .xs\:-m-360 {
    margin: -90rem !important;
  }

  .xs\:-m-400 {
    margin: -100rem !important;
  }

  .xs\:-m-480 {
    margin: -120rem !important;
  }

  .xs\:-m-px {
    margin: -1px !important;
  }

  .xs\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .xs\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .xs\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .xs\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .xs\:-m-1\/2 {
    margin: -50% !important;
  }

  .xs\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .xs\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .xs\:-m-1\/4 {
    margin: -25% !important;
  }

  .xs\:-m-2\/4 {
    margin: -50% !important;
  }

  .xs\:-m-3\/4 {
    margin: -75% !important;
  }

  .xs\:-m-1\/5 {
    margin: -20% !important;
  }

  .xs\:-m-2\/5 {
    margin: -40% !important;
  }

  .xs\:-m-3\/5 {
    margin: -60% !important;
  }

  .xs\:-m-4\/5 {
    margin: -80% !important;
  }

  .xs\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .xs\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .xs\:-m-3\/6 {
    margin: -50% !important;
  }

  .xs\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .xs\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .xs\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .xs\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .xs\:-m-3\/12 {
    margin: -25% !important;
  }

  .xs\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .xs\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .xs\:-m-6\/12 {
    margin: -50% !important;
  }

  .xs\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .xs\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .xs\:-m-9\/12 {
    margin: -75% !important;
  }

  .xs\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .xs\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .xs\:-m-full {
    margin: -100% !important;
  }

  .xs\:-m-2px {
    margin: -2px !important;
  }

  .xs\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .xs\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .xs\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .xs\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .xs\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .xs\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .xs\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .xs\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .xs\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .xs\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .xs\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .xs\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .xs\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .xs\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .xs\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .xs\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .xs\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .xs\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .xs\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .xs\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .xs\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .xs\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .xs\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .xs\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .xs\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .xs\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .xs\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .xs\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .xs\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .xs\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .xs\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .xs\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .xs\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .xs\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .xs\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .xs\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .xs\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .xs\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .xs\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .xs\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .xs\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .xs\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .xs\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .xs\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .xs\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .xs\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .xs\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .xs\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .xs\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .xs\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .xs\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .xs\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .xs\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .xs\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .xs\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .xs\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .xs\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .xs\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .xs\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .xs\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .xs\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .xs\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .xs\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .xs\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .xs\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .xs\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .xs\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .xs\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .xs\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .xs\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .xs\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .xs\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .xs\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .xs\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .xs\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .xs\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .xs\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .xs\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .xs\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .xs\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .xs\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .xs\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .xs\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .xs\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .xs\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .xs\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .xs\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .xs\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .xs\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .xs\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .xs\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .xs\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .xs\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .xs\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .xs\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .xs\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .xs\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .xs\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .xs\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .xs\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .xs\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .xs\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .xs\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .xs\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .xs\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .xs\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .xs\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .xs\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .xs\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .xs\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .xs\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .xs\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .xs\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .xs\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .xs\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .xs\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .xs\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .xs\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .xs\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .xs\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .xs\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .xs\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .xs\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .xs\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .xs\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .xs\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .xs\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .xs\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .xs\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .xs\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .xs\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .xs\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .xs\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .xs\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .xs\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .xs\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .xs\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .xs\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .xs\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .xs\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .xs\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .xs\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .xs\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .xs\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .xs\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .xs\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .xs\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .xs\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .xs\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .xs\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .xs\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .xs\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .xs\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .xs\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .xs\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .xs\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .xs\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .xs\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .xs\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .xs\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .xs\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .xs\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .xs\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .xs\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .xs\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .xs\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .xs\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .xs\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .xs\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .xs\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .xs\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .xs\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .xs\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .xs\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .xs\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .xs\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .xs\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .xs\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .xs\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .xs\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .xs\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .xs\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .xs\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .xs\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .xs\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .xs\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .xs\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .xs\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .xs\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .xs\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .xs\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .xs\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .xs\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .xs\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .xs\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .xs\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .xs\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .xs\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .xs\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .xs\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .xs\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .xs\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .xs\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .xs\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .xs\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .xs\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .xs\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .xs\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .xs\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .xs\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .xs\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .xs\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .xs\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .xs\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .xs\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .xs\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .xs\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .xs\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .xs\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .xs\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .xs\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .xs\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .xs\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .xs\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .xs\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .xs\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .xs\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .xs\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .xs\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .xs\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .xs\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .xs\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .xs\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .xs\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .xs\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .xs\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .xs\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .xs\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .xs\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .xs\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .xs\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .xs\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .xs\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .xs\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .xs\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .xs\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .xs\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .xs\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .xs\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .xs\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .xs\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .xs\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .xs\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .xs\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .xs\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .xs\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .xs\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .xs\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .xs\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .xs\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .xs\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .xs\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .xs\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .xs\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .xs\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .xs\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .xs\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .xs\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .xs\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .xs\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .xs\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .xs\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .xs\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .xs\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .xs\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .xs\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .xs\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .xs\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .xs\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .xs\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .xs\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .xs\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .xs\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .xs\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .xs\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .xs\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .xs\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .xs\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .xs\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .xs\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .xs\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .xs\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .xs\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .xs\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .xs\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .xs\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .xs\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .xs\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .xs\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .xs\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .xs\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .xs\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .xs\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .xs\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .xs\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .xs\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .xs\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .xs\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .xs\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .xs\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .xs\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .xs\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .xs\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .xs\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .xs\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .xs\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .xs\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .xs\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .xs\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .xs\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .xs\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .xs\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .xs\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .xs\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .xs\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .xs\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .xs\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .xs\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .xs\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .xs\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .xs\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .xs\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .xs\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .xs\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .xs\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .xs\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .xs\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .xs\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .xs\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .xs\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .xs\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .xs\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .xs\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .xs\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .xs\:mt-0 {
    margin-top: 0 !important;
  }

  .xs\:mr-0 {
    margin-right: 0 !important;
  }

  .xs\:mb-0 {
    margin-bottom: 0 !important;
  }

  .xs\:ml-0 {
    margin-left: 0 !important;
  }

  .xs\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .xs\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .xs\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .xs\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .xs\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .xs\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .xs\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .xs\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .xs\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .xs\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .xs\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .xs\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .xs\:mt-4 {
    margin-top: 1rem !important;
  }

  .xs\:mr-4 {
    margin-right: 1rem !important;
  }

  .xs\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .xs\:ml-4 {
    margin-left: 1rem !important;
  }

  .xs\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .xs\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .xs\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .xs\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .xs\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .xs\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .xs\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .xs\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .xs\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .xs\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .xs\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .xs\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .xs\:mt-8 {
    margin-top: 2rem !important;
  }

  .xs\:mr-8 {
    margin-right: 2rem !important;
  }

  .xs\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .xs\:ml-8 {
    margin-left: 2rem !important;
  }

  .xs\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .xs\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .xs\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .xs\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .xs\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .xs\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .xs\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .xs\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .xs\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .xs\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .xs\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .xs\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .xs\:mt-12 {
    margin-top: 3rem !important;
  }

  .xs\:mr-12 {
    margin-right: 3rem !important;
  }

  .xs\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .xs\:ml-12 {
    margin-left: 3rem !important;
  }

  .xs\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .xs\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .xs\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .xs\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .xs\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .xs\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .xs\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .xs\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .xs\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .xs\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .xs\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .xs\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .xs\:mt-16 {
    margin-top: 4rem !important;
  }

  .xs\:mr-16 {
    margin-right: 4rem !important;
  }

  .xs\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .xs\:ml-16 {
    margin-left: 4rem !important;
  }

  .xs\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .xs\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .xs\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .xs\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .xs\:mt-20 {
    margin-top: 5rem !important;
  }

  .xs\:mr-20 {
    margin-right: 5rem !important;
  }

  .xs\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .xs\:ml-20 {
    margin-left: 5rem !important;
  }

  .xs\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .xs\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .xs\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .xs\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .xs\:mt-24 {
    margin-top: 6rem !important;
  }

  .xs\:mr-24 {
    margin-right: 6rem !important;
  }

  .xs\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .xs\:ml-24 {
    margin-left: 6rem !important;
  }

  .xs\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .xs\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .xs\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .xs\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .xs\:mt-28 {
    margin-top: 7rem !important;
  }

  .xs\:mr-28 {
    margin-right: 7rem !important;
  }

  .xs\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .xs\:ml-28 {
    margin-left: 7rem !important;
  }

  .xs\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .xs\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .xs\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .xs\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .xs\:mt-32 {
    margin-top: 8rem !important;
  }

  .xs\:mr-32 {
    margin-right: 8rem !important;
  }

  .xs\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .xs\:ml-32 {
    margin-left: 8rem !important;
  }

  .xs\:mt-36 {
    margin-top: 9rem !important;
  }

  .xs\:mr-36 {
    margin-right: 9rem !important;
  }

  .xs\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .xs\:ml-36 {
    margin-left: 9rem !important;
  }

  .xs\:mt-40 {
    margin-top: 10rem !important;
  }

  .xs\:mr-40 {
    margin-right: 10rem !important;
  }

  .xs\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .xs\:ml-40 {
    margin-left: 10rem !important;
  }

  .xs\:mt-44 {
    margin-top: 11rem !important;
  }

  .xs\:mr-44 {
    margin-right: 11rem !important;
  }

  .xs\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .xs\:ml-44 {
    margin-left: 11rem !important;
  }

  .xs\:mt-48 {
    margin-top: 12rem !important;
  }

  .xs\:mr-48 {
    margin-right: 12rem !important;
  }

  .xs\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .xs\:ml-48 {
    margin-left: 12rem !important;
  }

  .xs\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .xs\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .xs\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .xs\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .xs\:mt-52 {
    margin-top: 13rem !important;
  }

  .xs\:mr-52 {
    margin-right: 13rem !important;
  }

  .xs\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .xs\:ml-52 {
    margin-left: 13rem !important;
  }

  .xs\:mt-56 {
    margin-top: 14rem !important;
  }

  .xs\:mr-56 {
    margin-right: 14rem !important;
  }

  .xs\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .xs\:ml-56 {
    margin-left: 14rem !important;
  }

  .xs\:mt-60 {
    margin-top: 15rem !important;
  }

  .xs\:mr-60 {
    margin-right: 15rem !important;
  }

  .xs\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .xs\:ml-60 {
    margin-left: 15rem !important;
  }

  .xs\:mt-64 {
    margin-top: 16rem !important;
  }

  .xs\:mr-64 {
    margin-right: 16rem !important;
  }

  .xs\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .xs\:ml-64 {
    margin-left: 16rem !important;
  }

  .xs\:mt-72 {
    margin-top: 18rem !important;
  }

  .xs\:mr-72 {
    margin-right: 18rem !important;
  }

  .xs\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .xs\:ml-72 {
    margin-left: 18rem !important;
  }

  .xs\:mt-80 {
    margin-top: 20rem !important;
  }

  .xs\:mr-80 {
    margin-right: 20rem !important;
  }

  .xs\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .xs\:ml-80 {
    margin-left: 20rem !important;
  }

  .xs\:mt-90 {
    margin-top: 24rem !important;
  }

  .xs\:mr-90 {
    margin-right: 24rem !important;
  }

  .xs\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .xs\:ml-90 {
    margin-left: 24rem !important;
  }

  .xs\:mt-96 {
    margin-top: 24rem !important;
  }

  .xs\:mr-96 {
    margin-right: 24rem !important;
  }

  .xs\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .xs\:ml-96 {
    margin-left: 24rem !important;
  }

  .xs\:mt-100 {
    margin-top: 25rem !important;
  }

  .xs\:mr-100 {
    margin-right: 25rem !important;
  }

  .xs\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .xs\:ml-100 {
    margin-left: 25rem !important;
  }

  .xs\:mt-120 {
    margin-top: 30rem !important;
  }

  .xs\:mr-120 {
    margin-right: 30rem !important;
  }

  .xs\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .xs\:ml-120 {
    margin-left: 30rem !important;
  }

  .xs\:mt-128 {
    margin-top: 32rem !important;
  }

  .xs\:mr-128 {
    margin-right: 32rem !important;
  }

  .xs\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .xs\:ml-128 {
    margin-left: 32rem !important;
  }

  .xs\:mt-140 {
    margin-top: 35rem !important;
  }

  .xs\:mr-140 {
    margin-right: 35rem !important;
  }

  .xs\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .xs\:ml-140 {
    margin-left: 35rem !important;
  }

  .xs\:mt-160 {
    margin-top: 40rem !important;
  }

  .xs\:mr-160 {
    margin-right: 40rem !important;
  }

  .xs\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .xs\:ml-160 {
    margin-left: 40rem !important;
  }

  .xs\:mt-180 {
    margin-top: 45rem !important;
  }

  .xs\:mr-180 {
    margin-right: 45rem !important;
  }

  .xs\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .xs\:ml-180 {
    margin-left: 45rem !important;
  }

  .xs\:mt-192 {
    margin-top: 48rem !important;
  }

  .xs\:mr-192 {
    margin-right: 48rem !important;
  }

  .xs\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .xs\:ml-192 {
    margin-left: 48rem !important;
  }

  .xs\:mt-200 {
    margin-top: 50rem !important;
  }

  .xs\:mr-200 {
    margin-right: 50rem !important;
  }

  .xs\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .xs\:ml-200 {
    margin-left: 50rem !important;
  }

  .xs\:mt-240 {
    margin-top: 60rem !important;
  }

  .xs\:mr-240 {
    margin-right: 60rem !important;
  }

  .xs\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .xs\:ml-240 {
    margin-left: 60rem !important;
  }

  .xs\:mt-256 {
    margin-top: 64rem !important;
  }

  .xs\:mr-256 {
    margin-right: 64rem !important;
  }

  .xs\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .xs\:ml-256 {
    margin-left: 64rem !important;
  }

  .xs\:mt-280 {
    margin-top: 70rem !important;
  }

  .xs\:mr-280 {
    margin-right: 70rem !important;
  }

  .xs\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .xs\:ml-280 {
    margin-left: 70rem !important;
  }

  .xs\:mt-320 {
    margin-top: 80rem !important;
  }

  .xs\:mr-320 {
    margin-right: 80rem !important;
  }

  .xs\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .xs\:ml-320 {
    margin-left: 80rem !important;
  }

  .xs\:mt-360 {
    margin-top: 90rem !important;
  }

  .xs\:mr-360 {
    margin-right: 90rem !important;
  }

  .xs\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .xs\:ml-360 {
    margin-left: 90rem !important;
  }

  .xs\:mt-400 {
    margin-top: 100rem !important;
  }

  .xs\:mr-400 {
    margin-right: 100rem !important;
  }

  .xs\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .xs\:ml-400 {
    margin-left: 100rem !important;
  }

  .xs\:mt-480 {
    margin-top: 120rem !important;
  }

  .xs\:mr-480 {
    margin-right: 120rem !important;
  }

  .xs\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .xs\:ml-480 {
    margin-left: 120rem !important;
  }

  .xs\:mt-auto {
    margin-top: auto !important;
  }

  .xs\:mr-auto {
    margin-right: auto !important;
  }

  .xs\:mb-auto {
    margin-bottom: auto !important;
  }

  .xs\:ml-auto {
    margin-left: auto !important;
  }

  .xs\:mt-px {
    margin-top: 1px !important;
  }

  .xs\:mr-px {
    margin-right: 1px !important;
  }

  .xs\:mb-px {
    margin-bottom: 1px !important;
  }

  .xs\:ml-px {
    margin-left: 1px !important;
  }

  .xs\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .xs\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .xs\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .xs\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .xs\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .xs\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .xs\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .xs\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .xs\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .xs\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .xs\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .xs\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .xs\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .xs\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .xs\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .xs\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .xs\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .xs\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .xs\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .xs\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .xs\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .xs\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .xs\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .xs\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .xs\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .xs\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .xs\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .xs\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .xs\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .xs\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .xs\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .xs\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .xs\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .xs\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .xs\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .xs\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .xs\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .xs\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .xs\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .xs\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .xs\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .xs\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .xs\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .xs\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .xs\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .xs\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .xs\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .xs\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .xs\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .xs\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .xs\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .xs\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .xs\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .xs\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .xs\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .xs\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .xs\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .xs\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .xs\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .xs\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .xs\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .xs\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .xs\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .xs\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .xs\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .xs\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .xs\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .xs\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .xs\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .xs\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .xs\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .xs\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .xs\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .xs\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .xs\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .xs\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .xs\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .xs\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .xs\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .xs\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .xs\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .xs\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .xs\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .xs\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .xs\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .xs\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .xs\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .xs\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .xs\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .xs\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .xs\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .xs\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .xs\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .xs\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .xs\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .xs\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .xs\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .xs\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .xs\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .xs\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .xs\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .xs\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .xs\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .xs\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .xs\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .xs\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .xs\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .xs\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .xs\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .xs\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .xs\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .xs\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .xs\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .xs\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .xs\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .xs\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .xs\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .xs\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .xs\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .xs\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .xs\:mt-full {
    margin-top: 100% !important;
  }

  .xs\:mr-full {
    margin-right: 100% !important;
  }

  .xs\:mb-full {
    margin-bottom: 100% !important;
  }

  .xs\:ml-full {
    margin-left: 100% !important;
  }

  .xs\:mt-2px {
    margin-top: 2px !important;
  }

  .xs\:mr-2px {
    margin-right: 2px !important;
  }

  .xs\:mb-2px {
    margin-bottom: 2px !important;
  }

  .xs\:ml-2px {
    margin-left: 2px !important;
  }

  .xs\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .xs\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .xs\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .xs\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .xs\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .xs\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .xs\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .xs\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .xs\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .xs\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .xs\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .xs\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .xs\:-mt-4 {
    margin-top: -1rem !important;
  }

  .xs\:-mr-4 {
    margin-right: -1rem !important;
  }

  .xs\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .xs\:-ml-4 {
    margin-left: -1rem !important;
  }

  .xs\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .xs\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .xs\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .xs\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .xs\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .xs\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .xs\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .xs\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .xs\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .xs\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .xs\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .xs\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .xs\:-mt-8 {
    margin-top: -2rem !important;
  }

  .xs\:-mr-8 {
    margin-right: -2rem !important;
  }

  .xs\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .xs\:-ml-8 {
    margin-left: -2rem !important;
  }

  .xs\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .xs\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .xs\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .xs\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .xs\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .xs\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .xs\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .xs\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .xs\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .xs\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .xs\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .xs\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .xs\:-mt-12 {
    margin-top: -3rem !important;
  }

  .xs\:-mr-12 {
    margin-right: -3rem !important;
  }

  .xs\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .xs\:-ml-12 {
    margin-left: -3rem !important;
  }

  .xs\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .xs\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .xs\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .xs\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .xs\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .xs\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .xs\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .xs\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .xs\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .xs\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .xs\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .xs\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .xs\:-mt-16 {
    margin-top: -4rem !important;
  }

  .xs\:-mr-16 {
    margin-right: -4rem !important;
  }

  .xs\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .xs\:-ml-16 {
    margin-left: -4rem !important;
  }

  .xs\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .xs\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .xs\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .xs\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .xs\:-mt-20 {
    margin-top: -5rem !important;
  }

  .xs\:-mr-20 {
    margin-right: -5rem !important;
  }

  .xs\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .xs\:-ml-20 {
    margin-left: -5rem !important;
  }

  .xs\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .xs\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .xs\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .xs\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .xs\:-mt-24 {
    margin-top: -6rem !important;
  }

  .xs\:-mr-24 {
    margin-right: -6rem !important;
  }

  .xs\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .xs\:-ml-24 {
    margin-left: -6rem !important;
  }

  .xs\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .xs\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .xs\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .xs\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .xs\:-mt-28 {
    margin-top: -7rem !important;
  }

  .xs\:-mr-28 {
    margin-right: -7rem !important;
  }

  .xs\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .xs\:-ml-28 {
    margin-left: -7rem !important;
  }

  .xs\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .xs\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .xs\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .xs\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .xs\:-mt-32 {
    margin-top: -8rem !important;
  }

  .xs\:-mr-32 {
    margin-right: -8rem !important;
  }

  .xs\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .xs\:-ml-32 {
    margin-left: -8rem !important;
  }

  .xs\:-mt-36 {
    margin-top: -9rem !important;
  }

  .xs\:-mr-36 {
    margin-right: -9rem !important;
  }

  .xs\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .xs\:-ml-36 {
    margin-left: -9rem !important;
  }

  .xs\:-mt-40 {
    margin-top: -10rem !important;
  }

  .xs\:-mr-40 {
    margin-right: -10rem !important;
  }

  .xs\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .xs\:-ml-40 {
    margin-left: -10rem !important;
  }

  .xs\:-mt-44 {
    margin-top: -11rem !important;
  }

  .xs\:-mr-44 {
    margin-right: -11rem !important;
  }

  .xs\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .xs\:-ml-44 {
    margin-left: -11rem !important;
  }

  .xs\:-mt-48 {
    margin-top: -12rem !important;
  }

  .xs\:-mr-48 {
    margin-right: -12rem !important;
  }

  .xs\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .xs\:-ml-48 {
    margin-left: -12rem !important;
  }

  .xs\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .xs\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .xs\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .xs\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .xs\:-mt-52 {
    margin-top: -13rem !important;
  }

  .xs\:-mr-52 {
    margin-right: -13rem !important;
  }

  .xs\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .xs\:-ml-52 {
    margin-left: -13rem !important;
  }

  .xs\:-mt-56 {
    margin-top: -14rem !important;
  }

  .xs\:-mr-56 {
    margin-right: -14rem !important;
  }

  .xs\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .xs\:-ml-56 {
    margin-left: -14rem !important;
  }

  .xs\:-mt-60 {
    margin-top: -15rem !important;
  }

  .xs\:-mr-60 {
    margin-right: -15rem !important;
  }

  .xs\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .xs\:-ml-60 {
    margin-left: -15rem !important;
  }

  .xs\:-mt-64 {
    margin-top: -16rem !important;
  }

  .xs\:-mr-64 {
    margin-right: -16rem !important;
  }

  .xs\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .xs\:-ml-64 {
    margin-left: -16rem !important;
  }

  .xs\:-mt-72 {
    margin-top: -18rem !important;
  }

  .xs\:-mr-72 {
    margin-right: -18rem !important;
  }

  .xs\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .xs\:-ml-72 {
    margin-left: -18rem !important;
  }

  .xs\:-mt-80 {
    margin-top: -20rem !important;
  }

  .xs\:-mr-80 {
    margin-right: -20rem !important;
  }

  .xs\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .xs\:-ml-80 {
    margin-left: -20rem !important;
  }

  .xs\:-mt-90 {
    margin-top: -24rem !important;
  }

  .xs\:-mr-90 {
    margin-right: -24rem !important;
  }

  .xs\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .xs\:-ml-90 {
    margin-left: -24rem !important;
  }

  .xs\:-mt-96 {
    margin-top: -24rem !important;
  }

  .xs\:-mr-96 {
    margin-right: -24rem !important;
  }

  .xs\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .xs\:-ml-96 {
    margin-left: -24rem !important;
  }

  .xs\:-mt-100 {
    margin-top: -25rem !important;
  }

  .xs\:-mr-100 {
    margin-right: -25rem !important;
  }

  .xs\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .xs\:-ml-100 {
    margin-left: -25rem !important;
  }

  .xs\:-mt-120 {
    margin-top: -30rem !important;
  }

  .xs\:-mr-120 {
    margin-right: -30rem !important;
  }

  .xs\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .xs\:-ml-120 {
    margin-left: -30rem !important;
  }

  .xs\:-mt-128 {
    margin-top: -32rem !important;
  }

  .xs\:-mr-128 {
    margin-right: -32rem !important;
  }

  .xs\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .xs\:-ml-128 {
    margin-left: -32rem !important;
  }

  .xs\:-mt-140 {
    margin-top: -35rem !important;
  }

  .xs\:-mr-140 {
    margin-right: -35rem !important;
  }

  .xs\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .xs\:-ml-140 {
    margin-left: -35rem !important;
  }

  .xs\:-mt-160 {
    margin-top: -40rem !important;
  }

  .xs\:-mr-160 {
    margin-right: -40rem !important;
  }

  .xs\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .xs\:-ml-160 {
    margin-left: -40rem !important;
  }

  .xs\:-mt-180 {
    margin-top: -45rem !important;
  }

  .xs\:-mr-180 {
    margin-right: -45rem !important;
  }

  .xs\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .xs\:-ml-180 {
    margin-left: -45rem !important;
  }

  .xs\:-mt-192 {
    margin-top: -48rem !important;
  }

  .xs\:-mr-192 {
    margin-right: -48rem !important;
  }

  .xs\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .xs\:-ml-192 {
    margin-left: -48rem !important;
  }

  .xs\:-mt-200 {
    margin-top: -50rem !important;
  }

  .xs\:-mr-200 {
    margin-right: -50rem !important;
  }

  .xs\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .xs\:-ml-200 {
    margin-left: -50rem !important;
  }

  .xs\:-mt-240 {
    margin-top: -60rem !important;
  }

  .xs\:-mr-240 {
    margin-right: -60rem !important;
  }

  .xs\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .xs\:-ml-240 {
    margin-left: -60rem !important;
  }

  .xs\:-mt-256 {
    margin-top: -64rem !important;
  }

  .xs\:-mr-256 {
    margin-right: -64rem !important;
  }

  .xs\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .xs\:-ml-256 {
    margin-left: -64rem !important;
  }

  .xs\:-mt-280 {
    margin-top: -70rem !important;
  }

  .xs\:-mr-280 {
    margin-right: -70rem !important;
  }

  .xs\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .xs\:-ml-280 {
    margin-left: -70rem !important;
  }

  .xs\:-mt-320 {
    margin-top: -80rem !important;
  }

  .xs\:-mr-320 {
    margin-right: -80rem !important;
  }

  .xs\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .xs\:-ml-320 {
    margin-left: -80rem !important;
  }

  .xs\:-mt-360 {
    margin-top: -90rem !important;
  }

  .xs\:-mr-360 {
    margin-right: -90rem !important;
  }

  .xs\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .xs\:-ml-360 {
    margin-left: -90rem !important;
  }

  .xs\:-mt-400 {
    margin-top: -100rem !important;
  }

  .xs\:-mr-400 {
    margin-right: -100rem !important;
  }

  .xs\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .xs\:-ml-400 {
    margin-left: -100rem !important;
  }

  .xs\:-mt-480 {
    margin-top: -120rem !important;
  }

  .xs\:-mr-480 {
    margin-right: -120rem !important;
  }

  .xs\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .xs\:-ml-480 {
    margin-left: -120rem !important;
  }

  .xs\:-mt-px {
    margin-top: -1px !important;
  }

  .xs\:-mr-px {
    margin-right: -1px !important;
  }

  .xs\:-mb-px {
    margin-bottom: -1px !important;
  }

  .xs\:-ml-px {
    margin-left: -1px !important;
  }

  .xs\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .xs\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .xs\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .xs\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .xs\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .xs\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .xs\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .xs\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .xs\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .xs\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .xs\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .xs\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .xs\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .xs\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .xs\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .xs\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .xs\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .xs\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .xs\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .xs\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .xs\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .xs\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .xs\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .xs\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .xs\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .xs\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .xs\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .xs\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .xs\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .xs\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .xs\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .xs\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .xs\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .xs\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .xs\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .xs\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .xs\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .xs\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .xs\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .xs\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .xs\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .xs\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .xs\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .xs\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .xs\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .xs\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .xs\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .xs\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .xs\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .xs\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .xs\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .xs\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .xs\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .xs\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .xs\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .xs\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .xs\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .xs\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .xs\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .xs\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .xs\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .xs\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .xs\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .xs\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .xs\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .xs\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .xs\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .xs\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .xs\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .xs\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .xs\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .xs\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .xs\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .xs\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .xs\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .xs\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .xs\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .xs\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .xs\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .xs\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .xs\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .xs\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .xs\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .xs\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .xs\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .xs\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .xs\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .xs\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .xs\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .xs\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .xs\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .xs\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .xs\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .xs\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .xs\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .xs\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .xs\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .xs\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .xs\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .xs\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .xs\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .xs\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .xs\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .xs\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .xs\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .xs\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .xs\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .xs\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .xs\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .xs\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .xs\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .xs\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .xs\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .xs\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .xs\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .xs\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .xs\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .xs\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .xs\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .xs\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .xs\:-mt-full {
    margin-top: -100% !important;
  }

  .xs\:-mr-full {
    margin-right: -100% !important;
  }

  .xs\:-mb-full {
    margin-bottom: -100% !important;
  }

  .xs\:-ml-full {
    margin-left: -100% !important;
  }

  .xs\:-mt-2px {
    margin-top: -2px !important;
  }

  .xs\:-mr-2px {
    margin-right: -2px !important;
  }

  .xs\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .xs\:-ml-2px {
    margin-left: -2px !important;
  }

  .xs\:max-h-0 {
    max-height: 0 !important;
  }

  .xs\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .xs\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .xs\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .xs\:max-h-4 {
    max-height: 1rem !important;
  }

  .xs\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .xs\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .xs\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .xs\:max-h-8 {
    max-height: 2rem !important;
  }

  .xs\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .xs\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .xs\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .xs\:max-h-12 {
    max-height: 3rem !important;
  }

  .xs\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .xs\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .xs\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .xs\:max-h-16 {
    max-height: 4rem !important;
  }

  .xs\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .xs\:max-h-20 {
    max-height: 5rem !important;
  }

  .xs\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .xs\:max-h-24 {
    max-height: 6rem !important;
  }

  .xs\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .xs\:max-h-28 {
    max-height: 7rem !important;
  }

  .xs\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .xs\:max-h-32 {
    max-height: 8rem !important;
  }

  .xs\:max-h-36 {
    max-height: 9rem !important;
  }

  .xs\:max-h-40 {
    max-height: 10rem !important;
  }

  .xs\:max-h-44 {
    max-height: 11rem !important;
  }

  .xs\:max-h-48 {
    max-height: 12rem !important;
  }

  .xs\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .xs\:max-h-52 {
    max-height: 13rem !important;
  }

  .xs\:max-h-56 {
    max-height: 14rem !important;
  }

  .xs\:max-h-60 {
    max-height: 15rem !important;
  }

  .xs\:max-h-64 {
    max-height: 16rem !important;
  }

  .xs\:max-h-72 {
    max-height: 18rem !important;
  }

  .xs\:max-h-80 {
    max-height: 20rem !important;
  }

  .xs\:max-h-90 {
    max-height: 24rem !important;
  }

  .xs\:max-h-96 {
    max-height: 24rem !important;
  }

  .xs\:max-h-100 {
    max-height: 25rem !important;
  }

  .xs\:max-h-120 {
    max-height: 30rem !important;
  }

  .xs\:max-h-128 {
    max-height: 32rem !important;
  }

  .xs\:max-h-140 {
    max-height: 35rem !important;
  }

  .xs\:max-h-160 {
    max-height: 40rem !important;
  }

  .xs\:max-h-180 {
    max-height: 45rem !important;
  }

  .xs\:max-h-192 {
    max-height: 48rem !important;
  }

  .xs\:max-h-200 {
    max-height: 50rem !important;
  }

  .xs\:max-h-240 {
    max-height: 60rem !important;
  }

  .xs\:max-h-256 {
    max-height: 64rem !important;
  }

  .xs\:max-h-280 {
    max-height: 70rem !important;
  }

  .xs\:max-h-320 {
    max-height: 80rem !important;
  }

  .xs\:max-h-360 {
    max-height: 90rem !important;
  }

  .xs\:max-h-400 {
    max-height: 100rem !important;
  }

  .xs\:max-h-480 {
    max-height: 120rem !important;
  }

  .xs\:max-h-screen {
    max-height: 100vh !important;
  }

  .xs\:max-h-px {
    max-height: 1px !important;
  }

  .xs\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .xs\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .xs\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .xs\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .xs\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .xs\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .xs\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .xs\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .xs\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .xs\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .xs\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .xs\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .xs\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .xs\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .xs\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .xs\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .xs\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .xs\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .xs\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .xs\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .xs\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .xs\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .xs\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .xs\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .xs\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .xs\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .xs\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .xs\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .xs\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .xs\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .xs\:max-h-full {
    max-height: 100% !important;
  }

  .xs\:max-h-2px {
    max-height: 2px !important;
  }

  .xs\:max-h-none {
    max-height: none !important;
  }

  .xs\:max-w-0 {
    max-width: 0 !important;
  }

  .xs\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .xs\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .xs\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .xs\:max-w-4 {
    max-width: 1rem !important;
  }

  .xs\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .xs\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .xs\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .xs\:max-w-8 {
    max-width: 2rem !important;
  }

  .xs\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .xs\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .xs\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .xs\:max-w-12 {
    max-width: 3rem !important;
  }

  .xs\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .xs\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .xs\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .xs\:max-w-16 {
    max-width: 4rem !important;
  }

  .xs\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .xs\:max-w-20 {
    max-width: 5rem !important;
  }

  .xs\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .xs\:max-w-24 {
    max-width: 6rem !important;
  }

  .xs\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .xs\:max-w-28 {
    max-width: 7rem !important;
  }

  .xs\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .xs\:max-w-32 {
    max-width: 8rem !important;
  }

  .xs\:max-w-36 {
    max-width: 9rem !important;
  }

  .xs\:max-w-40 {
    max-width: 10rem !important;
  }

  .xs\:max-w-44 {
    max-width: 11rem !important;
  }

  .xs\:max-w-48 {
    max-width: 12rem !important;
  }

  .xs\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .xs\:max-w-52 {
    max-width: 13rem !important;
  }

  .xs\:max-w-56 {
    max-width: 14rem !important;
  }

  .xs\:max-w-60 {
    max-width: 15rem !important;
  }

  .xs\:max-w-64 {
    max-width: 16rem !important;
  }

  .xs\:max-w-72 {
    max-width: 18rem !important;
  }

  .xs\:max-w-80 {
    max-width: 20rem !important;
  }

  .xs\:max-w-90 {
    max-width: 24rem !important;
  }

  .xs\:max-w-96 {
    max-width: 24rem !important;
  }

  .xs\:max-w-100 {
    max-width: 25rem !important;
  }

  .xs\:max-w-120 {
    max-width: 30rem !important;
  }

  .xs\:max-w-128 {
    max-width: 32rem !important;
  }

  .xs\:max-w-140 {
    max-width: 35rem !important;
  }

  .xs\:max-w-160 {
    max-width: 40rem !important;
  }

  .xs\:max-w-180 {
    max-width: 45rem !important;
  }

  .xs\:max-w-192 {
    max-width: 48rem !important;
  }

  .xs\:max-w-200 {
    max-width: 50rem !important;
  }

  .xs\:max-w-240 {
    max-width: 60rem !important;
  }

  .xs\:max-w-256 {
    max-width: 64rem !important;
  }

  .xs\:max-w-280 {
    max-width: 70rem !important;
  }

  .xs\:max-w-320 {
    max-width: 80rem !important;
  }

  .xs\:max-w-360 {
    max-width: 90rem !important;
  }

  .xs\:max-w-400 {
    max-width: 100rem !important;
  }

  .xs\:max-w-480 {
    max-width: 120rem !important;
  }

  .xs\:max-w-none {
    max-width: none !important;
  }

  .xs\:max-w-xs {
    max-width: 20rem !important;
  }

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

  .xs\:max-w-md {
    max-width: 28rem !important;
  }

  .xs\:max-w-lg {
    max-width: 32rem !important;
  }

  .xs\:max-w-xl {
    max-width: 36rem !important;
  }

  .xs\:max-w-2xl {
    max-width: 42rem !important;
  }

  .xs\:max-w-3xl {
    max-width: 48rem !important;
  }

  .xs\:max-w-4xl {
    max-width: 56rem !important;
  }

  .xs\:max-w-5xl {
    max-width: 64rem !important;
  }

  .xs\:max-w-6xl {
    max-width: 72rem !important;
  }

  .xs\:max-w-7xl {
    max-width: 80rem !important;
  }

  .xs\:max-w-full {
    max-width: 100% !important;
  }

  .xs\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .xs\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .xs\:max-w-screen {
    max-width: 100vw !important;
  }

  .xs\:max-w-px {
    max-width: 1px !important;
  }

  .xs\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .xs\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .xs\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .xs\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .xs\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .xs\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .xs\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .xs\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .xs\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .xs\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .xs\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .xs\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .xs\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .xs\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .xs\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .xs\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .xs\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .xs\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .xs\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .xs\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .xs\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .xs\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .xs\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .xs\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .xs\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .xs\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .xs\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .xs\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .xs\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .xs\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .xs\:max-w-2px {
    max-width: 2px !important;
  }

  .xs\:min-h-0 {
    min-height: 0 !important;
  }

  .xs\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .xs\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .xs\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .xs\:min-h-4 {
    min-height: 1rem !important;
  }

  .xs\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .xs\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .xs\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .xs\:min-h-8 {
    min-height: 2rem !important;
  }

  .xs\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .xs\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .xs\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .xs\:min-h-12 {
    min-height: 3rem !important;
  }

  .xs\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .xs\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .xs\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .xs\:min-h-16 {
    min-height: 4rem !important;
  }

  .xs\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .xs\:min-h-20 {
    min-height: 5rem !important;
  }

  .xs\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .xs\:min-h-24 {
    min-height: 6rem !important;
  }

  .xs\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .xs\:min-h-28 {
    min-height: 7rem !important;
  }

  .xs\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .xs\:min-h-32 {
    min-height: 8rem !important;
  }

  .xs\:min-h-36 {
    min-height: 9rem !important;
  }

  .xs\:min-h-40 {
    min-height: 10rem !important;
  }

  .xs\:min-h-44 {
    min-height: 11rem !important;
  }

  .xs\:min-h-48 {
    min-height: 12rem !important;
  }

  .xs\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .xs\:min-h-52 {
    min-height: 13rem !important;
  }

  .xs\:min-h-56 {
    min-height: 14rem !important;
  }

  .xs\:min-h-60 {
    min-height: 15rem !important;
  }

  .xs\:min-h-64 {
    min-height: 16rem !important;
  }

  .xs\:min-h-72 {
    min-height: 18rem !important;
  }

  .xs\:min-h-80 {
    min-height: 20rem !important;
  }

  .xs\:min-h-90 {
    min-height: 24rem !important;
  }

  .xs\:min-h-96 {
    min-height: 24rem !important;
  }

  .xs\:min-h-100 {
    min-height: 25rem !important;
  }

  .xs\:min-h-120 {
    min-height: 30rem !important;
  }

  .xs\:min-h-128 {
    min-height: 32rem !important;
  }

  .xs\:min-h-140 {
    min-height: 35rem !important;
  }

  .xs\:min-h-160 {
    min-height: 40rem !important;
  }

  .xs\:min-h-180 {
    min-height: 45rem !important;
  }

  .xs\:min-h-192 {
    min-height: 48rem !important;
  }

  .xs\:min-h-200 {
    min-height: 50rem !important;
  }

  .xs\:min-h-240 {
    min-height: 60rem !important;
  }

  .xs\:min-h-256 {
    min-height: 64rem !important;
  }

  .xs\:min-h-280 {
    min-height: 70rem !important;
  }

  .xs\:min-h-320 {
    min-height: 80rem !important;
  }

  .xs\:min-h-360 {
    min-height: 90rem !important;
  }

  .xs\:min-h-400 {
    min-height: 100rem !important;
  }

  .xs\:min-h-480 {
    min-height: 120rem !important;
  }

  .xs\:min-h-full {
    min-height: 100% !important;
  }

  .xs\:min-h-screen {
    min-height: 100vh !important;
  }

  .xs\:min-h-px {
    min-height: 1px !important;
  }

  .xs\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .xs\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .xs\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .xs\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .xs\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .xs\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .xs\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .xs\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .xs\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .xs\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .xs\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .xs\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .xs\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .xs\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .xs\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .xs\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .xs\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .xs\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .xs\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .xs\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .xs\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .xs\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .xs\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .xs\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .xs\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .xs\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .xs\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .xs\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .xs\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .xs\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .xs\:min-h-2px {
    min-height: 2px !important;
  }

  .xs\:min-w-0 {
    min-width: 0 !important;
  }

  .xs\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .xs\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .xs\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .xs\:min-w-4 {
    min-width: 1rem !important;
  }

  .xs\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .xs\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .xs\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .xs\:min-w-8 {
    min-width: 2rem !important;
  }

  .xs\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .xs\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .xs\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .xs\:min-w-12 {
    min-width: 3rem !important;
  }

  .xs\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .xs\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .xs\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .xs\:min-w-16 {
    min-width: 4rem !important;
  }

  .xs\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .xs\:min-w-20 {
    min-width: 5rem !important;
  }

  .xs\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .xs\:min-w-24 {
    min-width: 6rem !important;
  }

  .xs\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .xs\:min-w-28 {
    min-width: 7rem !important;
  }

  .xs\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .xs\:min-w-32 {
    min-width: 8rem !important;
  }

  .xs\:min-w-36 {
    min-width: 9rem !important;
  }

  .xs\:min-w-40 {
    min-width: 10rem !important;
  }

  .xs\:min-w-44 {
    min-width: 11rem !important;
  }

  .xs\:min-w-48 {
    min-width: 12rem !important;
  }

  .xs\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .xs\:min-w-52 {
    min-width: 13rem !important;
  }

  .xs\:min-w-56 {
    min-width: 14rem !important;
  }

  .xs\:min-w-60 {
    min-width: 15rem !important;
  }

  .xs\:min-w-64 {
    min-width: 16rem !important;
  }

  .xs\:min-w-72 {
    min-width: 18rem !important;
  }

  .xs\:min-w-80 {
    min-width: 20rem !important;
  }

  .xs\:min-w-90 {
    min-width: 24rem !important;
  }

  .xs\:min-w-96 {
    min-width: 24rem !important;
  }

  .xs\:min-w-100 {
    min-width: 25rem !important;
  }

  .xs\:min-w-120 {
    min-width: 30rem !important;
  }

  .xs\:min-w-128 {
    min-width: 32rem !important;
  }

  .xs\:min-w-140 {
    min-width: 35rem !important;
  }

  .xs\:min-w-160 {
    min-width: 40rem !important;
  }

  .xs\:min-w-180 {
    min-width: 45rem !important;
  }

  .xs\:min-w-192 {
    min-width: 48rem !important;
  }

  .xs\:min-w-200 {
    min-width: 50rem !important;
  }

  .xs\:min-w-240 {
    min-width: 60rem !important;
  }

  .xs\:min-w-256 {
    min-width: 64rem !important;
  }

  .xs\:min-w-280 {
    min-width: 70rem !important;
  }

  .xs\:min-w-320 {
    min-width: 80rem !important;
  }

  .xs\:min-w-360 {
    min-width: 90rem !important;
  }

  .xs\:min-w-400 {
    min-width: 100rem !important;
  }

  .xs\:min-w-480 {
    min-width: 120rem !important;
  }

  .xs\:min-w-full {
    min-width: 100% !important;
  }

  .xs\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .xs\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .xs\:min-w-screen {
    min-width: 100vw !important;
  }

  .xs\:min-w-px {
    min-width: 1px !important;
  }

  .xs\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .xs\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .xs\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .xs\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .xs\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .xs\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .xs\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .xs\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .xs\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .xs\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .xs\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .xs\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .xs\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .xs\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .xs\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .xs\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .xs\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .xs\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .xs\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .xs\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .xs\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .xs\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .xs\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .xs\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .xs\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .xs\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .xs\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .xs\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .xs\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .xs\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .xs\:min-w-2px {
    min-width: 2px !important;
  }

  .xs\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .xs\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .xs\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .xs\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .xs\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .xs\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .xs\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .xs\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .xs\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .xs\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .xs\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .xs\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .xs\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .xs\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .xs\:opacity-0 {
    opacity: 0 !important;
  }

  .xs\:opacity-12 {
    opacity: 0.12 !important;
  }

  .xs\:opacity-25 {
    opacity: 0.25 !important;
  }

  .xs\:opacity-38 {
    opacity: 0.38 !important;
  }

  .xs\:opacity-50 {
    opacity: 0.5 !important;
  }

  .xs\:opacity-54 {
    opacity: 0.54 !important;
  }

  .xs\:opacity-70 {
    opacity: 0.7 !important;
  }

  .xs\:opacity-75 {
    opacity: 0.75 !important;
  }

  .xs\:opacity-84 {
    opacity: 0.84 !important;
  }

  .xs\:opacity-100 {
    opacity: 1 !important;
  }

  .xs\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .xs\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .xs\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .xs\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .xs\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .xs\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .xs\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .xs\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .xs\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .xs\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .xs\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .xs\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .xs\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .xs\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .xs\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .xs\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .xs\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .xs\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .xs\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .xs\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .xs\:overflow-auto {
    overflow: auto !important;
  }

  .xs\:overflow-hidden {
    overflow: hidden !important;
  }

  .xs\:overflow-visible {
    overflow: visible !important;
  }

  .xs\:overflow-scroll {
    overflow: scroll !important;
  }

  .xs\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .xs\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .xs\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .xs\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .xs\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .xs\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .xs\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .xs\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .xs\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .xs\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .xs\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .xs\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .xs\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .xs\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .xs\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .xs\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .xs\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .xs\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .xs\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .xs\:p-0 {
    padding: 0 !important;
  }

  .xs\:p-1 {
    padding: 0.25rem !important;
  }

  .xs\:p-2 {
    padding: 0.5rem !important;
  }

  .xs\:p-3 {
    padding: 0.75rem !important;
  }

  .xs\:p-4 {
    padding: 1rem !important;
  }

  .xs\:p-5 {
    padding: 1.25rem !important;
  }

  .xs\:p-6 {
    padding: 1.5rem !important;
  }

  .xs\:p-7 {
    padding: 1.75rem !important;
  }

  .xs\:p-8 {
    padding: 2rem !important;
  }

  .xs\:p-9 {
    padding: 2.25rem !important;
  }

  .xs\:p-10 {
    padding: 2.5rem !important;
  }

  .xs\:p-11 {
    padding: 2.75rem !important;
  }

  .xs\:p-12 {
    padding: 3rem !important;
  }

  .xs\:p-13 {
    padding: 3.25rem !important;
  }

  .xs\:p-14 {
    padding: 3.5rem !important;
  }

  .xs\:p-15 {
    padding: 3.75rem !important;
  }

  .xs\:p-16 {
    padding: 4rem !important;
  }

  .xs\:p-18 {
    padding: 4.5rem !important;
  }

  .xs\:p-20 {
    padding: 5rem !important;
  }

  .xs\:p-22 {
    padding: 5.5rem !important;
  }

  .xs\:p-24 {
    padding: 6rem !important;
  }

  .xs\:p-26 {
    padding: 6.5rem !important;
  }

  .xs\:p-28 {
    padding: 7rem !important;
  }

  .xs\:p-30 {
    padding: 7.5rem !important;
  }

  .xs\:p-32 {
    padding: 8rem !important;
  }

  .xs\:p-36 {
    padding: 9rem !important;
  }

  .xs\:p-40 {
    padding: 10rem !important;
  }

  .xs\:p-44 {
    padding: 11rem !important;
  }

  .xs\:p-48 {
    padding: 12rem !important;
  }

  .xs\:p-50 {
    padding: 12.5rem !important;
  }

  .xs\:p-52 {
    padding: 13rem !important;
  }

  .xs\:p-56 {
    padding: 14rem !important;
  }

  .xs\:p-60 {
    padding: 15rem !important;
  }

  .xs\:p-64 {
    padding: 16rem !important;
  }

  .xs\:p-72 {
    padding: 18rem !important;
  }

  .xs\:p-80 {
    padding: 20rem !important;
  }

  .xs\:p-90 {
    padding: 24rem !important;
  }

  .xs\:p-96 {
    padding: 24rem !important;
  }

  .xs\:p-100 {
    padding: 25rem !important;
  }

  .xs\:p-120 {
    padding: 30rem !important;
  }

  .xs\:p-128 {
    padding: 32rem !important;
  }

  .xs\:p-140 {
    padding: 35rem !important;
  }

  .xs\:p-160 {
    padding: 40rem !important;
  }

  .xs\:p-180 {
    padding: 45rem !important;
  }

  .xs\:p-192 {
    padding: 48rem !important;
  }

  .xs\:p-200 {
    padding: 50rem !important;
  }

  .xs\:p-240 {
    padding: 60rem !important;
  }

  .xs\:p-256 {
    padding: 64rem !important;
  }

  .xs\:p-280 {
    padding: 70rem !important;
  }

  .xs\:p-320 {
    padding: 80rem !important;
  }

  .xs\:p-360 {
    padding: 90rem !important;
  }

  .xs\:p-400 {
    padding: 100rem !important;
  }

  .xs\:p-480 {
    padding: 120rem !important;
  }

  .xs\:p-px {
    padding: 1px !important;
  }

  .xs\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .xs\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .xs\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .xs\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .xs\:p-1\/2 {
    padding: 50% !important;
  }

  .xs\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .xs\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .xs\:p-1\/4 {
    padding: 25% !important;
  }

  .xs\:p-2\/4 {
    padding: 50% !important;
  }

  .xs\:p-3\/4 {
    padding: 75% !important;
  }

  .xs\:p-1\/5 {
    padding: 20% !important;
  }

  .xs\:p-2\/5 {
    padding: 40% !important;
  }

  .xs\:p-3\/5 {
    padding: 60% !important;
  }

  .xs\:p-4\/5 {
    padding: 80% !important;
  }

  .xs\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .xs\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .xs\:p-3\/6 {
    padding: 50% !important;
  }

  .xs\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .xs\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .xs\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .xs\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .xs\:p-3\/12 {
    padding: 25% !important;
  }

  .xs\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .xs\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .xs\:p-6\/12 {
    padding: 50% !important;
  }

  .xs\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .xs\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .xs\:p-9\/12 {
    padding: 75% !important;
  }

  .xs\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .xs\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .xs\:p-full {
    padding: 100% !important;
  }

  .xs\:p-2px {
    padding: 2px !important;
  }

  .xs\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .xs\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .xs\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .xs\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .xs\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .xs\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .xs\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .xs\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .xs\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .xs\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .xs\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .xs\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .xs\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .xs\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .xs\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .xs\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .xs\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .xs\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .xs\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .xs\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .xs\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .xs\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .xs\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .xs\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .xs\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .xs\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .xs\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .xs\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .xs\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .xs\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .xs\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .xs\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .xs\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .xs\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .xs\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .xs\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .xs\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .xs\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .xs\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .xs\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .xs\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .xs\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .xs\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .xs\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .xs\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .xs\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .xs\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .xs\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .xs\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .xs\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .xs\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .xs\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .xs\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .xs\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .xs\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .xs\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .xs\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .xs\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .xs\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .xs\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .xs\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .xs\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .xs\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .xs\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .xs\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .xs\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .xs\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .xs\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .xs\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .xs\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .xs\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .xs\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .xs\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .xs\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .xs\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .xs\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .xs\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .xs\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .xs\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .xs\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .xs\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .xs\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .xs\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .xs\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .xs\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .xs\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .xs\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .xs\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .xs\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .xs\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .xs\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .xs\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .xs\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .xs\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .xs\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .xs\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .xs\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .xs\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .xs\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .xs\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .xs\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .xs\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .xs\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .xs\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .xs\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .xs\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .xs\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .xs\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .xs\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .xs\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .xs\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .xs\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .xs\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .xs\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .xs\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .xs\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .xs\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .xs\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .xs\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .xs\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .xs\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .xs\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .xs\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .xs\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .xs\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .xs\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .xs\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .xs\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .xs\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .xs\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .xs\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .xs\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .xs\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .xs\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .xs\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .xs\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .xs\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .xs\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .xs\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .xs\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .xs\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .xs\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .xs\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .xs\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .xs\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .xs\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .xs\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .xs\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .xs\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .xs\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .xs\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .xs\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .xs\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .xs\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .xs\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .xs\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .xs\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .xs\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .xs\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .xs\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .xs\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .xs\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .xs\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .xs\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .xs\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .xs\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .xs\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .xs\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .xs\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .xs\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .xs\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .xs\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .xs\:pt-0 {
    padding-top: 0 !important;
  }

  .xs\:pr-0 {
    padding-right: 0 !important;
  }

  .xs\:pb-0 {
    padding-bottom: 0 !important;
  }

  .xs\:pl-0 {
    padding-left: 0 !important;
  }

  .xs\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .xs\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .xs\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .xs\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .xs\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .xs\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .xs\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .xs\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .xs\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .xs\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .xs\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .xs\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .xs\:pt-4 {
    padding-top: 1rem !important;
  }

  .xs\:pr-4 {
    padding-right: 1rem !important;
  }

  .xs\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .xs\:pl-4 {
    padding-left: 1rem !important;
  }

  .xs\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .xs\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .xs\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .xs\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .xs\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .xs\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .xs\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .xs\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .xs\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .xs\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .xs\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .xs\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .xs\:pt-8 {
    padding-top: 2rem !important;
  }

  .xs\:pr-8 {
    padding-right: 2rem !important;
  }

  .xs\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .xs\:pl-8 {
    padding-left: 2rem !important;
  }

  .xs\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .xs\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .xs\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .xs\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .xs\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .xs\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .xs\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .xs\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .xs\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .xs\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .xs\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .xs\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .xs\:pt-12 {
    padding-top: 3rem !important;
  }

  .xs\:pr-12 {
    padding-right: 3rem !important;
  }

  .xs\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .xs\:pl-12 {
    padding-left: 3rem !important;
  }

  .xs\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .xs\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .xs\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .xs\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .xs\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .xs\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .xs\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .xs\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .xs\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .xs\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .xs\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .xs\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .xs\:pt-16 {
    padding-top: 4rem !important;
  }

  .xs\:pr-16 {
    padding-right: 4rem !important;
  }

  .xs\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .xs\:pl-16 {
    padding-left: 4rem !important;
  }

  .xs\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .xs\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .xs\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .xs\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .xs\:pt-20 {
    padding-top: 5rem !important;
  }

  .xs\:pr-20 {
    padding-right: 5rem !important;
  }

  .xs\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .xs\:pl-20 {
    padding-left: 5rem !important;
  }

  .xs\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .xs\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .xs\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .xs\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .xs\:pt-24 {
    padding-top: 6rem !important;
  }

  .xs\:pr-24 {
    padding-right: 6rem !important;
  }

  .xs\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .xs\:pl-24 {
    padding-left: 6rem !important;
  }

  .xs\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .xs\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .xs\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .xs\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .xs\:pt-28 {
    padding-top: 7rem !important;
  }

  .xs\:pr-28 {
    padding-right: 7rem !important;
  }

  .xs\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .xs\:pl-28 {
    padding-left: 7rem !important;
  }

  .xs\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .xs\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .xs\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .xs\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .xs\:pt-32 {
    padding-top: 8rem !important;
  }

  .xs\:pr-32 {
    padding-right: 8rem !important;
  }

  .xs\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .xs\:pl-32 {
    padding-left: 8rem !important;
  }

  .xs\:pt-36 {
    padding-top: 9rem !important;
  }

  .xs\:pr-36 {
    padding-right: 9rem !important;
  }

  .xs\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .xs\:pl-36 {
    padding-left: 9rem !important;
  }

  .xs\:pt-40 {
    padding-top: 10rem !important;
  }

  .xs\:pr-40 {
    padding-right: 10rem !important;
  }

  .xs\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .xs\:pl-40 {
    padding-left: 10rem !important;
  }

  .xs\:pt-44 {
    padding-top: 11rem !important;
  }

  .xs\:pr-44 {
    padding-right: 11rem !important;
  }

  .xs\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .xs\:pl-44 {
    padding-left: 11rem !important;
  }

  .xs\:pt-48 {
    padding-top: 12rem !important;
  }

  .xs\:pr-48 {
    padding-right: 12rem !important;
  }

  .xs\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .xs\:pl-48 {
    padding-left: 12rem !important;
  }

  .xs\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .xs\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .xs\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .xs\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .xs\:pt-52 {
    padding-top: 13rem !important;
  }

  .xs\:pr-52 {
    padding-right: 13rem !important;
  }

  .xs\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .xs\:pl-52 {
    padding-left: 13rem !important;
  }

  .xs\:pt-56 {
    padding-top: 14rem !important;
  }

  .xs\:pr-56 {
    padding-right: 14rem !important;
  }

  .xs\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .xs\:pl-56 {
    padding-left: 14rem !important;
  }

  .xs\:pt-60 {
    padding-top: 15rem !important;
  }

  .xs\:pr-60 {
    padding-right: 15rem !important;
  }

  .xs\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .xs\:pl-60 {
    padding-left: 15rem !important;
  }

  .xs\:pt-64 {
    padding-top: 16rem !important;
  }

  .xs\:pr-64 {
    padding-right: 16rem !important;
  }

  .xs\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .xs\:pl-64 {
    padding-left: 16rem !important;
  }

  .xs\:pt-72 {
    padding-top: 18rem !important;
  }

  .xs\:pr-72 {
    padding-right: 18rem !important;
  }

  .xs\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .xs\:pl-72 {
    padding-left: 18rem !important;
  }

  .xs\:pt-80 {
    padding-top: 20rem !important;
  }

  .xs\:pr-80 {
    padding-right: 20rem !important;
  }

  .xs\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .xs\:pl-80 {
    padding-left: 20rem !important;
  }

  .xs\:pt-90 {
    padding-top: 24rem !important;
  }

  .xs\:pr-90 {
    padding-right: 24rem !important;
  }

  .xs\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .xs\:pl-90 {
    padding-left: 24rem !important;
  }

  .xs\:pt-96 {
    padding-top: 24rem !important;
  }

  .xs\:pr-96 {
    padding-right: 24rem !important;
  }

  .xs\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .xs\:pl-96 {
    padding-left: 24rem !important;
  }

  .xs\:pt-100 {
    padding-top: 25rem !important;
  }

  .xs\:pr-100 {
    padding-right: 25rem !important;
  }

  .xs\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .xs\:pl-100 {
    padding-left: 25rem !important;
  }

  .xs\:pt-120 {
    padding-top: 30rem !important;
  }

  .xs\:pr-120 {
    padding-right: 30rem !important;
  }

  .xs\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .xs\:pl-120 {
    padding-left: 30rem !important;
  }

  .xs\:pt-128 {
    padding-top: 32rem !important;
  }

  .xs\:pr-128 {
    padding-right: 32rem !important;
  }

  .xs\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .xs\:pl-128 {
    padding-left: 32rem !important;
  }

  .xs\:pt-140 {
    padding-top: 35rem !important;
  }

  .xs\:pr-140 {
    padding-right: 35rem !important;
  }

  .xs\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .xs\:pl-140 {
    padding-left: 35rem !important;
  }

  .xs\:pt-160 {
    padding-top: 40rem !important;
  }

  .xs\:pr-160 {
    padding-right: 40rem !important;
  }

  .xs\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .xs\:pl-160 {
    padding-left: 40rem !important;
  }

  .xs\:pt-180 {
    padding-top: 45rem !important;
  }

  .xs\:pr-180 {
    padding-right: 45rem !important;
  }

  .xs\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .xs\:pl-180 {
    padding-left: 45rem !important;
  }

  .xs\:pt-192 {
    padding-top: 48rem !important;
  }

  .xs\:pr-192 {
    padding-right: 48rem !important;
  }

  .xs\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .xs\:pl-192 {
    padding-left: 48rem !important;
  }

  .xs\:pt-200 {
    padding-top: 50rem !important;
  }

  .xs\:pr-200 {
    padding-right: 50rem !important;
  }

  .xs\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .xs\:pl-200 {
    padding-left: 50rem !important;
  }

  .xs\:pt-240 {
    padding-top: 60rem !important;
  }

  .xs\:pr-240 {
    padding-right: 60rem !important;
  }

  .xs\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .xs\:pl-240 {
    padding-left: 60rem !important;
  }

  .xs\:pt-256 {
    padding-top: 64rem !important;
  }

  .xs\:pr-256 {
    padding-right: 64rem !important;
  }

  .xs\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .xs\:pl-256 {
    padding-left: 64rem !important;
  }

  .xs\:pt-280 {
    padding-top: 70rem !important;
  }

  .xs\:pr-280 {
    padding-right: 70rem !important;
  }

  .xs\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .xs\:pl-280 {
    padding-left: 70rem !important;
  }

  .xs\:pt-320 {
    padding-top: 80rem !important;
  }

  .xs\:pr-320 {
    padding-right: 80rem !important;
  }

  .xs\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .xs\:pl-320 {
    padding-left: 80rem !important;
  }

  .xs\:pt-360 {
    padding-top: 90rem !important;
  }

  .xs\:pr-360 {
    padding-right: 90rem !important;
  }

  .xs\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .xs\:pl-360 {
    padding-left: 90rem !important;
  }

  .xs\:pt-400 {
    padding-top: 100rem !important;
  }

  .xs\:pr-400 {
    padding-right: 100rem !important;
  }

  .xs\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .xs\:pl-400 {
    padding-left: 100rem !important;
  }

  .xs\:pt-480 {
    padding-top: 120rem !important;
  }

  .xs\:pr-480 {
    padding-right: 120rem !important;
  }

  .xs\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .xs\:pl-480 {
    padding-left: 120rem !important;
  }

  .xs\:pt-px {
    padding-top: 1px !important;
  }

  .xs\:pr-px {
    padding-right: 1px !important;
  }

  .xs\:pb-px {
    padding-bottom: 1px !important;
  }

  .xs\:pl-px {
    padding-left: 1px !important;
  }

  .xs\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .xs\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .xs\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .xs\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .xs\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .xs\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .xs\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .xs\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .xs\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .xs\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .xs\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .xs\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .xs\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .xs\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .xs\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .xs\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .xs\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .xs\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .xs\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .xs\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .xs\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .xs\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .xs\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .xs\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .xs\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .xs\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .xs\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .xs\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .xs\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .xs\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .xs\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .xs\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .xs\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .xs\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .xs\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .xs\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .xs\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .xs\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .xs\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .xs\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .xs\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .xs\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .xs\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .xs\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .xs\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .xs\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .xs\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .xs\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .xs\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .xs\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .xs\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .xs\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .xs\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .xs\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .xs\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .xs\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .xs\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .xs\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .xs\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .xs\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .xs\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .xs\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .xs\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .xs\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .xs\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .xs\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .xs\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .xs\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .xs\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .xs\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .xs\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .xs\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .xs\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .xs\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .xs\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .xs\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .xs\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .xs\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .xs\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .xs\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .xs\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .xs\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .xs\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .xs\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .xs\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .xs\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .xs\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .xs\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .xs\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .xs\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .xs\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .xs\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .xs\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .xs\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .xs\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .xs\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .xs\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .xs\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .xs\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .xs\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .xs\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .xs\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .xs\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .xs\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .xs\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .xs\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .xs\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .xs\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .xs\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .xs\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .xs\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .xs\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .xs\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .xs\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .xs\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .xs\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .xs\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .xs\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .xs\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .xs\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .xs\:pt-full {
    padding-top: 100% !important;
  }

  .xs\:pr-full {
    padding-right: 100% !important;
  }

  .xs\:pb-full {
    padding-bottom: 100% !important;
  }

  .xs\:pl-full {
    padding-left: 100% !important;
  }

  .xs\:pt-2px {
    padding-top: 2px !important;
  }

  .xs\:pr-2px {
    padding-right: 2px !important;
  }

  .xs\:pb-2px {
    padding-bottom: 2px !important;
  }

  .xs\:pl-2px {
    padding-left: 2px !important;
  }

  .xs\:static {
    position: static !important;
  }

  .xs\:fixed {
    position: fixed !important;
  }

  .xs\:absolute {
    position: absolute !important;
  }

  .xs\:relative {
    position: relative !important;
  }

  .xs\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .xs\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .xs\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .xs\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .xs\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .xs\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .xs\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .xs\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .xs\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .xs\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .xs\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .xs\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .xs\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .xs\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .xs\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .xs\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .xs\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .xs\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .xs\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .xs\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .xs\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .xs\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .xs\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .xs\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .xs\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .xs\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .xs\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .xs\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .xs\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .xs\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .xs\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .xs\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .xs\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .xs\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .xs\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .xs\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .xs\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .xs\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .xs\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .xs\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .xs\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .xs\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .xs\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .xs\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .xs\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .xs\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .xs\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .xs\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .xs\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .xs\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .xs\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .xs\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .xs\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .xs\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .xs\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .xs\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .xs\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .xs\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .xs\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .xs\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .xs\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xs\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xs\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xs\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .xs\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xs\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .xs\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .xs\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .xs\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .xs\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .xs\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .xs\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xs\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xs\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xs\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .xs\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .xs\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .xs\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .xs\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xs\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .xs\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xs\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .xs\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xs\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .xs\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .xs\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .xs\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .xs\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .xs\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .xs\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .xs\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .xs\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .xs\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .xs\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .xs\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .xs\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .xs\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .xs\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .xs\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .xs\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .xs\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .xs\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .xs\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .xs\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .xs\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .xs\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .xs\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .xs\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .xs\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .xs\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .xs\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .xs\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .xs\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .xs\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .xs\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .xs\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .xs\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .xs\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .xs\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .xs\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .xs\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .xs\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .xs\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .xs\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .xs\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .xs\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .xs\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .xs\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .xs\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .xs\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .xs\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .xs\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .xs\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .xs\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .xs\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .xs\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .xs\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .xs\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .xs\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .xs\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .xs\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .xs\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .xs\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .xs\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .xs\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .xs\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .xs\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .xs\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .xs\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .xs\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .xs\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .xs\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .xs\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .xs\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .xs\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .xs\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .xs\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .xs\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .xs\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .xs\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .xs\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .xs\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .xs\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .xs\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .xs\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .xs\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .xs\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .xs\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .xs\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .xs\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .xs\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .xs\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .xs\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .xs\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .xs\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .xs\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .xs\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .xs\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .xs\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .xs\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .xs\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .xs\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .xs\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .xs\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .xs\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .xs\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .xs\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .xs\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .xs\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .xs\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .xs\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .xs\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .xs\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .xs\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .xs\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .xs\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .xs\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .xs\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .xs\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .xs\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .xs\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .xs\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .xs\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .xs\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .xs\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .xs\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .xs\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .xs\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .xs\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .xs\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xs\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .xs\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xs\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .xs\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .xs\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .xs\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .xs\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .xs\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .xs\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .xs\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .xs\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .xs\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .xs\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .xs\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .xs\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .xs\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .xs\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .xs\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .xs\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .xs\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xs\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .xs\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .xs\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .xs\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xs\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .xs\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .xs\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .xs\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .xs\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .xs\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .xs\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .xs\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .xs\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .xs\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xs\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .xs\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .xs\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .xs\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .xs\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .xs\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .xs\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .xs\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xs\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .xs\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .xs\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .xs\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .xs\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .xs\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .xs\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .xs\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .xs\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .xs\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .xs\:top-0 {
    top: 0 !important;
  }

  .xs\:right-0 {
    right: 0 !important;
  }

  .xs\:bottom-0 {
    bottom: 0 !important;
  }

  .xs\:left-0 {
    left: 0 !important;
  }

  .xs\:top-1 {
    top: 0.25rem !important;
  }

  .xs\:right-1 {
    right: 0.25rem !important;
  }

  .xs\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .xs\:left-1 {
    left: 0.25rem !important;
  }

  .xs\:top-2 {
    top: 0.5rem !important;
  }

  .xs\:right-2 {
    right: 0.5rem !important;
  }

  .xs\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .xs\:left-2 {
    left: 0.5rem !important;
  }

  .xs\:top-3 {
    top: 0.75rem !important;
  }

  .xs\:right-3 {
    right: 0.75rem !important;
  }

  .xs\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .xs\:left-3 {
    left: 0.75rem !important;
  }

  .xs\:top-4 {
    top: 1rem !important;
  }

  .xs\:right-4 {
    right: 1rem !important;
  }

  .xs\:bottom-4 {
    bottom: 1rem !important;
  }

  .xs\:left-4 {
    left: 1rem !important;
  }

  .xs\:top-5 {
    top: 1.25rem !important;
  }

  .xs\:right-5 {
    right: 1.25rem !important;
  }

  .xs\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .xs\:left-5 {
    left: 1.25rem !important;
  }

  .xs\:top-6 {
    top: 1.5rem !important;
  }

  .xs\:right-6 {
    right: 1.5rem !important;
  }

  .xs\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .xs\:left-6 {
    left: 1.5rem !important;
  }

  .xs\:top-7 {
    top: 1.75rem !important;
  }

  .xs\:right-7 {
    right: 1.75rem !important;
  }

  .xs\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .xs\:left-7 {
    left: 1.75rem !important;
  }

  .xs\:top-8 {
    top: 2rem !important;
  }

  .xs\:right-8 {
    right: 2rem !important;
  }

  .xs\:bottom-8 {
    bottom: 2rem !important;
  }

  .xs\:left-8 {
    left: 2rem !important;
  }

  .xs\:top-9 {
    top: 2.25rem !important;
  }

  .xs\:right-9 {
    right: 2.25rem !important;
  }

  .xs\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .xs\:left-9 {
    left: 2.25rem !important;
  }

  .xs\:top-10 {
    top: 2.5rem !important;
  }

  .xs\:right-10 {
    right: 2.5rem !important;
  }

  .xs\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .xs\:left-10 {
    left: 2.5rem !important;
  }

  .xs\:top-11 {
    top: 2.75rem !important;
  }

  .xs\:right-11 {
    right: 2.75rem !important;
  }

  .xs\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .xs\:left-11 {
    left: 2.75rem !important;
  }

  .xs\:top-12 {
    top: 3rem !important;
  }

  .xs\:right-12 {
    right: 3rem !important;
  }

  .xs\:bottom-12 {
    bottom: 3rem !important;
  }

  .xs\:left-12 {
    left: 3rem !important;
  }

  .xs\:top-13 {
    top: 3.25rem !important;
  }

  .xs\:right-13 {
    right: 3.25rem !important;
  }

  .xs\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .xs\:left-13 {
    left: 3.25rem !important;
  }

  .xs\:top-14 {
    top: 3.5rem !important;
  }

  .xs\:right-14 {
    right: 3.5rem !important;
  }

  .xs\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .xs\:left-14 {
    left: 3.5rem !important;
  }

  .xs\:top-15 {
    top: 3.75rem !important;
  }

  .xs\:right-15 {
    right: 3.75rem !important;
  }

  .xs\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .xs\:left-15 {
    left: 3.75rem !important;
  }

  .xs\:top-16 {
    top: 4rem !important;
  }

  .xs\:right-16 {
    right: 4rem !important;
  }

  .xs\:bottom-16 {
    bottom: 4rem !important;
  }

  .xs\:left-16 {
    left: 4rem !important;
  }

  .xs\:top-18 {
    top: 4.5rem !important;
  }

  .xs\:right-18 {
    right: 4.5rem !important;
  }

  .xs\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .xs\:left-18 {
    left: 4.5rem !important;
  }

  .xs\:top-20 {
    top: 5rem !important;
  }

  .xs\:right-20 {
    right: 5rem !important;
  }

  .xs\:bottom-20 {
    bottom: 5rem !important;
  }

  .xs\:left-20 {
    left: 5rem !important;
  }

  .xs\:top-22 {
    top: 5.5rem !important;
  }

  .xs\:right-22 {
    right: 5.5rem !important;
  }

  .xs\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .xs\:left-22 {
    left: 5.5rem !important;
  }

  .xs\:top-24 {
    top: 6rem !important;
  }

  .xs\:right-24 {
    right: 6rem !important;
  }

  .xs\:bottom-24 {
    bottom: 6rem !important;
  }

  .xs\:left-24 {
    left: 6rem !important;
  }

  .xs\:top-26 {
    top: 6.5rem !important;
  }

  .xs\:right-26 {
    right: 6.5rem !important;
  }

  .xs\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .xs\:left-26 {
    left: 6.5rem !important;
  }

  .xs\:top-28 {
    top: 7rem !important;
  }

  .xs\:right-28 {
    right: 7rem !important;
  }

  .xs\:bottom-28 {
    bottom: 7rem !important;
  }

  .xs\:left-28 {
    left: 7rem !important;
  }

  .xs\:top-30 {
    top: 7.5rem !important;
  }

  .xs\:right-30 {
    right: 7.5rem !important;
  }

  .xs\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .xs\:left-30 {
    left: 7.5rem !important;
  }

  .xs\:top-32 {
    top: 8rem !important;
  }

  .xs\:right-32 {
    right: 8rem !important;
  }

  .xs\:bottom-32 {
    bottom: 8rem !important;
  }

  .xs\:left-32 {
    left: 8rem !important;
  }

  .xs\:top-36 {
    top: 9rem !important;
  }

  .xs\:right-36 {
    right: 9rem !important;
  }

  .xs\:bottom-36 {
    bottom: 9rem !important;
  }

  .xs\:left-36 {
    left: 9rem !important;
  }

  .xs\:top-40 {
    top: 10rem !important;
  }

  .xs\:right-40 {
    right: 10rem !important;
  }

  .xs\:bottom-40 {
    bottom: 10rem !important;
  }

  .xs\:left-40 {
    left: 10rem !important;
  }

  .xs\:top-44 {
    top: 11rem !important;
  }

  .xs\:right-44 {
    right: 11rem !important;
  }

  .xs\:bottom-44 {
    bottom: 11rem !important;
  }

  .xs\:left-44 {
    left: 11rem !important;
  }

  .xs\:top-48 {
    top: 12rem !important;
  }

  .xs\:right-48 {
    right: 12rem !important;
  }

  .xs\:bottom-48 {
    bottom: 12rem !important;
  }

  .xs\:left-48 {
    left: 12rem !important;
  }

  .xs\:top-50 {
    top: 12.5rem !important;
  }

  .xs\:right-50 {
    right: 12.5rem !important;
  }

  .xs\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .xs\:left-50 {
    left: 12.5rem !important;
  }

  .xs\:top-52 {
    top: 13rem !important;
  }

  .xs\:right-52 {
    right: 13rem !important;
  }

  .xs\:bottom-52 {
    bottom: 13rem !important;
  }

  .xs\:left-52 {
    left: 13rem !important;
  }

  .xs\:top-56 {
    top: 14rem !important;
  }

  .xs\:right-56 {
    right: 14rem !important;
  }

  .xs\:bottom-56 {
    bottom: 14rem !important;
  }

  .xs\:left-56 {
    left: 14rem !important;
  }

  .xs\:top-60 {
    top: 15rem !important;
  }

  .xs\:right-60 {
    right: 15rem !important;
  }

  .xs\:bottom-60 {
    bottom: 15rem !important;
  }

  .xs\:left-60 {
    left: 15rem !important;
  }

  .xs\:top-64 {
    top: 16rem !important;
  }

  .xs\:right-64 {
    right: 16rem !important;
  }

  .xs\:bottom-64 {
    bottom: 16rem !important;
  }

  .xs\:left-64 {
    left: 16rem !important;
  }

  .xs\:top-72 {
    top: 18rem !important;
  }

  .xs\:right-72 {
    right: 18rem !important;
  }

  .xs\:bottom-72 {
    bottom: 18rem !important;
  }

  .xs\:left-72 {
    left: 18rem !important;
  }

  .xs\:top-80 {
    top: 20rem !important;
  }

  .xs\:right-80 {
    right: 20rem !important;
  }

  .xs\:bottom-80 {
    bottom: 20rem !important;
  }

  .xs\:left-80 {
    left: 20rem !important;
  }

  .xs\:top-90 {
    top: 24rem !important;
  }

  .xs\:right-90 {
    right: 24rem !important;
  }

  .xs\:bottom-90 {
    bottom: 24rem !important;
  }

  .xs\:left-90 {
    left: 24rem !important;
  }

  .xs\:top-96 {
    top: 24rem !important;
  }

  .xs\:right-96 {
    right: 24rem !important;
  }

  .xs\:bottom-96 {
    bottom: 24rem !important;
  }

  .xs\:left-96 {
    left: 24rem !important;
  }

  .xs\:top-100 {
    top: 25rem !important;
  }

  .xs\:right-100 {
    right: 25rem !important;
  }

  .xs\:bottom-100 {
    bottom: 25rem !important;
  }

  .xs\:left-100 {
    left: 25rem !important;
  }

  .xs\:top-120 {
    top: 30rem !important;
  }

  .xs\:right-120 {
    right: 30rem !important;
  }

  .xs\:bottom-120 {
    bottom: 30rem !important;
  }

  .xs\:left-120 {
    left: 30rem !important;
  }

  .xs\:top-128 {
    top: 32rem !important;
  }

  .xs\:right-128 {
    right: 32rem !important;
  }

  .xs\:bottom-128 {
    bottom: 32rem !important;
  }

  .xs\:left-128 {
    left: 32rem !important;
  }

  .xs\:top-140 {
    top: 35rem !important;
  }

  .xs\:right-140 {
    right: 35rem !important;
  }

  .xs\:bottom-140 {
    bottom: 35rem !important;
  }

  .xs\:left-140 {
    left: 35rem !important;
  }

  .xs\:top-160 {
    top: 40rem !important;
  }

  .xs\:right-160 {
    right: 40rem !important;
  }

  .xs\:bottom-160 {
    bottom: 40rem !important;
  }

  .xs\:left-160 {
    left: 40rem !important;
  }

  .xs\:top-180 {
    top: 45rem !important;
  }

  .xs\:right-180 {
    right: 45rem !important;
  }

  .xs\:bottom-180 {
    bottom: 45rem !important;
  }

  .xs\:left-180 {
    left: 45rem !important;
  }

  .xs\:top-192 {
    top: 48rem !important;
  }

  .xs\:right-192 {
    right: 48rem !important;
  }

  .xs\:bottom-192 {
    bottom: 48rem !important;
  }

  .xs\:left-192 {
    left: 48rem !important;
  }

  .xs\:top-200 {
    top: 50rem !important;
  }

  .xs\:right-200 {
    right: 50rem !important;
  }

  .xs\:bottom-200 {
    bottom: 50rem !important;
  }

  .xs\:left-200 {
    left: 50rem !important;
  }

  .xs\:top-240 {
    top: 60rem !important;
  }

  .xs\:right-240 {
    right: 60rem !important;
  }

  .xs\:bottom-240 {
    bottom: 60rem !important;
  }

  .xs\:left-240 {
    left: 60rem !important;
  }

  .xs\:top-256 {
    top: 64rem !important;
  }

  .xs\:right-256 {
    right: 64rem !important;
  }

  .xs\:bottom-256 {
    bottom: 64rem !important;
  }

  .xs\:left-256 {
    left: 64rem !important;
  }

  .xs\:top-280 {
    top: 70rem !important;
  }

  .xs\:right-280 {
    right: 70rem !important;
  }

  .xs\:bottom-280 {
    bottom: 70rem !important;
  }

  .xs\:left-280 {
    left: 70rem !important;
  }

  .xs\:top-320 {
    top: 80rem !important;
  }

  .xs\:right-320 {
    right: 80rem !important;
  }

  .xs\:bottom-320 {
    bottom: 80rem !important;
  }

  .xs\:left-320 {
    left: 80rem !important;
  }

  .xs\:top-360 {
    top: 90rem !important;
  }

  .xs\:right-360 {
    right: 90rem !important;
  }

  .xs\:bottom-360 {
    bottom: 90rem !important;
  }

  .xs\:left-360 {
    left: 90rem !important;
  }

  .xs\:top-400 {
    top: 100rem !important;
  }

  .xs\:right-400 {
    right: 100rem !important;
  }

  .xs\:bottom-400 {
    bottom: 100rem !important;
  }

  .xs\:left-400 {
    left: 100rem !important;
  }

  .xs\:top-480 {
    top: 120rem !important;
  }

  .xs\:right-480 {
    right: 120rem !important;
  }

  .xs\:bottom-480 {
    bottom: 120rem !important;
  }

  .xs\:left-480 {
    left: 120rem !important;
  }

  .xs\:top-auto {
    top: auto !important;
  }

  .xs\:right-auto {
    right: auto !important;
  }

  .xs\:bottom-auto {
    bottom: auto !important;
  }

  .xs\:left-auto {
    left: auto !important;
  }

  .xs\:top-px {
    top: 1px !important;
  }

  .xs\:right-px {
    right: 1px !important;
  }

  .xs\:bottom-px {
    bottom: 1px !important;
  }

  .xs\:left-px {
    left: 1px !important;
  }

  .xs\:top-0\.5 {
    top: 0.125rem !important;
  }

  .xs\:right-0\.5 {
    right: 0.125rem !important;
  }

  .xs\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .xs\:left-0\.5 {
    left: 0.125rem !important;
  }

  .xs\:top-1\.5 {
    top: 0.375rem !important;
  }

  .xs\:right-1\.5 {
    right: 0.375rem !important;
  }

  .xs\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .xs\:left-1\.5 {
    left: 0.375rem !important;
  }

  .xs\:top-2\.5 {
    top: 0.625rem !important;
  }

  .xs\:right-2\.5 {
    right: 0.625rem !important;
  }

  .xs\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .xs\:left-2\.5 {
    left: 0.625rem !important;
  }

  .xs\:top-3\.5 {
    top: 0.875rem !important;
  }

  .xs\:right-3\.5 {
    right: 0.875rem !important;
  }

  .xs\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .xs\:left-3\.5 {
    left: 0.875rem !important;
  }

  .xs\:top-1\/2 {
    top: 50% !important;
  }

  .xs\:right-1\/2 {
    right: 50% !important;
  }

  .xs\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .xs\:left-1\/2 {
    left: 50% !important;
  }

  .xs\:top-1\/3 {
    top: 33.333333% !important;
  }

  .xs\:right-1\/3 {
    right: 33.333333% !important;
  }

  .xs\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .xs\:left-1\/3 {
    left: 33.333333% !important;
  }

  .xs\:top-2\/3 {
    top: 66.666667% !important;
  }

  .xs\:right-2\/3 {
    right: 66.666667% !important;
  }

  .xs\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .xs\:left-2\/3 {
    left: 66.666667% !important;
  }

  .xs\:top-1\/4 {
    top: 25% !important;
  }

  .xs\:right-1\/4 {
    right: 25% !important;
  }

  .xs\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .xs\:left-1\/4 {
    left: 25% !important;
  }

  .xs\:top-2\/4 {
    top: 50% !important;
  }

  .xs\:right-2\/4 {
    right: 50% !important;
  }

  .xs\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .xs\:left-2\/4 {
    left: 50% !important;
  }

  .xs\:top-3\/4 {
    top: 75% !important;
  }

  .xs\:right-3\/4 {
    right: 75% !important;
  }

  .xs\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .xs\:left-3\/4 {
    left: 75% !important;
  }

  .xs\:top-1\/5 {
    top: 20% !important;
  }

  .xs\:right-1\/5 {
    right: 20% !important;
  }

  .xs\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .xs\:left-1\/5 {
    left: 20% !important;
  }

  .xs\:top-2\/5 {
    top: 40% !important;
  }

  .xs\:right-2\/5 {
    right: 40% !important;
  }

  .xs\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .xs\:left-2\/5 {
    left: 40% !important;
  }

  .xs\:top-3\/5 {
    top: 60% !important;
  }

  .xs\:right-3\/5 {
    right: 60% !important;
  }

  .xs\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .xs\:left-3\/5 {
    left: 60% !important;
  }

  .xs\:top-4\/5 {
    top: 80% !important;
  }

  .xs\:right-4\/5 {
    right: 80% !important;
  }

  .xs\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .xs\:left-4\/5 {
    left: 80% !important;
  }

  .xs\:top-1\/6 {
    top: 16.666667% !important;
  }

  .xs\:right-1\/6 {
    right: 16.666667% !important;
  }

  .xs\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .xs\:left-1\/6 {
    left: 16.666667% !important;
  }

  .xs\:top-2\/6 {
    top: 33.333333% !important;
  }

  .xs\:right-2\/6 {
    right: 33.333333% !important;
  }

  .xs\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .xs\:left-2\/6 {
    left: 33.333333% !important;
  }

  .xs\:top-3\/6 {
    top: 50% !important;
  }

  .xs\:right-3\/6 {
    right: 50% !important;
  }

  .xs\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .xs\:left-3\/6 {
    left: 50% !important;
  }

  .xs\:top-4\/6 {
    top: 66.666667% !important;
  }

  .xs\:right-4\/6 {
    right: 66.666667% !important;
  }

  .xs\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .xs\:left-4\/6 {
    left: 66.666667% !important;
  }

  .xs\:top-5\/6 {
    top: 83.333333% !important;
  }

  .xs\:right-5\/6 {
    right: 83.333333% !important;
  }

  .xs\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .xs\:left-5\/6 {
    left: 83.333333% !important;
  }

  .xs\:top-1\/12 {
    top: 8.333333% !important;
  }

  .xs\:right-1\/12 {
    right: 8.333333% !important;
  }

  .xs\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .xs\:left-1\/12 {
    left: 8.333333% !important;
  }

  .xs\:top-2\/12 {
    top: 16.666667% !important;
  }

  .xs\:right-2\/12 {
    right: 16.666667% !important;
  }

  .xs\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .xs\:left-2\/12 {
    left: 16.666667% !important;
  }

  .xs\:top-3\/12 {
    top: 25% !important;
  }

  .xs\:right-3\/12 {
    right: 25% !important;
  }

  .xs\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .xs\:left-3\/12 {
    left: 25% !important;
  }

  .xs\:top-4\/12 {
    top: 33.333333% !important;
  }

  .xs\:right-4\/12 {
    right: 33.333333% !important;
  }

  .xs\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .xs\:left-4\/12 {
    left: 33.333333% !important;
  }

  .xs\:top-5\/12 {
    top: 41.666667% !important;
  }

  .xs\:right-5\/12 {
    right: 41.666667% !important;
  }

  .xs\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .xs\:left-5\/12 {
    left: 41.666667% !important;
  }

  .xs\:top-6\/12 {
    top: 50% !important;
  }

  .xs\:right-6\/12 {
    right: 50% !important;
  }

  .xs\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .xs\:left-6\/12 {
    left: 50% !important;
  }

  .xs\:top-7\/12 {
    top: 58.333333% !important;
  }

  .xs\:right-7\/12 {
    right: 58.333333% !important;
  }

  .xs\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .xs\:left-7\/12 {
    left: 58.333333% !important;
  }

  .xs\:top-8\/12 {
    top: 66.666667% !important;
  }

  .xs\:right-8\/12 {
    right: 66.666667% !important;
  }

  .xs\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .xs\:left-8\/12 {
    left: 66.666667% !important;
  }

  .xs\:top-9\/12 {
    top: 75% !important;
  }

  .xs\:right-9\/12 {
    right: 75% !important;
  }

  .xs\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .xs\:left-9\/12 {
    left: 75% !important;
  }

  .xs\:top-10\/12 {
    top: 83.333333% !important;
  }

  .xs\:right-10\/12 {
    right: 83.333333% !important;
  }

  .xs\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .xs\:left-10\/12 {
    left: 83.333333% !important;
  }

  .xs\:top-11\/12 {
    top: 91.666667% !important;
  }

  .xs\:right-11\/12 {
    right: 91.666667% !important;
  }

  .xs\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .xs\:left-11\/12 {
    left: 91.666667% !important;
  }

  .xs\:top-full {
    top: 100% !important;
  }

  .xs\:right-full {
    right: 100% !important;
  }

  .xs\:bottom-full {
    bottom: 100% !important;
  }

  .xs\:left-full {
    left: 100% !important;
  }

  .xs\:top-2px {
    top: 2px !important;
  }

  .xs\:right-2px {
    right: 2px !important;
  }

  .xs\:bottom-2px {
    bottom: 2px !important;
  }

  .xs\:left-2px {
    left: 2px !important;
  }

  .xs\:text-left {
    text-align: left !important;
  }

  .xs\:text-center {
    text-align: center !important;
  }

  .xs\:text-right {
    text-align: right !important;
  }

  .xs\:text-justify {
    text-align: justify !important;
  }

  .xs\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .xs\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .xs\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .xs\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .xs\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .xs\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .xs\:visible {
    visibility: visible !important;
  }

  .xs\:invisible {
    visibility: hidden !important;
  }

  .xs\:whitespace-normal {
    white-space: normal !important;
  }

  .xs\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .xs\:whitespace-pre {
    white-space: pre !important;
  }

  .xs\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .xs\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .xs\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .xs\:break-words {
    overflow-wrap: break-word !important;
  }

  .xs\:break-all {
    word-break: break-all !important;
  }

  .xs\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .xs\:w-0 {
    width: 0 !important;
  }

  .xs\:w-1 {
    width: 0.25rem !important;
  }

  .xs\:w-2 {
    width: 0.5rem !important;
  }

  .xs\:w-3 {
    width: 0.75rem !important;
  }

  .xs\:w-4 {
    width: 1rem !important;
  }

  .xs\:w-5 {
    width: 1.25rem !important;
  }

  .xs\:w-6 {
    width: 1.5rem !important;
  }

  .xs\:w-7 {
    width: 1.75rem !important;
  }

  .xs\:w-8 {
    width: 2rem !important;
  }

  .xs\:w-9 {
    width: 2.25rem !important;
  }

  .xs\:w-10 {
    width: 2.5rem !important;
  }

  .xs\:w-11 {
    width: 2.75rem !important;
  }

  .xs\:w-12 {
    width: 3rem !important;
  }

  .xs\:w-13 {
    width: 3.25rem !important;
  }

  .xs\:w-14 {
    width: 3.5rem !important;
  }

  .xs\:w-15 {
    width: 3.75rem !important;
  }

  .xs\:w-16 {
    width: 4rem !important;
  }

  .xs\:w-18 {
    width: 4.5rem !important;
  }

  .xs\:w-20 {
    width: 5rem !important;
  }

  .xs\:w-22 {
    width: 5.5rem !important;
  }

  .xs\:w-24 {
    width: 6rem !important;
  }

  .xs\:w-26 {
    width: 6.5rem !important;
  }

  .xs\:w-28 {
    width: 7rem !important;
  }

  .xs\:w-30 {
    width: 7.5rem !important;
  }

  .xs\:w-32 {
    width: 8rem !important;
  }

  .xs\:w-36 {
    width: 9rem !important;
  }

  .xs\:w-40 {
    width: 10rem !important;
  }

  .xs\:w-44 {
    width: 11rem !important;
  }

  .xs\:w-48 {
    width: 12rem !important;
  }

  .xs\:w-50 {
    width: 12.5rem !important;
  }

  .xs\:w-52 {
    width: 13rem !important;
  }

  .xs\:w-56 {
    width: 14rem !important;
  }

  .xs\:w-60 {
    width: 15rem !important;
  }

  .xs\:w-64 {
    width: 16rem !important;
  }

  .xs\:w-72 {
    width: 18rem !important;
  }

  .xs\:w-80 {
    width: 20rem !important;
  }

  .xs\:w-90 {
    width: 24rem !important;
  }

  .xs\:w-96 {
    width: 24rem !important;
  }

  .xs\:w-100 {
    width: 25rem !important;
  }

  .xs\:w-120 {
    width: 30rem !important;
  }

  .xs\:w-128 {
    width: 32rem !important;
  }

  .xs\:w-140 {
    width: 35rem !important;
  }

  .xs\:w-160 {
    width: 40rem !important;
  }

  .xs\:w-180 {
    width: 45rem !important;
  }

  .xs\:w-192 {
    width: 48rem !important;
  }

  .xs\:w-200 {
    width: 50rem !important;
  }

  .xs\:w-240 {
    width: 60rem !important;
  }

  .xs\:w-256 {
    width: 64rem !important;
  }

  .xs\:w-280 {
    width: 70rem !important;
  }

  .xs\:w-320 {
    width: 80rem !important;
  }

  .xs\:w-360 {
    width: 90rem !important;
  }

  .xs\:w-400 {
    width: 100rem !important;
  }

  .xs\:w-480 {
    width: 120rem !important;
  }

  .xs\:w-auto {
    width: auto !important;
  }

  .xs\:w-px {
    width: 1px !important;
  }

  .xs\:w-0\.5 {
    width: 0.125rem !important;
  }

  .xs\:w-1\.5 {
    width: 0.375rem !important;
  }

  .xs\:w-2\.5 {
    width: 0.625rem !important;
  }

  .xs\:w-3\.5 {
    width: 0.875rem !important;
  }

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

  .xs\:w-1\/3 {
    width: 33.333333% !important;
  }

  .xs\:w-2\/3 {
    width: 66.666667% !important;
  }

  .xs\:w-1\/4 {
    width: 25% !important;
  }

  .xs\:w-2\/4 {
    width: 50% !important;
  }

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

  .xs\:w-1\/5 {
    width: 20% !important;
  }

  .xs\:w-2\/5 {
    width: 40% !important;
  }

  .xs\:w-3\/5 {
    width: 60% !important;
  }

  .xs\:w-4\/5 {
    width: 80% !important;
  }

  .xs\:w-1\/6 {
    width: 16.666667% !important;
  }

  .xs\:w-2\/6 {
    width: 33.333333% !important;
  }

  .xs\:w-3\/6 {
    width: 50% !important;
  }

  .xs\:w-4\/6 {
    width: 66.666667% !important;
  }

  .xs\:w-5\/6 {
    width: 83.333333% !important;
  }

  .xs\:w-1\/12 {
    width: 8.333333% !important;
  }

  .xs\:w-2\/12 {
    width: 16.666667% !important;
  }

  .xs\:w-3\/12 {
    width: 25% !important;
  }

  .xs\:w-4\/12 {
    width: 33.333333% !important;
  }

  .xs\:w-5\/12 {
    width: 41.666667% !important;
  }

  .xs\:w-6\/12 {
    width: 50% !important;
  }

  .xs\:w-7\/12 {
    width: 58.333333% !important;
  }

  .xs\:w-8\/12 {
    width: 66.666667% !important;
  }

  .xs\:w-9\/12 {
    width: 75% !important;
  }

  .xs\:w-10\/12 {
    width: 83.333333% !important;
  }

  .xs\:w-11\/12 {
    width: 91.666667% !important;
  }

  .xs\:w-full {
    width: 100% !important;
  }

  .xs\:w-2px {
    width: 2px !important;
  }

  .xs\:w-screen {
    width: 100vw !important;
  }

  .xs\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .xs\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .xs\:z-0 {
    z-index: 0 !important;
  }

  .xs\:z-10 {
    z-index: 10 !important;
  }

  .xs\:z-20 {
    z-index: 20 !important;
  }

  .xs\:z-30 {
    z-index: 30 !important;
  }

  .xs\:z-40 {
    z-index: 40 !important;
  }

  .xs\:z-50 {
    z-index: 50 !important;
  }

  .xs\:z-60 {
    z-index: 60 !important;
  }

  .xs\:z-70 {
    z-index: 70 !important;
  }

  .xs\:z-80 {
    z-index: 80 !important;
  }

  .xs\:z-90 {
    z-index: 90 !important;
  }

  .xs\:z-99 {
    z-index: 99 !important;
  }

  .xs\:z-999 {
    z-index: 999 !important;
  }

  .xs\:z-9999 {
    z-index: 9999 !important;
  }

  .xs\:z-99999 {
    z-index: 99999 !important;
  }

  .xs\:z-auto {
    z-index: auto !important;
  }

  .xs\:-z-1 {
    z-index: -1 !important;
  }

  .xs\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .xs\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .xs\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .xs\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .xs\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .xs\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .xs\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .xs\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .xs\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .xs\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .xs\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .xs\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .xs\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .xs\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .xs\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .xs\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .xs\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .xs\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .xs\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .xs\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .xs\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .xs\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .xs\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .xs\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .xs\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .xs\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .xs\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .xs\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .xs\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .xs\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .xs\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .xs\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .xs\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .xs\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .xs\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .xs\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .xs\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .xs\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .xs\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .xs\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .xs\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .xs\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .xs\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .xs\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .xs\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .xs\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .xs\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .xs\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .xs\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .xs\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .xs\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .xs\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .xs\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .xs\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .xs\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .xs\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .xs\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .xs\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .xs\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .xs\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .xs\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .xs\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .xs\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .xs\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .xs\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .xs\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .xs\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .xs\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .xs\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .xs\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .xs\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .xs\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .xs\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .xs\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .xs\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .xs\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .xs\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .xs\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .xs\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .xs\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .xs\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .xs\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .xs\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .xs\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .xs\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .xs\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .xs\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .xs\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .xs\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .xs\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .xs\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .xs\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .xs\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .xs\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .xs\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .xs\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .xs\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .xs\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .xs\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .xs\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .xs\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .xs\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .xs\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .xs\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .xs\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .xs\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .xs\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .xs\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .xs\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .xs\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .xs\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .xs\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .xs\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .xs\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .xs\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .xs\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .xs\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .xs\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .xs\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .xs\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .xs\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .xs\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .xs\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .xs\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .xs\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .xs\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .xs\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .xs\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .xs\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .xs\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .xs\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .xs\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .xs\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .xs\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .xs\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .xs\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .xs\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .xs\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .xs\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .xs\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .xs\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .xs\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .xs\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .xs\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .xs\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .xs\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .xs\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .xs\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .xs\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .xs\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .xs\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .xs\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .xs\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .xs\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .xs\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .xs\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .xs\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .xs\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .xs\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .xs\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .xs\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .xs\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .xs\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .xs\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .xs\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .xs\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .xs\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .xs\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .xs\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .xs\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .xs\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .xs\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .xs\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .xs\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .xs\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .xs\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .xs\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .xs\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .xs\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .xs\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .xs\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .xs\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .xs\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .xs\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .xs\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .xs\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .xs\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .xs\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .xs\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .xs\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .xs\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .xs\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .xs\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .xs\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .xs\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .xs\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .xs\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .xs\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .xs\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .xs\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .xs\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .xs\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .xs\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .xs\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .xs\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .xs\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .xs\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .xs\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .xs\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .xs\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .xs\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .xs\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .xs\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .xs\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .xs\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .xs\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .xs\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .xs\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .xs\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .xs\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .xs\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .xs\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .xs\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .xs\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .xs\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .xs\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .xs\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .xs\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .xs\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .xs\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .xs\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .xs\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .xs\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .xs\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .xs\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .xs\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .xs\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .xs\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .xs\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .xs\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .xs\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .xs\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .xs\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .xs\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .xs\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .xs\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .xs\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .xs\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .xs\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .xs\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .xs\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .xs\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .xs\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .xs\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .xs\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .xs\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .xs\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .xs\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .xs\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .xs\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .xs\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .xs\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

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

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

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

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

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

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

  .xs\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .xs\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .xs\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

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

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

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

  .xs\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .xs\:col-auto {
    grid-column: auto !important;
  }

  .xs\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

  .xs\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }

  .xs\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .xs\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .xs\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .xs\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .xs\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .xs\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .xs\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .xs\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .xs\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .xs\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .xs\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .xs\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .xs\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .xs\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .xs\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .xs\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .xs\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .xs\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .xs\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .xs\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .xs\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .xs\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .xs\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .xs\:col-start-auto {
    grid-column-start: auto !important;
  }

  .xs\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .xs\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .xs\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .xs\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .xs\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .xs\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .xs\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .xs\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .xs\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .xs\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .xs\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .xs\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .xs\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .xs\:col-end-auto {
    grid-column-end: auto !important;
  }

  .xs\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .xs\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .xs\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .xs\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .xs\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .xs\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .xs\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .xs\:row-auto {
    grid-row: auto !important;
  }

  .xs\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .xs\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .xs\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .xs\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .xs\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .xs\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .xs\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .xs\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .xs\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .xs\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .xs\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .xs\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .xs\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .xs\:row-start-auto {
    grid-row-start: auto !important;
  }

  .xs\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .xs\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .xs\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .xs\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .xs\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .xs\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .xs\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .xs\:row-end-auto {
    grid-row-end: auto !important;
  }

  .xs\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .xs\:transform-none {
    transform: none !important;
  }

  .xs\:origin-center {
    transform-origin: center !important;
  }

  .xs\:origin-top {
    transform-origin: top !important;
  }

  .xs\:origin-top-right {
    transform-origin: top right !important;
  }

  .xs\:origin-right {
    transform-origin: right !important;
  }

  .xs\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .xs\:origin-bottom {
    transform-origin: bottom !important;
  }

  .xs\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .xs\:origin-left {
    transform-origin: left !important;
  }

  .xs\:origin-top-left {
    transform-origin: top left !important;
  }

  .xs\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .xs\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .xs\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .xs\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .xs\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .xs\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .xs\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .xs\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .xs\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .xs\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .xs\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .xs\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .xs\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .xs\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .xs\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .xs\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .xs\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .xs\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .xs\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .xs\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .xs\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .xs\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .xs\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .xs\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .xs\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .xs\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .xs\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .xs\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .xs\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .xs\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .sm\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .sm\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .sm\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .sm\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .sm\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .sm\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .sm\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .sm\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .sm\:rounded-none {
    border-radius: 0 !important;
  }

  .sm\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .sm\:rounded {
    border-radius: 0.25rem !important;
  }

  .sm\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .sm\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .sm\:rounded-full {
    border-radius: 9999px !important;
  }

  .sm\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .sm\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .sm\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .sm\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .sm\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .sm\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .sm\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .sm\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .sm\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .sm\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .sm\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .sm\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .sm\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .sm\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .sm\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .sm\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .sm\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .sm\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .sm\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .sm\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .sm\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .sm\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .sm\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .sm\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .sm\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .sm\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .sm\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .sm\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .sm\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .sm\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .sm\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .sm\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .sm\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .sm\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .sm\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .sm\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .sm\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .sm\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .sm\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .sm\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .sm\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .sm\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .sm\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .sm\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .sm\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .sm\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .sm\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .sm\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .sm\:border-0 {
    border-width: 0 !important;
  }

  .sm\:border-2 {
    border-width: 2px !important;
  }

  .sm\:border-4 {
    border-width: 4px !important;
  }

  .sm\:border-8 {
    border-width: 8px !important;
  }

  .sm\:border {
    border-width: 1px !important;
  }

  .sm\:border-t-0 {
    border-top-width: 0 !important;
  }

  .sm\:border-r-0 {
    border-right-width: 0 !important;
  }

  .sm\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .sm\:border-l-0 {
    border-left-width: 0 !important;
  }

  .sm\:border-t-2 {
    border-top-width: 2px !important;
  }

  .sm\:border-r-2 {
    border-right-width: 2px !important;
  }

  .sm\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .sm\:border-l-2 {
    border-left-width: 2px !important;
  }

  .sm\:border-t-4 {
    border-top-width: 4px !important;
  }

  .sm\:border-r-4 {
    border-right-width: 4px !important;
  }

  .sm\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .sm\:border-l-4 {
    border-left-width: 4px !important;
  }

  .sm\:border-t-8 {
    border-top-width: 8px !important;
  }

  .sm\:border-r-8 {
    border-right-width: 8px !important;
  }

  .sm\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .sm\:border-l-8 {
    border-left-width: 8px !important;
  }

  .sm\:border-t {
    border-top-width: 1px !important;
  }

  .sm\:border-r {
    border-right-width: 1px !important;
  }

  .sm\:border-b {
    border-bottom-width: 1px !important;
  }

  .sm\:border-l {
    border-left-width: 1px !important;
  }

  .sm\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .sm\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .sm\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .sm\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .sm\:first\:border:first-child {
    border-width: 1px !important;
  }

  .sm\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .sm\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .sm\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .sm\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .sm\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .sm\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .sm\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .sm\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .sm\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .sm\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .sm\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .sm\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .sm\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .sm\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .sm\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .sm\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .sm\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .sm\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .sm\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .sm\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .sm\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .sm\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .sm\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .sm\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .sm\:last\:border:last-child {
    border-width: 1px !important;
  }

  .sm\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .sm\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .sm\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .sm\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .sm\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .sm\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .sm\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .sm\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .sm\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .sm\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .sm\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .sm\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .sm\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .sm\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .sm\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .sm\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .sm\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .sm\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .sm\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .sm\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .sm\:block {
    display: block !important;
  }

  .sm\:inline-block {
    display: inline-block !important;
  }

  .sm\:inline {
    display: inline !important;
  }

  .sm\:flex {
    display: flex !important;
  }

  .sm\:inline-flex {
    display: inline-flex !important;
  }

  .sm\:table {
    display: table !important;
  }

  .sm\:table-caption {
    display: table-caption !important;
  }

  .sm\:table-cell {
    display: table-cell !important;
  }

  .sm\:table-column {
    display: table-column !important;
  }

  .sm\:table-column-group {
    display: table-column-group !important;
  }

  .sm\:table-footer-group {
    display: table-footer-group !important;
  }

  .sm\:table-header-group {
    display: table-header-group !important;
  }

  .sm\:table-row-group {
    display: table-row-group !important;
  }

  .sm\:table-row {
    display: table-row !important;
  }

  .sm\:flow-root {
    display: flow-root !important;
  }

  .sm\:grid {
    display: grid !important;
  }

  .sm\:inline-grid {
    display: inline-grid !important;
  }

  .sm\:contents {
    display: contents !important;
  }

  .sm\:hidden {
    display: none !important;
  }

  .sm\:flex-row {
    flex-direction: row !important;
  }

  .sm\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .sm\:flex-col {
    flex-direction: column !important;
  }

  .sm\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .sm\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .sm\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .sm\:items-start {
    align-items: flex-start !important;
  }

  .sm\:items-end {
    align-items: flex-end !important;
  }

  .sm\:items-center {
    align-items: center !important;
  }

  .sm\:items-baseline {
    align-items: baseline !important;
  }

  .sm\:items-stretch {
    align-items: stretch !important;
  }

  .sm\:self-auto {
    align-self: auto !important;
  }

  .sm\:self-start {
    align-self: flex-start !important;
  }

  .sm\:self-end {
    align-self: flex-end !important;
  }

  .sm\:self-center {
    align-self: center !important;
  }

  .sm\:self-stretch {
    align-self: stretch !important;
  }

  .sm\:justify-start {
    justify-content: flex-start !important;
  }

  .sm\:justify-end {
    justify-content: flex-end !important;
  }

  .sm\:justify-center {
    justify-content: center !important;
  }

  .sm\:justify-between {
    justify-content: space-between !important;
  }

  .sm\:justify-around {
    justify-content: space-around !important;
  }

  .sm\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .sm\:content-center {
    align-content: center !important;
  }

  .sm\:content-start {
    align-content: flex-start !important;
  }

  .sm\:content-end {
    align-content: flex-end !important;
  }

  .sm\:content-between {
    align-content: space-between !important;
  }

  .sm\:content-around {
    align-content: space-around !important;
  }

  .sm\:flex-0 {
    flex: 0 0 auto !important;
  }

  .sm\:flex-1 {
    flex: 1 1 0% !important;
  }

  .sm\:flex-auto {
    flex: 1 1 auto !important;
  }

  .sm\:flex-initial {
    flex: 0 1 auto !important;
  }

  .sm\:flex-none {
    flex: none !important;
  }

  .sm\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .sm\:flex-grow {
    flex-grow: 1 !important;
  }

  .sm\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .sm\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .sm\:order-1 {
    order: 1 !important;
  }

  .sm\:order-2 {
    order: 2 !important;
  }

  .sm\:order-3 {
    order: 3 !important;
  }

  .sm\:order-4 {
    order: 4 !important;
  }

  .sm\:order-5 {
    order: 5 !important;
  }

  .sm\:order-6 {
    order: 6 !important;
  }

  .sm\:order-7 {
    order: 7 !important;
  }

  .sm\:order-8 {
    order: 8 !important;
  }

  .sm\:order-9 {
    order: 9 !important;
  }

  .sm\:order-10 {
    order: 10 !important;
  }

  .sm\:order-11 {
    order: 11 !important;
  }

  .sm\:order-12 {
    order: 12 !important;
  }

  .sm\:order-first {
    order: -9999 !important;
  }

  .sm\:order-last {
    order: 9999 !important;
  }

  .sm\:order-none {
    order: 0 !important;
  }

  .sm\:font-hairline {
    font-weight: 100 !important;
  }

  .sm\:font-thin {
    font-weight: 200 !important;
  }

  .sm\:font-light {
    font-weight: 300 !important;
  }

  .sm\:font-normal {
    font-weight: 400 !important;
  }

  .sm\:font-medium {
    font-weight: 500 !important;
  }

  .sm\:font-semibold {
    font-weight: 600 !important;
  }

  .sm\:font-bold {
    font-weight: 700 !important;
  }

  .sm\:font-extrabold {
    font-weight: 800 !important;
  }

  .sm\:font-black {
    font-weight: 900 !important;
  }

  .sm\:h-0 {
    height: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:h-13 {
    height: 3.25rem !important;
  }

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

  .sm\:h-15 {
    height: 3.75rem !important;
  }

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

  .sm\:h-18 {
    height: 4.5rem !important;
  }

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

  .sm\:h-22 {
    height: 5.5rem !important;
  }

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

  .sm\:h-26 {
    height: 6.5rem !important;
  }

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

  .sm\:h-30 {
    height: 7.5rem !important;
  }

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

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

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

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

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

  .sm\:h-50 {
    height: 12.5rem !important;
  }

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

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

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

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

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

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

  .sm\:h-90 {
    height: 24rem !important;
  }

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

  .sm\:h-100 {
    height: 25rem !important;
  }

  .sm\:h-120 {
    height: 30rem !important;
  }

  .sm\:h-128 {
    height: 32rem !important;
  }

  .sm\:h-140 {
    height: 35rem !important;
  }

  .sm\:h-160 {
    height: 40rem !important;
  }

  .sm\:h-180 {
    height: 45rem !important;
  }

  .sm\:h-192 {
    height: 48rem !important;
  }

  .sm\:h-200 {
    height: 50rem !important;
  }

  .sm\:h-240 {
    height: 60rem !important;
  }

  .sm\:h-256 {
    height: 64rem !important;
  }

  .sm\:h-280 {
    height: 70rem !important;
  }

  .sm\:h-320 {
    height: 80rem !important;
  }

  .sm\:h-360 {
    height: 90rem !important;
  }

  .sm\:h-400 {
    height: 100rem !important;
  }

  .sm\:h-480 {
    height: 120rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:h-1\/12 {
    height: 8.333333% !important;
  }

  .sm\:h-2\/12 {
    height: 16.666667% !important;
  }

  .sm\:h-3\/12 {
    height: 25% !important;
  }

  .sm\:h-4\/12 {
    height: 33.333333% !important;
  }

  .sm\:h-5\/12 {
    height: 41.666667% !important;
  }

  .sm\:h-6\/12 {
    height: 50% !important;
  }

  .sm\:h-7\/12 {
    height: 58.333333% !important;
  }

  .sm\:h-8\/12 {
    height: 66.666667% !important;
  }

  .sm\:h-9\/12 {
    height: 75% !important;
  }

  .sm\:h-10\/12 {
    height: 83.333333% !important;
  }

  .sm\:h-11\/12 {
    height: 91.666667% !important;
  }

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

  .sm\:h-2px {
    height: 2px !important;
  }

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

  .sm\:text-xs {
    font-size: 0.625rem !important;
  }

  .sm\:text-sm {
    font-size: 0.75rem !important;
  }

  .sm\:text-md {
    font-size: 0.8125rem !important;
  }

  .sm\:text-base {
    font-size: 0.875rem !important;
  }

  .sm\:text-lg {
    font-size: 1rem !important;
  }

  .sm\:text-xl {
    font-size: 1.125rem !important;
  }

  .sm\:text-2xl {
    font-size: 1.25rem !important;
  }

  .sm\:text-3xl {
    font-size: 1.5rem !important;
  }

  .sm\:text-4xl {
    font-size: 2rem !important;
  }

  .sm\:text-5xl {
    font-size: 2.25rem !important;
  }

  .sm\:text-6xl {
    font-size: 2.5rem !important;
  }

  .sm\:text-7xl {
    font-size: 3rem !important;
  }

  .sm\:text-8xl {
    font-size: 4rem !important;
  }

  .sm\:text-9xl {
    font-size: 6rem !important;
  }

  .sm\:text-10xl {
    font-size: 8rem !important;
  }

  .sm\:leading-3 {
    line-height: 0.75rem !important;
  }

  .sm\:leading-4 {
    line-height: 1rem !important;
  }

  .sm\:leading-5 {
    line-height: 1.25rem !important;
  }

  .sm\:leading-6 {
    line-height: 1.5rem !important;
  }

  .sm\:leading-7 {
    line-height: 1.75rem !important;
  }

  .sm\:leading-8 {
    line-height: 2rem !important;
  }

  .sm\:leading-9 {
    line-height: 2.25rem !important;
  }

  .sm\:leading-10 {
    line-height: 2.5rem !important;
  }

  .sm\:leading-none {
    line-height: 1 !important;
  }

  .sm\:leading-tight {
    line-height: 1.25 !important;
  }

  .sm\:leading-snug {
    line-height: 1.375 !important;
  }

  .sm\:leading-normal {
    line-height: 1.5 !important;
  }

  .sm\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .sm\:leading-loose {
    line-height: 2 !important;
  }

  .sm\:m-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:m-13 {
    margin: 3.25rem !important;
  }

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

  .sm\:m-15 {
    margin: 3.75rem !important;
  }

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

  .sm\:m-18 {
    margin: 4.5rem !important;
  }

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

  .sm\:m-22 {
    margin: 5.5rem !important;
  }

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

  .sm\:m-26 {
    margin: 6.5rem !important;
  }

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

  .sm\:m-30 {
    margin: 7.5rem !important;
  }

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

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

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

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

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

  .sm\:m-50 {
    margin: 12.5rem !important;
  }

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

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

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

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

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

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

  .sm\:m-90 {
    margin: 24rem !important;
  }

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

  .sm\:m-100 {
    margin: 25rem !important;
  }

  .sm\:m-120 {
    margin: 30rem !important;
  }

  .sm\:m-128 {
    margin: 32rem !important;
  }

  .sm\:m-140 {
    margin: 35rem !important;
  }

  .sm\:m-160 {
    margin: 40rem !important;
  }

  .sm\:m-180 {
    margin: 45rem !important;
  }

  .sm\:m-192 {
    margin: 48rem !important;
  }

  .sm\:m-200 {
    margin: 50rem !important;
  }

  .sm\:m-240 {
    margin: 60rem !important;
  }

  .sm\:m-256 {
    margin: 64rem !important;
  }

  .sm\:m-280 {
    margin: 70rem !important;
  }

  .sm\:m-320 {
    margin: 80rem !important;
  }

  .sm\:m-360 {
    margin: 90rem !important;
  }

  .sm\:m-400 {
    margin: 100rem !important;
  }

  .sm\:m-480 {
    margin: 120rem !important;
  }

  .sm\:m-auto {
    margin: auto !important;
  }

  .sm\:m-px {
    margin: 1px !important;
  }

  .sm\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .sm\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .sm\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .sm\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .sm\:m-1\/2 {
    margin: 50% !important;
  }

  .sm\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .sm\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .sm\:m-1\/4 {
    margin: 25% !important;
  }

  .sm\:m-2\/4 {
    margin: 50% !important;
  }

  .sm\:m-3\/4 {
    margin: 75% !important;
  }

  .sm\:m-1\/5 {
    margin: 20% !important;
  }

  .sm\:m-2\/5 {
    margin: 40% !important;
  }

  .sm\:m-3\/5 {
    margin: 60% !important;
  }

  .sm\:m-4\/5 {
    margin: 80% !important;
  }

  .sm\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .sm\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .sm\:m-3\/6 {
    margin: 50% !important;
  }

  .sm\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .sm\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .sm\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .sm\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .sm\:m-3\/12 {
    margin: 25% !important;
  }

  .sm\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .sm\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .sm\:m-6\/12 {
    margin: 50% !important;
  }

  .sm\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .sm\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .sm\:m-9\/12 {
    margin: 75% !important;
  }

  .sm\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .sm\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .sm\:m-full {
    margin: 100% !important;
  }

  .sm\:m-2px {
    margin: 2px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:-m-13 {
    margin: -3.25rem !important;
  }

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

  .sm\:-m-15 {
    margin: -3.75rem !important;
  }

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

  .sm\:-m-18 {
    margin: -4.5rem !important;
  }

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

  .sm\:-m-22 {
    margin: -5.5rem !important;
  }

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

  .sm\:-m-26 {
    margin: -6.5rem !important;
  }

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

  .sm\:-m-30 {
    margin: -7.5rem !important;
  }

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

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

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

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

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

  .sm\:-m-50 {
    margin: -12.5rem !important;
  }

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

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

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

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

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

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

  .sm\:-m-90 {
    margin: -24rem !important;
  }

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

  .sm\:-m-100 {
    margin: -25rem !important;
  }

  .sm\:-m-120 {
    margin: -30rem !important;
  }

  .sm\:-m-128 {
    margin: -32rem !important;
  }

  .sm\:-m-140 {
    margin: -35rem !important;
  }

  .sm\:-m-160 {
    margin: -40rem !important;
  }

  .sm\:-m-180 {
    margin: -45rem !important;
  }

  .sm\:-m-192 {
    margin: -48rem !important;
  }

  .sm\:-m-200 {
    margin: -50rem !important;
  }

  .sm\:-m-240 {
    margin: -60rem !important;
  }

  .sm\:-m-256 {
    margin: -64rem !important;
  }

  .sm\:-m-280 {
    margin: -70rem !important;
  }

  .sm\:-m-320 {
    margin: -80rem !important;
  }

  .sm\:-m-360 {
    margin: -90rem !important;
  }

  .sm\:-m-400 {
    margin: -100rem !important;
  }

  .sm\:-m-480 {
    margin: -120rem !important;
  }

  .sm\:-m-px {
    margin: -1px !important;
  }

  .sm\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .sm\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .sm\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .sm\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .sm\:-m-1\/2 {
    margin: -50% !important;
  }

  .sm\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .sm\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .sm\:-m-1\/4 {
    margin: -25% !important;
  }

  .sm\:-m-2\/4 {
    margin: -50% !important;
  }

  .sm\:-m-3\/4 {
    margin: -75% !important;
  }

  .sm\:-m-1\/5 {
    margin: -20% !important;
  }

  .sm\:-m-2\/5 {
    margin: -40% !important;
  }

  .sm\:-m-3\/5 {
    margin: -60% !important;
  }

  .sm\:-m-4\/5 {
    margin: -80% !important;
  }

  .sm\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .sm\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .sm\:-m-3\/6 {
    margin: -50% !important;
  }

  .sm\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .sm\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .sm\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .sm\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .sm\:-m-3\/12 {
    margin: -25% !important;
  }

  .sm\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .sm\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .sm\:-m-6\/12 {
    margin: -50% !important;
  }

  .sm\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .sm\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .sm\:-m-9\/12 {
    margin: -75% !important;
  }

  .sm\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .sm\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .sm\:-m-full {
    margin: -100% !important;
  }

  .sm\:-m-2px {
    margin: -2px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .sm\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

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

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

  .sm\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .sm\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

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

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

  .sm\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .sm\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

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

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

  .sm\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .sm\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

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

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

  .sm\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .sm\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

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

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

  .sm\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .sm\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

  .sm\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .sm\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .sm\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

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

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

  .sm\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .sm\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .sm\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .sm\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .sm\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .sm\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .sm\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .sm\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .sm\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .sm\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .sm\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .sm\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .sm\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .sm\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .sm\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .sm\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .sm\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .sm\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .sm\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .sm\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .sm\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .sm\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .sm\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .sm\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .sm\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .sm\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .sm\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .sm\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .sm\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .sm\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .sm\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .sm\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .sm\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .sm\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .sm\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .sm\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .sm\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .sm\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .sm\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .sm\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .sm\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .sm\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .sm\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .sm\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .sm\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .sm\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .sm\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .sm\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .sm\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .sm\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .sm\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .sm\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .sm\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .sm\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .sm\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .sm\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .sm\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .sm\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .sm\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .sm\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .sm\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .sm\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .sm\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .sm\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .sm\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .sm\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .sm\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .sm\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .sm\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .sm\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .sm\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .sm\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .sm\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .sm\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .sm\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .sm\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .sm\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .sm\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .sm\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .sm\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .sm\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .sm\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .sm\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .sm\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .sm\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .sm\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .sm\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .sm\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .sm\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .sm\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .sm\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .sm\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .sm\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .sm\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .sm\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .sm\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .sm\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .sm\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

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

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

  .sm\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .sm\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

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

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

  .sm\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .sm\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

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

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

  .sm\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .sm\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

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

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

  .sm\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .sm\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

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

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

  .sm\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .sm\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

  .sm\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .sm\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .sm\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

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

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

  .sm\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .sm\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .sm\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .sm\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .sm\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .sm\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .sm\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .sm\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .sm\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .sm\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .sm\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .sm\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .sm\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .sm\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .sm\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .sm\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .sm\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .sm\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .sm\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .sm\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .sm\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .sm\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .sm\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .sm\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .sm\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .sm\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .sm\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .sm\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .sm\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .sm\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .sm\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .sm\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .sm\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .sm\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .sm\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .sm\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .sm\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .sm\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .sm\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .sm\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .sm\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .sm\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .sm\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .sm\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .sm\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .sm\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .sm\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .sm\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .sm\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .sm\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .sm\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .sm\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .sm\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .sm\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .sm\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .sm\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .sm\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .sm\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .sm\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .sm\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .sm\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .sm\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .sm\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .sm\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .sm\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .sm\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .sm\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .sm\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .sm\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .sm\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .sm\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .sm\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .sm\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .sm\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .sm\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .sm\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .sm\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .sm\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .sm\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .sm\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .sm\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .sm\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .sm\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .sm\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .sm\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .sm\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .sm\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .sm\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .sm\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .sm\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .sm\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .sm\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .sm\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .sm\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .sm\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .sm\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .sm\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .sm\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .sm\:ml-13 {
    margin-left: 3.25rem !important;
  }

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

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

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

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

  .sm\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .sm\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .sm\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .sm\:ml-15 {
    margin-left: 3.75rem !important;
  }

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

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

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

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

  .sm\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .sm\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .sm\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .sm\:ml-18 {
    margin-left: 4.5rem !important;
  }

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

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

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

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

  .sm\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .sm\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .sm\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .sm\:ml-22 {
    margin-left: 5.5rem !important;
  }

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

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

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

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

  .sm\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .sm\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .sm\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .sm\:ml-26 {
    margin-left: 6.5rem !important;
  }

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

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

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

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

  .sm\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .sm\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .sm\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .sm\:ml-30 {
    margin-left: 7.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .sm\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .sm\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .sm\:ml-50 {
    margin-left: 12.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:mt-90 {
    margin-top: 24rem !important;
  }

  .sm\:mr-90 {
    margin-right: 24rem !important;
  }

  .sm\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .sm\:ml-90 {
    margin-left: 24rem !important;
  }

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

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

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

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

  .sm\:mt-100 {
    margin-top: 25rem !important;
  }

  .sm\:mr-100 {
    margin-right: 25rem !important;
  }

  .sm\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .sm\:ml-100 {
    margin-left: 25rem !important;
  }

  .sm\:mt-120 {
    margin-top: 30rem !important;
  }

  .sm\:mr-120 {
    margin-right: 30rem !important;
  }

  .sm\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .sm\:ml-120 {
    margin-left: 30rem !important;
  }

  .sm\:mt-128 {
    margin-top: 32rem !important;
  }

  .sm\:mr-128 {
    margin-right: 32rem !important;
  }

  .sm\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .sm\:ml-128 {
    margin-left: 32rem !important;
  }

  .sm\:mt-140 {
    margin-top: 35rem !important;
  }

  .sm\:mr-140 {
    margin-right: 35rem !important;
  }

  .sm\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .sm\:ml-140 {
    margin-left: 35rem !important;
  }

  .sm\:mt-160 {
    margin-top: 40rem !important;
  }

  .sm\:mr-160 {
    margin-right: 40rem !important;
  }

  .sm\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .sm\:ml-160 {
    margin-left: 40rem !important;
  }

  .sm\:mt-180 {
    margin-top: 45rem !important;
  }

  .sm\:mr-180 {
    margin-right: 45rem !important;
  }

  .sm\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .sm\:ml-180 {
    margin-left: 45rem !important;
  }

  .sm\:mt-192 {
    margin-top: 48rem !important;
  }

  .sm\:mr-192 {
    margin-right: 48rem !important;
  }

  .sm\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .sm\:ml-192 {
    margin-left: 48rem !important;
  }

  .sm\:mt-200 {
    margin-top: 50rem !important;
  }

  .sm\:mr-200 {
    margin-right: 50rem !important;
  }

  .sm\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .sm\:ml-200 {
    margin-left: 50rem !important;
  }

  .sm\:mt-240 {
    margin-top: 60rem !important;
  }

  .sm\:mr-240 {
    margin-right: 60rem !important;
  }

  .sm\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .sm\:ml-240 {
    margin-left: 60rem !important;
  }

  .sm\:mt-256 {
    margin-top: 64rem !important;
  }

  .sm\:mr-256 {
    margin-right: 64rem !important;
  }

  .sm\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .sm\:ml-256 {
    margin-left: 64rem !important;
  }

  .sm\:mt-280 {
    margin-top: 70rem !important;
  }

  .sm\:mr-280 {
    margin-right: 70rem !important;
  }

  .sm\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .sm\:ml-280 {
    margin-left: 70rem !important;
  }

  .sm\:mt-320 {
    margin-top: 80rem !important;
  }

  .sm\:mr-320 {
    margin-right: 80rem !important;
  }

  .sm\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .sm\:ml-320 {
    margin-left: 80rem !important;
  }

  .sm\:mt-360 {
    margin-top: 90rem !important;
  }

  .sm\:mr-360 {
    margin-right: 90rem !important;
  }

  .sm\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .sm\:ml-360 {
    margin-left: 90rem !important;
  }

  .sm\:mt-400 {
    margin-top: 100rem !important;
  }

  .sm\:mr-400 {
    margin-right: 100rem !important;
  }

  .sm\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .sm\:ml-400 {
    margin-left: 100rem !important;
  }

  .sm\:mt-480 {
    margin-top: 120rem !important;
  }

  .sm\:mr-480 {
    margin-right: 120rem !important;
  }

  .sm\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .sm\:ml-480 {
    margin-left: 120rem !important;
  }

  .sm\:mt-auto {
    margin-top: auto !important;
  }

  .sm\:mr-auto {
    margin-right: auto !important;
  }

  .sm\:mb-auto {
    margin-bottom: auto !important;
  }

  .sm\:ml-auto {
    margin-left: auto !important;
  }

  .sm\:mt-px {
    margin-top: 1px !important;
  }

  .sm\:mr-px {
    margin-right: 1px !important;
  }

  .sm\:mb-px {
    margin-bottom: 1px !important;
  }

  .sm\:ml-px {
    margin-left: 1px !important;
  }

  .sm\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .sm\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .sm\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .sm\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .sm\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .sm\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .sm\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .sm\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .sm\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .sm\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .sm\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .sm\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .sm\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .sm\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .sm\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .sm\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .sm\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .sm\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .sm\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .sm\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .sm\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .sm\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .sm\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .sm\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .sm\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .sm\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .sm\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .sm\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .sm\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .sm\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .sm\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .sm\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .sm\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .sm\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .sm\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .sm\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .sm\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .sm\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .sm\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .sm\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .sm\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .sm\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .sm\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .sm\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .sm\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .sm\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .sm\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .sm\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .sm\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .sm\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .sm\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .sm\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .sm\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .sm\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .sm\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .sm\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .sm\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .sm\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .sm\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .sm\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .sm\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .sm\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .sm\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .sm\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .sm\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .sm\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .sm\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .sm\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .sm\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .sm\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .sm\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .sm\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .sm\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .sm\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .sm\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .sm\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .sm\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .sm\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .sm\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .sm\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .sm\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .sm\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .sm\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .sm\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .sm\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .sm\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .sm\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .sm\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .sm\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .sm\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .sm\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .sm\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .sm\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .sm\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .sm\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .sm\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .sm\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .sm\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .sm\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .sm\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .sm\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .sm\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .sm\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .sm\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .sm\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .sm\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .sm\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .sm\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .sm\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .sm\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .sm\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .sm\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .sm\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .sm\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .sm\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .sm\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .sm\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .sm\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .sm\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .sm\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .sm\:mt-full {
    margin-top: 100% !important;
  }

  .sm\:mr-full {
    margin-right: 100% !important;
  }

  .sm\:mb-full {
    margin-bottom: 100% !important;
  }

  .sm\:ml-full {
    margin-left: 100% !important;
  }

  .sm\:mt-2px {
    margin-top: 2px !important;
  }

  .sm\:mr-2px {
    margin-right: 2px !important;
  }

  .sm\:mb-2px {
    margin-bottom: 2px !important;
  }

  .sm\:ml-2px {
    margin-left: 2px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .sm\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .sm\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .sm\:-ml-13 {
    margin-left: -3.25rem !important;
  }

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

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

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

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

  .sm\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .sm\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .sm\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .sm\:-ml-15 {
    margin-left: -3.75rem !important;
  }

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

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

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

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

  .sm\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .sm\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .sm\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .sm\:-ml-18 {
    margin-left: -4.5rem !important;
  }

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

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

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

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

  .sm\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .sm\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .sm\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .sm\:-ml-22 {
    margin-left: -5.5rem !important;
  }

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

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

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

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

  .sm\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .sm\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .sm\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .sm\:-ml-26 {
    margin-left: -6.5rem !important;
  }

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

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

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

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

  .sm\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .sm\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .sm\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .sm\:-ml-30 {
    margin-left: -7.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .sm\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .sm\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .sm\:-ml-50 {
    margin-left: -12.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:-mt-90 {
    margin-top: -24rem !important;
  }

  .sm\:-mr-90 {
    margin-right: -24rem !important;
  }

  .sm\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .sm\:-ml-90 {
    margin-left: -24rem !important;
  }

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

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

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

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

  .sm\:-mt-100 {
    margin-top: -25rem !important;
  }

  .sm\:-mr-100 {
    margin-right: -25rem !important;
  }

  .sm\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .sm\:-ml-100 {
    margin-left: -25rem !important;
  }

  .sm\:-mt-120 {
    margin-top: -30rem !important;
  }

  .sm\:-mr-120 {
    margin-right: -30rem !important;
  }

  .sm\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .sm\:-ml-120 {
    margin-left: -30rem !important;
  }

  .sm\:-mt-128 {
    margin-top: -32rem !important;
  }

  .sm\:-mr-128 {
    margin-right: -32rem !important;
  }

  .sm\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .sm\:-ml-128 {
    margin-left: -32rem !important;
  }

  .sm\:-mt-140 {
    margin-top: -35rem !important;
  }

  .sm\:-mr-140 {
    margin-right: -35rem !important;
  }

  .sm\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .sm\:-ml-140 {
    margin-left: -35rem !important;
  }

  .sm\:-mt-160 {
    margin-top: -40rem !important;
  }

  .sm\:-mr-160 {
    margin-right: -40rem !important;
  }

  .sm\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .sm\:-ml-160 {
    margin-left: -40rem !important;
  }

  .sm\:-mt-180 {
    margin-top: -45rem !important;
  }

  .sm\:-mr-180 {
    margin-right: -45rem !important;
  }

  .sm\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .sm\:-ml-180 {
    margin-left: -45rem !important;
  }

  .sm\:-mt-192 {
    margin-top: -48rem !important;
  }

  .sm\:-mr-192 {
    margin-right: -48rem !important;
  }

  .sm\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .sm\:-ml-192 {
    margin-left: -48rem !important;
  }

  .sm\:-mt-200 {
    margin-top: -50rem !important;
  }

  .sm\:-mr-200 {
    margin-right: -50rem !important;
  }

  .sm\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .sm\:-ml-200 {
    margin-left: -50rem !important;
  }

  .sm\:-mt-240 {
    margin-top: -60rem !important;
  }

  .sm\:-mr-240 {
    margin-right: -60rem !important;
  }

  .sm\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .sm\:-ml-240 {
    margin-left: -60rem !important;
  }

  .sm\:-mt-256 {
    margin-top: -64rem !important;
  }

  .sm\:-mr-256 {
    margin-right: -64rem !important;
  }

  .sm\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .sm\:-ml-256 {
    margin-left: -64rem !important;
  }

  .sm\:-mt-280 {
    margin-top: -70rem !important;
  }

  .sm\:-mr-280 {
    margin-right: -70rem !important;
  }

  .sm\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .sm\:-ml-280 {
    margin-left: -70rem !important;
  }

  .sm\:-mt-320 {
    margin-top: -80rem !important;
  }

  .sm\:-mr-320 {
    margin-right: -80rem !important;
  }

  .sm\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .sm\:-ml-320 {
    margin-left: -80rem !important;
  }

  .sm\:-mt-360 {
    margin-top: -90rem !important;
  }

  .sm\:-mr-360 {
    margin-right: -90rem !important;
  }

  .sm\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .sm\:-ml-360 {
    margin-left: -90rem !important;
  }

  .sm\:-mt-400 {
    margin-top: -100rem !important;
  }

  .sm\:-mr-400 {
    margin-right: -100rem !important;
  }

  .sm\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .sm\:-ml-400 {
    margin-left: -100rem !important;
  }

  .sm\:-mt-480 {
    margin-top: -120rem !important;
  }

  .sm\:-mr-480 {
    margin-right: -120rem !important;
  }

  .sm\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .sm\:-ml-480 {
    margin-left: -120rem !important;
  }

  .sm\:-mt-px {
    margin-top: -1px !important;
  }

  .sm\:-mr-px {
    margin-right: -1px !important;
  }

  .sm\:-mb-px {
    margin-bottom: -1px !important;
  }

  .sm\:-ml-px {
    margin-left: -1px !important;
  }

  .sm\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .sm\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .sm\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .sm\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .sm\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .sm\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .sm\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .sm\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .sm\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .sm\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .sm\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .sm\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .sm\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .sm\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .sm\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .sm\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .sm\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .sm\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .sm\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .sm\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .sm\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .sm\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .sm\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .sm\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .sm\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .sm\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .sm\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .sm\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .sm\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .sm\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .sm\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .sm\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .sm\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .sm\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .sm\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .sm\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .sm\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .sm\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .sm\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .sm\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .sm\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .sm\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .sm\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .sm\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .sm\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .sm\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .sm\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .sm\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .sm\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .sm\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .sm\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .sm\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .sm\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .sm\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .sm\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .sm\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .sm\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .sm\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .sm\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .sm\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .sm\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .sm\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .sm\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .sm\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .sm\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .sm\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .sm\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .sm\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .sm\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .sm\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .sm\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .sm\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .sm\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .sm\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .sm\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .sm\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .sm\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .sm\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .sm\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .sm\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .sm\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .sm\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .sm\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .sm\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .sm\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .sm\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .sm\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .sm\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .sm\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .sm\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .sm\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .sm\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .sm\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .sm\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .sm\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .sm\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .sm\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .sm\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .sm\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .sm\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .sm\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .sm\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .sm\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .sm\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .sm\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .sm\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .sm\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .sm\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .sm\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .sm\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .sm\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .sm\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .sm\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .sm\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .sm\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .sm\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .sm\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .sm\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .sm\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .sm\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .sm\:-mt-full {
    margin-top: -100% !important;
  }

  .sm\:-mr-full {
    margin-right: -100% !important;
  }

  .sm\:-mb-full {
    margin-bottom: -100% !important;
  }

  .sm\:-ml-full {
    margin-left: -100% !important;
  }

  .sm\:-mt-2px {
    margin-top: -2px !important;
  }

  .sm\:-mr-2px {
    margin-right: -2px !important;
  }

  .sm\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .sm\:-ml-2px {
    margin-left: -2px !important;
  }

  .sm\:max-h-0 {
    max-height: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:max-h-13 {
    max-height: 3.25rem !important;
  }

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

  .sm\:max-h-15 {
    max-height: 3.75rem !important;
  }

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

  .sm\:max-h-18 {
    max-height: 4.5rem !important;
  }

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

  .sm\:max-h-22 {
    max-height: 5.5rem !important;
  }

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

  .sm\:max-h-26 {
    max-height: 6.5rem !important;
  }

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

  .sm\:max-h-30 {
    max-height: 7.5rem !important;
  }

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

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

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

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

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

  .sm\:max-h-50 {
    max-height: 12.5rem !important;
  }

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

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

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

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

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

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

  .sm\:max-h-90 {
    max-height: 24rem !important;
  }

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

  .sm\:max-h-100 {
    max-height: 25rem !important;
  }

  .sm\:max-h-120 {
    max-height: 30rem !important;
  }

  .sm\:max-h-128 {
    max-height: 32rem !important;
  }

  .sm\:max-h-140 {
    max-height: 35rem !important;
  }

  .sm\:max-h-160 {
    max-height: 40rem !important;
  }

  .sm\:max-h-180 {
    max-height: 45rem !important;
  }

  .sm\:max-h-192 {
    max-height: 48rem !important;
  }

  .sm\:max-h-200 {
    max-height: 50rem !important;
  }

  .sm\:max-h-240 {
    max-height: 60rem !important;
  }

  .sm\:max-h-256 {
    max-height: 64rem !important;
  }

  .sm\:max-h-280 {
    max-height: 70rem !important;
  }

  .sm\:max-h-320 {
    max-height: 80rem !important;
  }

  .sm\:max-h-360 {
    max-height: 90rem !important;
  }

  .sm\:max-h-400 {
    max-height: 100rem !important;
  }

  .sm\:max-h-480 {
    max-height: 120rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .sm\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .sm\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .sm\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .sm\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .sm\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .sm\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .sm\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .sm\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .sm\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .sm\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

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

  .sm\:max-h-2px {
    max-height: 2px !important;
  }

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

  .sm\:max-w-0 {
    max-width: 0 !important;
  }

  .sm\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .sm\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .sm\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .sm\:max-w-4 {
    max-width: 1rem !important;
  }

  .sm\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .sm\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .sm\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .sm\:max-w-8 {
    max-width: 2rem !important;
  }

  .sm\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .sm\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .sm\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .sm\:max-w-12 {
    max-width: 3rem !important;
  }

  .sm\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .sm\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .sm\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .sm\:max-w-16 {
    max-width: 4rem !important;
  }

  .sm\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .sm\:max-w-20 {
    max-width: 5rem !important;
  }

  .sm\:max-w-22 {
    max-width: 5.5rem !important;
  }

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

  .sm\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .sm\:max-w-28 {
    max-width: 7rem !important;
  }

  .sm\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .sm\:max-w-32 {
    max-width: 8rem !important;
  }

  .sm\:max-w-36 {
    max-width: 9rem !important;
  }

  .sm\:max-w-40 {
    max-width: 10rem !important;
  }

  .sm\:max-w-44 {
    max-width: 11rem !important;
  }

  .sm\:max-w-48 {
    max-width: 12rem !important;
  }

  .sm\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .sm\:max-w-52 {
    max-width: 13rem !important;
  }

  .sm\:max-w-56 {
    max-width: 14rem !important;
  }

  .sm\:max-w-60 {
    max-width: 15rem !important;
  }

  .sm\:max-w-64 {
    max-width: 16rem !important;
  }

  .sm\:max-w-72 {
    max-width: 18rem !important;
  }

  .sm\:max-w-80 {
    max-width: 20rem !important;
  }

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

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

  .sm\:max-w-100 {
    max-width: 25rem !important;
  }

  .sm\:max-w-120 {
    max-width: 30rem !important;
  }

  .sm\:max-w-128 {
    max-width: 32rem !important;
  }

  .sm\:max-w-140 {
    max-width: 35rem !important;
  }

  .sm\:max-w-160 {
    max-width: 40rem !important;
  }

  .sm\:max-w-180 {
    max-width: 45rem !important;
  }

  .sm\:max-w-192 {
    max-width: 48rem !important;
  }

  .sm\:max-w-200 {
    max-width: 50rem !important;
  }

  .sm\:max-w-240 {
    max-width: 60rem !important;
  }

  .sm\:max-w-256 {
    max-width: 64rem !important;
  }

  .sm\:max-w-280 {
    max-width: 70rem !important;
  }

  .sm\:max-w-320 {
    max-width: 80rem !important;
  }

  .sm\:max-w-360 {
    max-width: 90rem !important;
  }

  .sm\:max-w-400 {
    max-width: 100rem !important;
  }

  .sm\:max-w-480 {
    max-width: 120rem !important;
  }

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

  .sm\:max-w-xs {
    max-width: 20rem !important;
  }

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

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

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

  .sm\:max-w-xl {
    max-width: 36rem !important;
  }

  .sm\:max-w-2xl {
    max-width: 42rem !important;
  }

  .sm\:max-w-3xl {
    max-width: 48rem !important;
  }

  .sm\:max-w-4xl {
    max-width: 56rem !important;
  }

  .sm\:max-w-5xl {
    max-width: 64rem !important;
  }

  .sm\:max-w-6xl {
    max-width: 72rem !important;
  }

  .sm\:max-w-7xl {
    max-width: 80rem !important;
  }

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

  .sm\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .sm\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

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

  .sm\:max-w-px {
    max-width: 1px !important;
  }

  .sm\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .sm\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .sm\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .sm\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

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

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

  .sm\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

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

  .sm\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .sm\:max-w-3\/4 {
    max-width: 75% !important;
  }

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

  .sm\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .sm\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .sm\:max-w-4\/5 {
    max-width: 80% !important;
  }

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

  .sm\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .sm\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .sm\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .sm\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .sm\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .sm\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .sm\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .sm\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .sm\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .sm\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .sm\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .sm\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .sm\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .sm\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .sm\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .sm\:max-w-2px {
    max-width: 2px !important;
  }

  .sm\:min-h-0 {
    min-height: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:min-h-13 {
    min-height: 3.25rem !important;
  }

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

  .sm\:min-h-15 {
    min-height: 3.75rem !important;
  }

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

  .sm\:min-h-18 {
    min-height: 4.5rem !important;
  }

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

  .sm\:min-h-22 {
    min-height: 5.5rem !important;
  }

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

  .sm\:min-h-26 {
    min-height: 6.5rem !important;
  }

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

  .sm\:min-h-30 {
    min-height: 7.5rem !important;
  }

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

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

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

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

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

  .sm\:min-h-50 {
    min-height: 12.5rem !important;
  }

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

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

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

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

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

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

  .sm\:min-h-90 {
    min-height: 24rem !important;
  }

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

  .sm\:min-h-100 {
    min-height: 25rem !important;
  }

  .sm\:min-h-120 {
    min-height: 30rem !important;
  }

  .sm\:min-h-128 {
    min-height: 32rem !important;
  }

  .sm\:min-h-140 {
    min-height: 35rem !important;
  }

  .sm\:min-h-160 {
    min-height: 40rem !important;
  }

  .sm\:min-h-180 {
    min-height: 45rem !important;
  }

  .sm\:min-h-192 {
    min-height: 48rem !important;
  }

  .sm\:min-h-200 {
    min-height: 50rem !important;
  }

  .sm\:min-h-240 {
    min-height: 60rem !important;
  }

  .sm\:min-h-256 {
    min-height: 64rem !important;
  }

  .sm\:min-h-280 {
    min-height: 70rem !important;
  }

  .sm\:min-h-320 {
    min-height: 80rem !important;
  }

  .sm\:min-h-360 {
    min-height: 90rem !important;
  }

  .sm\:min-h-400 {
    min-height: 100rem !important;
  }

  .sm\:min-h-480 {
    min-height: 120rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .sm\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .sm\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .sm\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .sm\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .sm\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .sm\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .sm\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .sm\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .sm\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .sm\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .sm\:min-h-2px {
    min-height: 2px !important;
  }

  .sm\:min-w-0 {
    min-width: 0 !important;
  }

  .sm\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .sm\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .sm\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .sm\:min-w-4 {
    min-width: 1rem !important;
  }

  .sm\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .sm\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .sm\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .sm\:min-w-8 {
    min-width: 2rem !important;
  }

  .sm\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .sm\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .sm\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .sm\:min-w-12 {
    min-width: 3rem !important;
  }

  .sm\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .sm\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .sm\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .sm\:min-w-16 {
    min-width: 4rem !important;
  }

  .sm\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .sm\:min-w-20 {
    min-width: 5rem !important;
  }

  .sm\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .sm\:min-w-24 {
    min-width: 6rem !important;
  }

  .sm\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .sm\:min-w-28 {
    min-width: 7rem !important;
  }

  .sm\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .sm\:min-w-32 {
    min-width: 8rem !important;
  }

  .sm\:min-w-36 {
    min-width: 9rem !important;
  }

  .sm\:min-w-40 {
    min-width: 10rem !important;
  }

  .sm\:min-w-44 {
    min-width: 11rem !important;
  }

  .sm\:min-w-48 {
    min-width: 12rem !important;
  }

  .sm\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .sm\:min-w-52 {
    min-width: 13rem !important;
  }

  .sm\:min-w-56 {
    min-width: 14rem !important;
  }

  .sm\:min-w-60 {
    min-width: 15rem !important;
  }

  .sm\:min-w-64 {
    min-width: 16rem !important;
  }

  .sm\:min-w-72 {
    min-width: 18rem !important;
  }

  .sm\:min-w-80 {
    min-width: 20rem !important;
  }

  .sm\:min-w-90 {
    min-width: 24rem !important;
  }

  .sm\:min-w-96 {
    min-width: 24rem !important;
  }

  .sm\:min-w-100 {
    min-width: 25rem !important;
  }

  .sm\:min-w-120 {
    min-width: 30rem !important;
  }

  .sm\:min-w-128 {
    min-width: 32rem !important;
  }

  .sm\:min-w-140 {
    min-width: 35rem !important;
  }

  .sm\:min-w-160 {
    min-width: 40rem !important;
  }

  .sm\:min-w-180 {
    min-width: 45rem !important;
  }

  .sm\:min-w-192 {
    min-width: 48rem !important;
  }

  .sm\:min-w-200 {
    min-width: 50rem !important;
  }

  .sm\:min-w-240 {
    min-width: 60rem !important;
  }

  .sm\:min-w-256 {
    min-width: 64rem !important;
  }

  .sm\:min-w-280 {
    min-width: 70rem !important;
  }

  .sm\:min-w-320 {
    min-width: 80rem !important;
  }

  .sm\:min-w-360 {
    min-width: 90rem !important;
  }

  .sm\:min-w-400 {
    min-width: 100rem !important;
  }

  .sm\:min-w-480 {
    min-width: 120rem !important;
  }

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

  .sm\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .sm\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

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

  .sm\:min-w-px {
    min-width: 1px !important;
  }

  .sm\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .sm\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .sm\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .sm\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

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

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

  .sm\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

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

  .sm\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .sm\:min-w-3\/4 {
    min-width: 75% !important;
  }

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

  .sm\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .sm\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .sm\:min-w-4\/5 {
    min-width: 80% !important;
  }

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

  .sm\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .sm\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .sm\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .sm\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .sm\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .sm\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .sm\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .sm\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .sm\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .sm\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .sm\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .sm\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .sm\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .sm\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .sm\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .sm\:min-w-2px {
    min-width: 2px !important;
  }

  .sm\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .sm\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .sm\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .sm\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .sm\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .sm\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .sm\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .sm\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .sm\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .sm\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .sm\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .sm\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .sm\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .sm\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .sm\:opacity-0 {
    opacity: 0 !important;
  }

  .sm\:opacity-12 {
    opacity: 0.12 !important;
  }

  .sm\:opacity-25 {
    opacity: 0.25 !important;
  }

  .sm\:opacity-38 {
    opacity: 0.38 !important;
  }

  .sm\:opacity-50 {
    opacity: 0.5 !important;
  }

  .sm\:opacity-54 {
    opacity: 0.54 !important;
  }

  .sm\:opacity-70 {
    opacity: 0.7 !important;
  }

  .sm\:opacity-75 {
    opacity: 0.75 !important;
  }

  .sm\:opacity-84 {
    opacity: 0.84 !important;
  }

  .sm\:opacity-100 {
    opacity: 1 !important;
  }

  .sm\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .sm\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .sm\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .sm\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .sm\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .sm\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .sm\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .sm\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .sm\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .sm\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .sm\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .sm\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .sm\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .sm\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .sm\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .sm\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .sm\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .sm\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .sm\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .sm\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .sm\:overflow-auto {
    overflow: auto !important;
  }

  .sm\:overflow-hidden {
    overflow: hidden !important;
  }

  .sm\:overflow-visible {
    overflow: visible !important;
  }

  .sm\:overflow-scroll {
    overflow: scroll !important;
  }

  .sm\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .sm\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .sm\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .sm\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .sm\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .sm\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .sm\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .sm\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .sm\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .sm\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .sm\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .sm\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .sm\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .sm\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .sm\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .sm\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .sm\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .sm\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .sm\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .sm\:p-0 {
    padding: 0 !important;
  }

  .sm\:p-1 {
    padding: 0.25rem !important;
  }

  .sm\:p-2 {
    padding: 0.5rem !important;
  }

  .sm\:p-3 {
    padding: 0.75rem !important;
  }

  .sm\:p-4 {
    padding: 1rem !important;
  }

  .sm\:p-5 {
    padding: 1.25rem !important;
  }

  .sm\:p-6 {
    padding: 1.5rem !important;
  }

  .sm\:p-7 {
    padding: 1.75rem !important;
  }

  .sm\:p-8 {
    padding: 2rem !important;
  }

  .sm\:p-9 {
    padding: 2.25rem !important;
  }

  .sm\:p-10 {
    padding: 2.5rem !important;
  }

  .sm\:p-11 {
    padding: 2.75rem !important;
  }

  .sm\:p-12 {
    padding: 3rem !important;
  }

  .sm\:p-13 {
    padding: 3.25rem !important;
  }

  .sm\:p-14 {
    padding: 3.5rem !important;
  }

  .sm\:p-15 {
    padding: 3.75rem !important;
  }

  .sm\:p-16 {
    padding: 4rem !important;
  }

  .sm\:p-18 {
    padding: 4.5rem !important;
  }

  .sm\:p-20 {
    padding: 5rem !important;
  }

  .sm\:p-22 {
    padding: 5.5rem !important;
  }

  .sm\:p-24 {
    padding: 6rem !important;
  }

  .sm\:p-26 {
    padding: 6.5rem !important;
  }

  .sm\:p-28 {
    padding: 7rem !important;
  }

  .sm\:p-30 {
    padding: 7.5rem !important;
  }

  .sm\:p-32 {
    padding: 8rem !important;
  }

  .sm\:p-36 {
    padding: 9rem !important;
  }

  .sm\:p-40 {
    padding: 10rem !important;
  }

  .sm\:p-44 {
    padding: 11rem !important;
  }

  .sm\:p-48 {
    padding: 12rem !important;
  }

  .sm\:p-50 {
    padding: 12.5rem !important;
  }

  .sm\:p-52 {
    padding: 13rem !important;
  }

  .sm\:p-56 {
    padding: 14rem !important;
  }

  .sm\:p-60 {
    padding: 15rem !important;
  }

  .sm\:p-64 {
    padding: 16rem !important;
  }

  .sm\:p-72 {
    padding: 18rem !important;
  }

  .sm\:p-80 {
    padding: 20rem !important;
  }

  .sm\:p-90 {
    padding: 24rem !important;
  }

  .sm\:p-96 {
    padding: 24rem !important;
  }

  .sm\:p-100 {
    padding: 25rem !important;
  }

  .sm\:p-120 {
    padding: 30rem !important;
  }

  .sm\:p-128 {
    padding: 32rem !important;
  }

  .sm\:p-140 {
    padding: 35rem !important;
  }

  .sm\:p-160 {
    padding: 40rem !important;
  }

  .sm\:p-180 {
    padding: 45rem !important;
  }

  .sm\:p-192 {
    padding: 48rem !important;
  }

  .sm\:p-200 {
    padding: 50rem !important;
  }

  .sm\:p-240 {
    padding: 60rem !important;
  }

  .sm\:p-256 {
    padding: 64rem !important;
  }

  .sm\:p-280 {
    padding: 70rem !important;
  }

  .sm\:p-320 {
    padding: 80rem !important;
  }

  .sm\:p-360 {
    padding: 90rem !important;
  }

  .sm\:p-400 {
    padding: 100rem !important;
  }

  .sm\:p-480 {
    padding: 120rem !important;
  }

  .sm\:p-px {
    padding: 1px !important;
  }

  .sm\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .sm\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .sm\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .sm\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .sm\:p-1\/2 {
    padding: 50% !important;
  }

  .sm\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .sm\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .sm\:p-1\/4 {
    padding: 25% !important;
  }

  .sm\:p-2\/4 {
    padding: 50% !important;
  }

  .sm\:p-3\/4 {
    padding: 75% !important;
  }

  .sm\:p-1\/5 {
    padding: 20% !important;
  }

  .sm\:p-2\/5 {
    padding: 40% !important;
  }

  .sm\:p-3\/5 {
    padding: 60% !important;
  }

  .sm\:p-4\/5 {
    padding: 80% !important;
  }

  .sm\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .sm\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .sm\:p-3\/6 {
    padding: 50% !important;
  }

  .sm\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .sm\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .sm\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .sm\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .sm\:p-3\/12 {
    padding: 25% !important;
  }

  .sm\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .sm\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .sm\:p-6\/12 {
    padding: 50% !important;
  }

  .sm\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .sm\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .sm\:p-9\/12 {
    padding: 75% !important;
  }

  .sm\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .sm\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .sm\:p-full {
    padding: 100% !important;
  }

  .sm\:p-2px {
    padding: 2px !important;
  }

  .sm\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .sm\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sm\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .sm\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .sm\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .sm\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .sm\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .sm\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .sm\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .sm\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .sm\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .sm\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .sm\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .sm\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .sm\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .sm\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .sm\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .sm\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .sm\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .sm\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .sm\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .sm\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .sm\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .sm\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .sm\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .sm\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .sm\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .sm\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .sm\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .sm\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .sm\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .sm\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .sm\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .sm\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .sm\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .sm\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .sm\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .sm\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .sm\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .sm\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .sm\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .sm\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .sm\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .sm\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .sm\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .sm\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .sm\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .sm\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .sm\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .sm\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .sm\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .sm\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .sm\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .sm\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .sm\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .sm\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .sm\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .sm\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .sm\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .sm\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .sm\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .sm\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .sm\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .sm\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .sm\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .sm\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .sm\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .sm\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .sm\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .sm\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .sm\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .sm\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .sm\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .sm\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .sm\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .sm\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .sm\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .sm\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .sm\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .sm\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .sm\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .sm\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .sm\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .sm\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .sm\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .sm\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .sm\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .sm\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .sm\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .sm\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .sm\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .sm\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .sm\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .sm\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .sm\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .sm\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .sm\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .sm\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .sm\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .sm\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .sm\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .sm\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .sm\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .sm\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .sm\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .sm\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .sm\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .sm\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .sm\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .sm\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .sm\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .sm\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .sm\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .sm\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .sm\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .sm\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .sm\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .sm\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .sm\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .sm\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .sm\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .sm\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .sm\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .sm\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .sm\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .sm\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .sm\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .sm\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .sm\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .sm\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .sm\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .sm\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .sm\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .sm\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .sm\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .sm\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .sm\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .sm\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .sm\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .sm\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .sm\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .sm\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .sm\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .sm\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .sm\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .sm\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .sm\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .sm\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .sm\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .sm\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .sm\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .sm\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .sm\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .sm\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .sm\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .sm\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .sm\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .sm\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .sm\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .sm\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .sm\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .sm\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .sm\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .sm\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .sm\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .sm\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .sm\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .sm\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .sm\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .sm\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .sm\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .sm\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .sm\:pt-0 {
    padding-top: 0 !important;
  }

  .sm\:pr-0 {
    padding-right: 0 !important;
  }

  .sm\:pb-0 {
    padding-bottom: 0 !important;
  }

  .sm\:pl-0 {
    padding-left: 0 !important;
  }

  .sm\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .sm\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .sm\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .sm\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .sm\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .sm\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .sm\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .sm\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .sm\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .sm\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .sm\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .sm\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .sm\:pt-4 {
    padding-top: 1rem !important;
  }

  .sm\:pr-4 {
    padding-right: 1rem !important;
  }

  .sm\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .sm\:pl-4 {
    padding-left: 1rem !important;
  }

  .sm\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .sm\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .sm\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .sm\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .sm\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .sm\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .sm\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .sm\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .sm\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .sm\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .sm\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .sm\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .sm\:pt-8 {
    padding-top: 2rem !important;
  }

  .sm\:pr-8 {
    padding-right: 2rem !important;
  }

  .sm\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .sm\:pl-8 {
    padding-left: 2rem !important;
  }

  .sm\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .sm\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .sm\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .sm\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .sm\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .sm\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .sm\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .sm\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .sm\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .sm\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .sm\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .sm\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .sm\:pt-12 {
    padding-top: 3rem !important;
  }

  .sm\:pr-12 {
    padding-right: 3rem !important;
  }

  .sm\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .sm\:pl-12 {
    padding-left: 3rem !important;
  }

  .sm\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .sm\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .sm\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .sm\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .sm\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .sm\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .sm\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .sm\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .sm\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .sm\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .sm\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .sm\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .sm\:pt-16 {
    padding-top: 4rem !important;
  }

  .sm\:pr-16 {
    padding-right: 4rem !important;
  }

  .sm\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .sm\:pl-16 {
    padding-left: 4rem !important;
  }

  .sm\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .sm\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .sm\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .sm\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .sm\:pt-20 {
    padding-top: 5rem !important;
  }

  .sm\:pr-20 {
    padding-right: 5rem !important;
  }

  .sm\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .sm\:pl-20 {
    padding-left: 5rem !important;
  }

  .sm\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .sm\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .sm\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .sm\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .sm\:pt-24 {
    padding-top: 6rem !important;
  }

  .sm\:pr-24 {
    padding-right: 6rem !important;
  }

  .sm\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .sm\:pl-24 {
    padding-left: 6rem !important;
  }

  .sm\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .sm\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .sm\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .sm\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .sm\:pt-28 {
    padding-top: 7rem !important;
  }

  .sm\:pr-28 {
    padding-right: 7rem !important;
  }

  .sm\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .sm\:pl-28 {
    padding-left: 7rem !important;
  }

  .sm\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .sm\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .sm\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .sm\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .sm\:pt-32 {
    padding-top: 8rem !important;
  }

  .sm\:pr-32 {
    padding-right: 8rem !important;
  }

  .sm\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .sm\:pl-32 {
    padding-left: 8rem !important;
  }

  .sm\:pt-36 {
    padding-top: 9rem !important;
  }

  .sm\:pr-36 {
    padding-right: 9rem !important;
  }

  .sm\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .sm\:pl-36 {
    padding-left: 9rem !important;
  }

  .sm\:pt-40 {
    padding-top: 10rem !important;
  }

  .sm\:pr-40 {
    padding-right: 10rem !important;
  }

  .sm\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .sm\:pl-40 {
    padding-left: 10rem !important;
  }

  .sm\:pt-44 {
    padding-top: 11rem !important;
  }

  .sm\:pr-44 {
    padding-right: 11rem !important;
  }

  .sm\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .sm\:pl-44 {
    padding-left: 11rem !important;
  }

  .sm\:pt-48 {
    padding-top: 12rem !important;
  }

  .sm\:pr-48 {
    padding-right: 12rem !important;
  }

  .sm\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .sm\:pl-48 {
    padding-left: 12rem !important;
  }

  .sm\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .sm\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .sm\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .sm\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .sm\:pt-52 {
    padding-top: 13rem !important;
  }

  .sm\:pr-52 {
    padding-right: 13rem !important;
  }

  .sm\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .sm\:pl-52 {
    padding-left: 13rem !important;
  }

  .sm\:pt-56 {
    padding-top: 14rem !important;
  }

  .sm\:pr-56 {
    padding-right: 14rem !important;
  }

  .sm\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .sm\:pl-56 {
    padding-left: 14rem !important;
  }

  .sm\:pt-60 {
    padding-top: 15rem !important;
  }

  .sm\:pr-60 {
    padding-right: 15rem !important;
  }

  .sm\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .sm\:pl-60 {
    padding-left: 15rem !important;
  }

  .sm\:pt-64 {
    padding-top: 16rem !important;
  }

  .sm\:pr-64 {
    padding-right: 16rem !important;
  }

  .sm\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .sm\:pl-64 {
    padding-left: 16rem !important;
  }

  .sm\:pt-72 {
    padding-top: 18rem !important;
  }

  .sm\:pr-72 {
    padding-right: 18rem !important;
  }

  .sm\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .sm\:pl-72 {
    padding-left: 18rem !important;
  }

  .sm\:pt-80 {
    padding-top: 20rem !important;
  }

  .sm\:pr-80 {
    padding-right: 20rem !important;
  }

  .sm\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .sm\:pl-80 {
    padding-left: 20rem !important;
  }

  .sm\:pt-90 {
    padding-top: 24rem !important;
  }

  .sm\:pr-90 {
    padding-right: 24rem !important;
  }

  .sm\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .sm\:pl-90 {
    padding-left: 24rem !important;
  }

  .sm\:pt-96 {
    padding-top: 24rem !important;
  }

  .sm\:pr-96 {
    padding-right: 24rem !important;
  }

  .sm\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .sm\:pl-96 {
    padding-left: 24rem !important;
  }

  .sm\:pt-100 {
    padding-top: 25rem !important;
  }

  .sm\:pr-100 {
    padding-right: 25rem !important;
  }

  .sm\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .sm\:pl-100 {
    padding-left: 25rem !important;
  }

  .sm\:pt-120 {
    padding-top: 30rem !important;
  }

  .sm\:pr-120 {
    padding-right: 30rem !important;
  }

  .sm\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .sm\:pl-120 {
    padding-left: 30rem !important;
  }

  .sm\:pt-128 {
    padding-top: 32rem !important;
  }

  .sm\:pr-128 {
    padding-right: 32rem !important;
  }

  .sm\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .sm\:pl-128 {
    padding-left: 32rem !important;
  }

  .sm\:pt-140 {
    padding-top: 35rem !important;
  }

  .sm\:pr-140 {
    padding-right: 35rem !important;
  }

  .sm\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .sm\:pl-140 {
    padding-left: 35rem !important;
  }

  .sm\:pt-160 {
    padding-top: 40rem !important;
  }

  .sm\:pr-160 {
    padding-right: 40rem !important;
  }

  .sm\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .sm\:pl-160 {
    padding-left: 40rem !important;
  }

  .sm\:pt-180 {
    padding-top: 45rem !important;
  }

  .sm\:pr-180 {
    padding-right: 45rem !important;
  }

  .sm\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .sm\:pl-180 {
    padding-left: 45rem !important;
  }

  .sm\:pt-192 {
    padding-top: 48rem !important;
  }

  .sm\:pr-192 {
    padding-right: 48rem !important;
  }

  .sm\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .sm\:pl-192 {
    padding-left: 48rem !important;
  }

  .sm\:pt-200 {
    padding-top: 50rem !important;
  }

  .sm\:pr-200 {
    padding-right: 50rem !important;
  }

  .sm\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .sm\:pl-200 {
    padding-left: 50rem !important;
  }

  .sm\:pt-240 {
    padding-top: 60rem !important;
  }

  .sm\:pr-240 {
    padding-right: 60rem !important;
  }

  .sm\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .sm\:pl-240 {
    padding-left: 60rem !important;
  }

  .sm\:pt-256 {
    padding-top: 64rem !important;
  }

  .sm\:pr-256 {
    padding-right: 64rem !important;
  }

  .sm\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .sm\:pl-256 {
    padding-left: 64rem !important;
  }

  .sm\:pt-280 {
    padding-top: 70rem !important;
  }

  .sm\:pr-280 {
    padding-right: 70rem !important;
  }

  .sm\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .sm\:pl-280 {
    padding-left: 70rem !important;
  }

  .sm\:pt-320 {
    padding-top: 80rem !important;
  }

  .sm\:pr-320 {
    padding-right: 80rem !important;
  }

  .sm\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .sm\:pl-320 {
    padding-left: 80rem !important;
  }

  .sm\:pt-360 {
    padding-top: 90rem !important;
  }

  .sm\:pr-360 {
    padding-right: 90rem !important;
  }

  .sm\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .sm\:pl-360 {
    padding-left: 90rem !important;
  }

  .sm\:pt-400 {
    padding-top: 100rem !important;
  }

  .sm\:pr-400 {
    padding-right: 100rem !important;
  }

  .sm\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .sm\:pl-400 {
    padding-left: 100rem !important;
  }

  .sm\:pt-480 {
    padding-top: 120rem !important;
  }

  .sm\:pr-480 {
    padding-right: 120rem !important;
  }

  .sm\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .sm\:pl-480 {
    padding-left: 120rem !important;
  }

  .sm\:pt-px {
    padding-top: 1px !important;
  }

  .sm\:pr-px {
    padding-right: 1px !important;
  }

  .sm\:pb-px {
    padding-bottom: 1px !important;
  }

  .sm\:pl-px {
    padding-left: 1px !important;
  }

  .sm\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .sm\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .sm\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .sm\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .sm\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .sm\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .sm\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .sm\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .sm\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .sm\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .sm\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .sm\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .sm\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .sm\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .sm\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .sm\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .sm\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .sm\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .sm\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .sm\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .sm\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .sm\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .sm\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .sm\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .sm\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .sm\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .sm\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .sm\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .sm\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .sm\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .sm\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .sm\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .sm\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .sm\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .sm\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .sm\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .sm\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .sm\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .sm\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .sm\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .sm\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .sm\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .sm\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .sm\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .sm\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .sm\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .sm\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .sm\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .sm\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .sm\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .sm\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .sm\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .sm\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .sm\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .sm\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .sm\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .sm\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .sm\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .sm\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .sm\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .sm\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .sm\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .sm\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .sm\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .sm\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .sm\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .sm\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .sm\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .sm\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .sm\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .sm\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .sm\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .sm\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .sm\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .sm\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .sm\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .sm\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .sm\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .sm\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .sm\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .sm\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .sm\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .sm\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .sm\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .sm\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .sm\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .sm\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .sm\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .sm\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .sm\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .sm\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .sm\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .sm\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .sm\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .sm\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .sm\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .sm\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .sm\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .sm\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .sm\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .sm\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .sm\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .sm\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .sm\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .sm\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .sm\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .sm\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .sm\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .sm\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .sm\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .sm\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .sm\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .sm\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .sm\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .sm\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .sm\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .sm\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .sm\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .sm\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .sm\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .sm\:pt-full {
    padding-top: 100% !important;
  }

  .sm\:pr-full {
    padding-right: 100% !important;
  }

  .sm\:pb-full {
    padding-bottom: 100% !important;
  }

  .sm\:pl-full {
    padding-left: 100% !important;
  }

  .sm\:pt-2px {
    padding-top: 2px !important;
  }

  .sm\:pr-2px {
    padding-right: 2px !important;
  }

  .sm\:pb-2px {
    padding-bottom: 2px !important;
  }

  .sm\:pl-2px {
    padding-left: 2px !important;
  }

  .sm\:static {
    position: static !important;
  }

  .sm\:fixed {
    position: fixed !important;
  }

  .sm\:absolute {
    position: absolute !important;
  }

  .sm\:relative {
    position: relative !important;
  }

  .sm\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .sm\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .sm\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .sm\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .sm\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .sm\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .sm\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .sm\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .sm\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .sm\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .sm\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .sm\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .sm\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .sm\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .sm\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .sm\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .sm\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .sm\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .sm\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .sm\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .sm\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .sm\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .sm\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .sm\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .sm\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .sm\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .sm\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .sm\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .sm\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .sm\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .sm\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .sm\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .sm\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .sm\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .sm\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .sm\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .sm\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .sm\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .sm\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .sm\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .sm\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .sm\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .sm\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .sm\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .sm\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .sm\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .sm\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .sm\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .sm\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .sm\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .sm\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .sm\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .sm\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .sm\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .sm\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .sm\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .sm\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .sm\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .sm\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .sm\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .sm\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .sm\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .sm\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .sm\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .sm\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .sm\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .sm\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .sm\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .sm\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .sm\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .sm\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .sm\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .sm\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .sm\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .sm\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .sm\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .sm\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .sm\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .sm\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .sm\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .sm\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .sm\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .sm\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .sm\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .sm\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .sm\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .sm\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .sm\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .sm\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .sm\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .sm\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .sm\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .sm\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .sm\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .sm\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .sm\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .sm\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .sm\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .sm\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .sm\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .sm\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .sm\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .sm\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .sm\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .sm\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .sm\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .sm\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .sm\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .sm\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .sm\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .sm\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .sm\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .sm\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .sm\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .sm\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .sm\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .sm\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .sm\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .sm\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .sm\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .sm\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .sm\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .sm\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .sm\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .sm\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .sm\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .sm\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .sm\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .sm\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .sm\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .sm\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .sm\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .sm\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .sm\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .sm\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .sm\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .sm\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .sm\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .sm\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .sm\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .sm\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .sm\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .sm\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .sm\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .sm\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .sm\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .sm\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .sm\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .sm\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .sm\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .sm\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .sm\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .sm\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .sm\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .sm\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .sm\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .sm\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .sm\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .sm\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .sm\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .sm\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .sm\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .sm\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .sm\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .sm\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .sm\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .sm\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .sm\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .sm\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .sm\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .sm\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .sm\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .sm\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .sm\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .sm\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .sm\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .sm\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .sm\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .sm\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .sm\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .sm\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .sm\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .sm\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .sm\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .sm\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .sm\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .sm\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .sm\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .sm\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .sm\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .sm\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .sm\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .sm\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .sm\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .sm\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .sm\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .sm\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .sm\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .sm\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .sm\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .sm\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .sm\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .sm\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .sm\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .sm\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .sm\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .sm\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .sm\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .sm\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .sm\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .sm\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .sm\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .sm\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .sm\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .sm\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .sm\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .sm\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .sm\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .sm\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .sm\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .sm\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .sm\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .sm\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .sm\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .sm\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .sm\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .sm\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .sm\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .sm\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .sm\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .sm\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .sm\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .sm\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .sm\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .sm\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .sm\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .sm\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .sm\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .sm\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .sm\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .sm\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .sm\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .sm\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .sm\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .sm\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .sm\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .sm\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .sm\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .sm\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .sm\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .sm\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .sm\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .sm\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .sm\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .sm\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .sm\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .sm\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .sm\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .sm\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .sm\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .sm\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .sm\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .sm\:top-0 {
    top: 0 !important;
  }

  .sm\:right-0 {
    right: 0 !important;
  }

  .sm\:bottom-0 {
    bottom: 0 !important;
  }

  .sm\:left-0 {
    left: 0 !important;
  }

  .sm\:top-1 {
    top: 0.25rem !important;
  }

  .sm\:right-1 {
    right: 0.25rem !important;
  }

  .sm\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .sm\:left-1 {
    left: 0.25rem !important;
  }

  .sm\:top-2 {
    top: 0.5rem !important;
  }

  .sm\:right-2 {
    right: 0.5rem !important;
  }

  .sm\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .sm\:left-2 {
    left: 0.5rem !important;
  }

  .sm\:top-3 {
    top: 0.75rem !important;
  }

  .sm\:right-3 {
    right: 0.75rem !important;
  }

  .sm\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .sm\:left-3 {
    left: 0.75rem !important;
  }

  .sm\:top-4 {
    top: 1rem !important;
  }

  .sm\:right-4 {
    right: 1rem !important;
  }

  .sm\:bottom-4 {
    bottom: 1rem !important;
  }

  .sm\:left-4 {
    left: 1rem !important;
  }

  .sm\:top-5 {
    top: 1.25rem !important;
  }

  .sm\:right-5 {
    right: 1.25rem !important;
  }

  .sm\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .sm\:left-5 {
    left: 1.25rem !important;
  }

  .sm\:top-6 {
    top: 1.5rem !important;
  }

  .sm\:right-6 {
    right: 1.5rem !important;
  }

  .sm\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .sm\:left-6 {
    left: 1.5rem !important;
  }

  .sm\:top-7 {
    top: 1.75rem !important;
  }

  .sm\:right-7 {
    right: 1.75rem !important;
  }

  .sm\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .sm\:left-7 {
    left: 1.75rem !important;
  }

  .sm\:top-8 {
    top: 2rem !important;
  }

  .sm\:right-8 {
    right: 2rem !important;
  }

  .sm\:bottom-8 {
    bottom: 2rem !important;
  }

  .sm\:left-8 {
    left: 2rem !important;
  }

  .sm\:top-9 {
    top: 2.25rem !important;
  }

  .sm\:right-9 {
    right: 2.25rem !important;
  }

  .sm\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .sm\:left-9 {
    left: 2.25rem !important;
  }

  .sm\:top-10 {
    top: 2.5rem !important;
  }

  .sm\:right-10 {
    right: 2.5rem !important;
  }

  .sm\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .sm\:left-10 {
    left: 2.5rem !important;
  }

  .sm\:top-11 {
    top: 2.75rem !important;
  }

  .sm\:right-11 {
    right: 2.75rem !important;
  }

  .sm\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .sm\:left-11 {
    left: 2.75rem !important;
  }

  .sm\:top-12 {
    top: 3rem !important;
  }

  .sm\:right-12 {
    right: 3rem !important;
  }

  .sm\:bottom-12 {
    bottom: 3rem !important;
  }

  .sm\:left-12 {
    left: 3rem !important;
  }

  .sm\:top-13 {
    top: 3.25rem !important;
  }

  .sm\:right-13 {
    right: 3.25rem !important;
  }

  .sm\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .sm\:left-13 {
    left: 3.25rem !important;
  }

  .sm\:top-14 {
    top: 3.5rem !important;
  }

  .sm\:right-14 {
    right: 3.5rem !important;
  }

  .sm\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .sm\:left-14 {
    left: 3.5rem !important;
  }

  .sm\:top-15 {
    top: 3.75rem !important;
  }

  .sm\:right-15 {
    right: 3.75rem !important;
  }

  .sm\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .sm\:left-15 {
    left: 3.75rem !important;
  }

  .sm\:top-16 {
    top: 4rem !important;
  }

  .sm\:right-16 {
    right: 4rem !important;
  }

  .sm\:bottom-16 {
    bottom: 4rem !important;
  }

  .sm\:left-16 {
    left: 4rem !important;
  }

  .sm\:top-18 {
    top: 4.5rem !important;
  }

  .sm\:right-18 {
    right: 4.5rem !important;
  }

  .sm\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .sm\:left-18 {
    left: 4.5rem !important;
  }

  .sm\:top-20 {
    top: 5rem !important;
  }

  .sm\:right-20 {
    right: 5rem !important;
  }

  .sm\:bottom-20 {
    bottom: 5rem !important;
  }

  .sm\:left-20 {
    left: 5rem !important;
  }

  .sm\:top-22 {
    top: 5.5rem !important;
  }

  .sm\:right-22 {
    right: 5.5rem !important;
  }

  .sm\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .sm\:left-22 {
    left: 5.5rem !important;
  }

  .sm\:top-24 {
    top: 6rem !important;
  }

  .sm\:right-24 {
    right: 6rem !important;
  }

  .sm\:bottom-24 {
    bottom: 6rem !important;
  }

  .sm\:left-24 {
    left: 6rem !important;
  }

  .sm\:top-26 {
    top: 6.5rem !important;
  }

  .sm\:right-26 {
    right: 6.5rem !important;
  }

  .sm\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .sm\:left-26 {
    left: 6.5rem !important;
  }

  .sm\:top-28 {
    top: 7rem !important;
  }

  .sm\:right-28 {
    right: 7rem !important;
  }

  .sm\:bottom-28 {
    bottom: 7rem !important;
  }

  .sm\:left-28 {
    left: 7rem !important;
  }

  .sm\:top-30 {
    top: 7.5rem !important;
  }

  .sm\:right-30 {
    right: 7.5rem !important;
  }

  .sm\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .sm\:left-30 {
    left: 7.5rem !important;
  }

  .sm\:top-32 {
    top: 8rem !important;
  }

  .sm\:right-32 {
    right: 8rem !important;
  }

  .sm\:bottom-32 {
    bottom: 8rem !important;
  }

  .sm\:left-32 {
    left: 8rem !important;
  }

  .sm\:top-36 {
    top: 9rem !important;
  }

  .sm\:right-36 {
    right: 9rem !important;
  }

  .sm\:bottom-36 {
    bottom: 9rem !important;
  }

  .sm\:left-36 {
    left: 9rem !important;
  }

  .sm\:top-40 {
    top: 10rem !important;
  }

  .sm\:right-40 {
    right: 10rem !important;
  }

  .sm\:bottom-40 {
    bottom: 10rem !important;
  }

  .sm\:left-40 {
    left: 10rem !important;
  }

  .sm\:top-44 {
    top: 11rem !important;
  }

  .sm\:right-44 {
    right: 11rem !important;
  }

  .sm\:bottom-44 {
    bottom: 11rem !important;
  }

  .sm\:left-44 {
    left: 11rem !important;
  }

  .sm\:top-48 {
    top: 12rem !important;
  }

  .sm\:right-48 {
    right: 12rem !important;
  }

  .sm\:bottom-48 {
    bottom: 12rem !important;
  }

  .sm\:left-48 {
    left: 12rem !important;
  }

  .sm\:top-50 {
    top: 12.5rem !important;
  }

  .sm\:right-50 {
    right: 12.5rem !important;
  }

  .sm\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .sm\:left-50 {
    left: 12.5rem !important;
  }

  .sm\:top-52 {
    top: 13rem !important;
  }

  .sm\:right-52 {
    right: 13rem !important;
  }

  .sm\:bottom-52 {
    bottom: 13rem !important;
  }

  .sm\:left-52 {
    left: 13rem !important;
  }

  .sm\:top-56 {
    top: 14rem !important;
  }

  .sm\:right-56 {
    right: 14rem !important;
  }

  .sm\:bottom-56 {
    bottom: 14rem !important;
  }

  .sm\:left-56 {
    left: 14rem !important;
  }

  .sm\:top-60 {
    top: 15rem !important;
  }

  .sm\:right-60 {
    right: 15rem !important;
  }

  .sm\:bottom-60 {
    bottom: 15rem !important;
  }

  .sm\:left-60 {
    left: 15rem !important;
  }

  .sm\:top-64 {
    top: 16rem !important;
  }

  .sm\:right-64 {
    right: 16rem !important;
  }

  .sm\:bottom-64 {
    bottom: 16rem !important;
  }

  .sm\:left-64 {
    left: 16rem !important;
  }

  .sm\:top-72 {
    top: 18rem !important;
  }

  .sm\:right-72 {
    right: 18rem !important;
  }

  .sm\:bottom-72 {
    bottom: 18rem !important;
  }

  .sm\:left-72 {
    left: 18rem !important;
  }

  .sm\:top-80 {
    top: 20rem !important;
  }

  .sm\:right-80 {
    right: 20rem !important;
  }

  .sm\:bottom-80 {
    bottom: 20rem !important;
  }

  .sm\:left-80 {
    left: 20rem !important;
  }

  .sm\:top-90 {
    top: 24rem !important;
  }

  .sm\:right-90 {
    right: 24rem !important;
  }

  .sm\:bottom-90 {
    bottom: 24rem !important;
  }

  .sm\:left-90 {
    left: 24rem !important;
  }

  .sm\:top-96 {
    top: 24rem !important;
  }

  .sm\:right-96 {
    right: 24rem !important;
  }

  .sm\:bottom-96 {
    bottom: 24rem !important;
  }

  .sm\:left-96 {
    left: 24rem !important;
  }

  .sm\:top-100 {
    top: 25rem !important;
  }

  .sm\:right-100 {
    right: 25rem !important;
  }

  .sm\:bottom-100 {
    bottom: 25rem !important;
  }

  .sm\:left-100 {
    left: 25rem !important;
  }

  .sm\:top-120 {
    top: 30rem !important;
  }

  .sm\:right-120 {
    right: 30rem !important;
  }

  .sm\:bottom-120 {
    bottom: 30rem !important;
  }

  .sm\:left-120 {
    left: 30rem !important;
  }

  .sm\:top-128 {
    top: 32rem !important;
  }

  .sm\:right-128 {
    right: 32rem !important;
  }

  .sm\:bottom-128 {
    bottom: 32rem !important;
  }

  .sm\:left-128 {
    left: 32rem !important;
  }

  .sm\:top-140 {
    top: 35rem !important;
  }

  .sm\:right-140 {
    right: 35rem !important;
  }

  .sm\:bottom-140 {
    bottom: 35rem !important;
  }

  .sm\:left-140 {
    left: 35rem !important;
  }

  .sm\:top-160 {
    top: 40rem !important;
  }

  .sm\:right-160 {
    right: 40rem !important;
  }

  .sm\:bottom-160 {
    bottom: 40rem !important;
  }

  .sm\:left-160 {
    left: 40rem !important;
  }

  .sm\:top-180 {
    top: 45rem !important;
  }

  .sm\:right-180 {
    right: 45rem !important;
  }

  .sm\:bottom-180 {
    bottom: 45rem !important;
  }

  .sm\:left-180 {
    left: 45rem !important;
  }

  .sm\:top-192 {
    top: 48rem !important;
  }

  .sm\:right-192 {
    right: 48rem !important;
  }

  .sm\:bottom-192 {
    bottom: 48rem !important;
  }

  .sm\:left-192 {
    left: 48rem !important;
  }

  .sm\:top-200 {
    top: 50rem !important;
  }

  .sm\:right-200 {
    right: 50rem !important;
  }

  .sm\:bottom-200 {
    bottom: 50rem !important;
  }

  .sm\:left-200 {
    left: 50rem !important;
  }

  .sm\:top-240 {
    top: 60rem !important;
  }

  .sm\:right-240 {
    right: 60rem !important;
  }

  .sm\:bottom-240 {
    bottom: 60rem !important;
  }

  .sm\:left-240 {
    left: 60rem !important;
  }

  .sm\:top-256 {
    top: 64rem !important;
  }

  .sm\:right-256 {
    right: 64rem !important;
  }

  .sm\:bottom-256 {
    bottom: 64rem !important;
  }

  .sm\:left-256 {
    left: 64rem !important;
  }

  .sm\:top-280 {
    top: 70rem !important;
  }

  .sm\:right-280 {
    right: 70rem !important;
  }

  .sm\:bottom-280 {
    bottom: 70rem !important;
  }

  .sm\:left-280 {
    left: 70rem !important;
  }

  .sm\:top-320 {
    top: 80rem !important;
  }

  .sm\:right-320 {
    right: 80rem !important;
  }

  .sm\:bottom-320 {
    bottom: 80rem !important;
  }

  .sm\:left-320 {
    left: 80rem !important;
  }

  .sm\:top-360 {
    top: 90rem !important;
  }

  .sm\:right-360 {
    right: 90rem !important;
  }

  .sm\:bottom-360 {
    bottom: 90rem !important;
  }

  .sm\:left-360 {
    left: 90rem !important;
  }

  .sm\:top-400 {
    top: 100rem !important;
  }

  .sm\:right-400 {
    right: 100rem !important;
  }

  .sm\:bottom-400 {
    bottom: 100rem !important;
  }

  .sm\:left-400 {
    left: 100rem !important;
  }

  .sm\:top-480 {
    top: 120rem !important;
  }

  .sm\:right-480 {
    right: 120rem !important;
  }

  .sm\:bottom-480 {
    bottom: 120rem !important;
  }

  .sm\:left-480 {
    left: 120rem !important;
  }

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

  .sm\:right-auto {
    right: auto !important;
  }

  .sm\:bottom-auto {
    bottom: auto !important;
  }

  .sm\:left-auto {
    left: auto !important;
  }

  .sm\:top-px {
    top: 1px !important;
  }

  .sm\:right-px {
    right: 1px !important;
  }

  .sm\:bottom-px {
    bottom: 1px !important;
  }

  .sm\:left-px {
    left: 1px !important;
  }

  .sm\:top-0\.5 {
    top: 0.125rem !important;
  }

  .sm\:right-0\.5 {
    right: 0.125rem !important;
  }

  .sm\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .sm\:left-0\.5 {
    left: 0.125rem !important;
  }

  .sm\:top-1\.5 {
    top: 0.375rem !important;
  }

  .sm\:right-1\.5 {
    right: 0.375rem !important;
  }

  .sm\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .sm\:left-1\.5 {
    left: 0.375rem !important;
  }

  .sm\:top-2\.5 {
    top: 0.625rem !important;
  }

  .sm\:right-2\.5 {
    right: 0.625rem !important;
  }

  .sm\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .sm\:left-2\.5 {
    left: 0.625rem !important;
  }

  .sm\:top-3\.5 {
    top: 0.875rem !important;
  }

  .sm\:right-3\.5 {
    right: 0.875rem !important;
  }

  .sm\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .sm\:left-3\.5 {
    left: 0.875rem !important;
  }

  .sm\:top-1\/2 {
    top: 50% !important;
  }

  .sm\:right-1\/2 {
    right: 50% !important;
  }

  .sm\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .sm\:left-1\/2 {
    left: 50% !important;
  }

  .sm\:top-1\/3 {
    top: 33.333333% !important;
  }

  .sm\:right-1\/3 {
    right: 33.333333% !important;
  }

  .sm\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .sm\:left-1\/3 {
    left: 33.333333% !important;
  }

  .sm\:top-2\/3 {
    top: 66.666667% !important;
  }

  .sm\:right-2\/3 {
    right: 66.666667% !important;
  }

  .sm\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .sm\:left-2\/3 {
    left: 66.666667% !important;
  }

  .sm\:top-1\/4 {
    top: 25% !important;
  }

  .sm\:right-1\/4 {
    right: 25% !important;
  }

  .sm\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .sm\:left-1\/4 {
    left: 25% !important;
  }

  .sm\:top-2\/4 {
    top: 50% !important;
  }

  .sm\:right-2\/4 {
    right: 50% !important;
  }

  .sm\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .sm\:left-2\/4 {
    left: 50% !important;
  }

  .sm\:top-3\/4 {
    top: 75% !important;
  }

  .sm\:right-3\/4 {
    right: 75% !important;
  }

  .sm\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .sm\:left-3\/4 {
    left: 75% !important;
  }

  .sm\:top-1\/5 {
    top: 20% !important;
  }

  .sm\:right-1\/5 {
    right: 20% !important;
  }

  .sm\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .sm\:left-1\/5 {
    left: 20% !important;
  }

  .sm\:top-2\/5 {
    top: 40% !important;
  }

  .sm\:right-2\/5 {
    right: 40% !important;
  }

  .sm\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .sm\:left-2\/5 {
    left: 40% !important;
  }

  .sm\:top-3\/5 {
    top: 60% !important;
  }

  .sm\:right-3\/5 {
    right: 60% !important;
  }

  .sm\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .sm\:left-3\/5 {
    left: 60% !important;
  }

  .sm\:top-4\/5 {
    top: 80% !important;
  }

  .sm\:right-4\/5 {
    right: 80% !important;
  }

  .sm\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .sm\:left-4\/5 {
    left: 80% !important;
  }

  .sm\:top-1\/6 {
    top: 16.666667% !important;
  }

  .sm\:right-1\/6 {
    right: 16.666667% !important;
  }

  .sm\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .sm\:left-1\/6 {
    left: 16.666667% !important;
  }

  .sm\:top-2\/6 {
    top: 33.333333% !important;
  }

  .sm\:right-2\/6 {
    right: 33.333333% !important;
  }

  .sm\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .sm\:left-2\/6 {
    left: 33.333333% !important;
  }

  .sm\:top-3\/6 {
    top: 50% !important;
  }

  .sm\:right-3\/6 {
    right: 50% !important;
  }

  .sm\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .sm\:left-3\/6 {
    left: 50% !important;
  }

  .sm\:top-4\/6 {
    top: 66.666667% !important;
  }

  .sm\:right-4\/6 {
    right: 66.666667% !important;
  }

  .sm\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .sm\:left-4\/6 {
    left: 66.666667% !important;
  }

  .sm\:top-5\/6 {
    top: 83.333333% !important;
  }

  .sm\:right-5\/6 {
    right: 83.333333% !important;
  }

  .sm\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .sm\:left-5\/6 {
    left: 83.333333% !important;
  }

  .sm\:top-1\/12 {
    top: 8.333333% !important;
  }

  .sm\:right-1\/12 {
    right: 8.333333% !important;
  }

  .sm\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .sm\:left-1\/12 {
    left: 8.333333% !important;
  }

  .sm\:top-2\/12 {
    top: 16.666667% !important;
  }

  .sm\:right-2\/12 {
    right: 16.666667% !important;
  }

  .sm\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .sm\:left-2\/12 {
    left: 16.666667% !important;
  }

  .sm\:top-3\/12 {
    top: 25% !important;
  }

  .sm\:right-3\/12 {
    right: 25% !important;
  }

  .sm\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .sm\:left-3\/12 {
    left: 25% !important;
  }

  .sm\:top-4\/12 {
    top: 33.333333% !important;
  }

  .sm\:right-4\/12 {
    right: 33.333333% !important;
  }

  .sm\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .sm\:left-4\/12 {
    left: 33.333333% !important;
  }

  .sm\:top-5\/12 {
    top: 41.666667% !important;
  }

  .sm\:right-5\/12 {
    right: 41.666667% !important;
  }

  .sm\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .sm\:left-5\/12 {
    left: 41.666667% !important;
  }

  .sm\:top-6\/12 {
    top: 50% !important;
  }

  .sm\:right-6\/12 {
    right: 50% !important;
  }

  .sm\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .sm\:left-6\/12 {
    left: 50% !important;
  }

  .sm\:top-7\/12 {
    top: 58.333333% !important;
  }

  .sm\:right-7\/12 {
    right: 58.333333% !important;
  }

  .sm\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .sm\:left-7\/12 {
    left: 58.333333% !important;
  }

  .sm\:top-8\/12 {
    top: 66.666667% !important;
  }

  .sm\:right-8\/12 {
    right: 66.666667% !important;
  }

  .sm\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .sm\:left-8\/12 {
    left: 66.666667% !important;
  }

  .sm\:top-9\/12 {
    top: 75% !important;
  }

  .sm\:right-9\/12 {
    right: 75% !important;
  }

  .sm\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .sm\:left-9\/12 {
    left: 75% !important;
  }

  .sm\:top-10\/12 {
    top: 83.333333% !important;
  }

  .sm\:right-10\/12 {
    right: 83.333333% !important;
  }

  .sm\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .sm\:left-10\/12 {
    left: 83.333333% !important;
  }

  .sm\:top-11\/12 {
    top: 91.666667% !important;
  }

  .sm\:right-11\/12 {
    right: 91.666667% !important;
  }

  .sm\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .sm\:left-11\/12 {
    left: 91.666667% !important;
  }

  .sm\:top-full {
    top: 100% !important;
  }

  .sm\:right-full {
    right: 100% !important;
  }

  .sm\:bottom-full {
    bottom: 100% !important;
  }

  .sm\:left-full {
    left: 100% !important;
  }

  .sm\:top-2px {
    top: 2px !important;
  }

  .sm\:right-2px {
    right: 2px !important;
  }

  .sm\:bottom-2px {
    bottom: 2px !important;
  }

  .sm\:left-2px {
    left: 2px !important;
  }

  .sm\:text-left {
    text-align: left !important;
  }

  .sm\:text-center {
    text-align: center !important;
  }

  .sm\:text-right {
    text-align: right !important;
  }

  .sm\:text-justify {
    text-align: justify !important;
  }

  .sm\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .sm\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .sm\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .sm\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .sm\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .sm\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .sm\:visible {
    visibility: visible !important;
  }

  .sm\:invisible {
    visibility: hidden !important;
  }

  .sm\:whitespace-normal {
    white-space: normal !important;
  }

  .sm\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .sm\:whitespace-pre {
    white-space: pre !important;
  }

  .sm\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .sm\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .sm\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .sm\:break-words {
    overflow-wrap: break-word !important;
  }

  .sm\:break-all {
    word-break: break-all !important;
  }

  .sm\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .sm\:w-0 {
    width: 0 !important;
  }

  .sm\:w-1 {
    width: 0.25rem !important;
  }

  .sm\:w-2 {
    width: 0.5rem !important;
  }

  .sm\:w-3 {
    width: 0.75rem !important;
  }

  .sm\:w-4 {
    width: 1rem !important;
  }

  .sm\:w-5 {
    width: 1.25rem !important;
  }

  .sm\:w-6 {
    width: 1.5rem !important;
  }

  .sm\:w-7 {
    width: 1.75rem !important;
  }

  .sm\:w-8 {
    width: 2rem !important;
  }

  .sm\:w-9 {
    width: 2.25rem !important;
  }

  .sm\:w-10 {
    width: 2.5rem !important;
  }

  .sm\:w-11 {
    width: 2.75rem !important;
  }

  .sm\:w-12 {
    width: 3rem !important;
  }

  .sm\:w-13 {
    width: 3.25rem !important;
  }

  .sm\:w-14 {
    width: 3.5rem !important;
  }

  .sm\:w-15 {
    width: 3.75rem !important;
  }

  .sm\:w-16 {
    width: 4rem !important;
  }

  .sm\:w-18 {
    width: 4.5rem !important;
  }

  .sm\:w-20 {
    width: 5rem !important;
  }

  .sm\:w-22 {
    width: 5.5rem !important;
  }

  .sm\:w-24 {
    width: 6rem !important;
  }

  .sm\:w-26 {
    width: 6.5rem !important;
  }

  .sm\:w-28 {
    width: 7rem !important;
  }

  .sm\:w-30 {
    width: 7.5rem !important;
  }

  .sm\:w-32 {
    width: 8rem !important;
  }

  .sm\:w-36 {
    width: 9rem !important;
  }

  .sm\:w-40 {
    width: 10rem !important;
  }

  .sm\:w-44 {
    width: 11rem !important;
  }

  .sm\:w-48 {
    width: 12rem !important;
  }

  .sm\:w-50 {
    width: 12.5rem !important;
  }

  .sm\:w-52 {
    width: 13rem !important;
  }

  .sm\:w-56 {
    width: 14rem !important;
  }

  .sm\:w-60 {
    width: 15rem !important;
  }

  .sm\:w-64 {
    width: 16rem !important;
  }

  .sm\:w-72 {
    width: 18rem !important;
  }

  .sm\:w-80 {
    width: 20rem !important;
  }

  .sm\:w-90 {
    width: 24rem !important;
  }

  .sm\:w-96 {
    width: 24rem !important;
  }

  .sm\:w-100 {
    width: 25rem !important;
  }

  .sm\:w-120 {
    width: 30rem !important;
  }

  .sm\:w-128 {
    width: 32rem !important;
  }

  .sm\:w-140 {
    width: 35rem !important;
  }

  .sm\:w-160 {
    width: 40rem !important;
  }

  .sm\:w-180 {
    width: 45rem !important;
  }

  .sm\:w-192 {
    width: 48rem !important;
  }

  .sm\:w-200 {
    width: 50rem !important;
  }

  .sm\:w-240 {
    width: 60rem !important;
  }

  .sm\:w-256 {
    width: 64rem !important;
  }

  .sm\:w-280 {
    width: 70rem !important;
  }

  .sm\:w-320 {
    width: 80rem !important;
  }

  .sm\:w-360 {
    width: 90rem !important;
  }

  .sm\:w-400 {
    width: 100rem !important;
  }

  .sm\:w-480 {
    width: 120rem !important;
  }

  .sm\:w-auto {
    width: auto !important;
  }

  .sm\:w-px {
    width: 1px !important;
  }

  .sm\:w-0\.5 {
    width: 0.125rem !important;
  }

  .sm\:w-1\.5 {
    width: 0.375rem !important;
  }

  .sm\:w-2\.5 {
    width: 0.625rem !important;
  }

  .sm\:w-3\.5 {
    width: 0.875rem !important;
  }

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

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

  .sm\:w-2\/3 {
    width: 66.666667% !important;
  }

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

  .sm\:w-2\/4 {
    width: 50% !important;
  }

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

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

  .sm\:w-2\/5 {
    width: 40% !important;
  }

  .sm\:w-3\/5 {
    width: 60% !important;
  }

  .sm\:w-4\/5 {
    width: 80% !important;
  }

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

  .sm\:w-2\/6 {
    width: 33.333333% !important;
  }

  .sm\:w-3\/6 {
    width: 50% !important;
  }

  .sm\:w-4\/6 {
    width: 66.666667% !important;
  }

  .sm\:w-5\/6 {
    width: 83.333333% !important;
  }

  .sm\:w-1\/12 {
    width: 8.333333% !important;
  }

  .sm\:w-2\/12 {
    width: 16.666667% !important;
  }

  .sm\:w-3\/12 {
    width: 25% !important;
  }

  .sm\:w-4\/12 {
    width: 33.333333% !important;
  }

  .sm\:w-5\/12 {
    width: 41.666667% !important;
  }

  .sm\:w-6\/12 {
    width: 50% !important;
  }

  .sm\:w-7\/12 {
    width: 58.333333% !important;
  }

  .sm\:w-8\/12 {
    width: 66.666667% !important;
  }

  .sm\:w-9\/12 {
    width: 75% !important;
  }

  .sm\:w-10\/12 {
    width: 83.333333% !important;
  }

  .sm\:w-11\/12 {
    width: 91.666667% !important;
  }

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

  .sm\:w-2px {
    width: 2px !important;
  }

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

  .sm\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .sm\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .sm\:z-0 {
    z-index: 0 !important;
  }

  .sm\:z-10 {
    z-index: 10 !important;
  }

  .sm\:z-20 {
    z-index: 20 !important;
  }

  .sm\:z-30 {
    z-index: 30 !important;
  }

  .sm\:z-40 {
    z-index: 40 !important;
  }

  .sm\:z-50 {
    z-index: 50 !important;
  }

  .sm\:z-60 {
    z-index: 60 !important;
  }

  .sm\:z-70 {
    z-index: 70 !important;
  }

  .sm\:z-80 {
    z-index: 80 !important;
  }

  .sm\:z-90 {
    z-index: 90 !important;
  }

  .sm\:z-99 {
    z-index: 99 !important;
  }

  .sm\:z-999 {
    z-index: 999 !important;
  }

  .sm\:z-9999 {
    z-index: 9999 !important;
  }

  .sm\:z-99999 {
    z-index: 99999 !important;
  }

  .sm\:z-auto {
    z-index: auto !important;
  }

  .sm\:-z-1 {
    z-index: -1 !important;
  }

  .sm\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .sm\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .sm\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .sm\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .sm\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .sm\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .sm\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .sm\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .sm\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .sm\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .sm\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .sm\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .sm\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .sm\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .sm\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .sm\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .sm\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .sm\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .sm\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .sm\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .sm\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .sm\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .sm\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .sm\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .sm\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .sm\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .sm\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .sm\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .sm\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .sm\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .sm\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .sm\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .sm\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .sm\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .sm\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .sm\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .sm\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .sm\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .sm\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .sm\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .sm\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .sm\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .sm\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .sm\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .sm\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .sm\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .sm\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .sm\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .sm\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .sm\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .sm\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .sm\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .sm\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .sm\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .sm\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .sm\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .sm\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .sm\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .sm\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .sm\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .sm\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .sm\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .sm\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .sm\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .sm\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .sm\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .sm\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .sm\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .sm\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .sm\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .sm\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .sm\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .sm\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .sm\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .sm\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .sm\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .sm\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .sm\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .sm\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .sm\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .sm\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .sm\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .sm\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .sm\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .sm\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .sm\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .sm\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .sm\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .sm\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .sm\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .sm\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .sm\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .sm\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .sm\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .sm\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .sm\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .sm\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .sm\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .sm\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .sm\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .sm\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .sm\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .sm\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .sm\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .sm\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .sm\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .sm\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .sm\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .sm\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .sm\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .sm\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .sm\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .sm\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .sm\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .sm\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .sm\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .sm\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .sm\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .sm\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .sm\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .sm\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .sm\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .sm\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .sm\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .sm\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .sm\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .sm\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .sm\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .sm\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .sm\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .sm\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .sm\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .sm\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .sm\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .sm\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .sm\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .sm\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .sm\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .sm\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .sm\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .sm\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .sm\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .sm\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .sm\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .sm\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .sm\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .sm\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .sm\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .sm\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .sm\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .sm\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .sm\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .sm\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .sm\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .sm\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .sm\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .sm\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .sm\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .sm\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .sm\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .sm\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .sm\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .sm\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .sm\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .sm\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .sm\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .sm\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .sm\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .sm\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .sm\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .sm\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .sm\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .sm\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .sm\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .sm\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .sm\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .sm\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .sm\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .sm\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .sm\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .sm\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .sm\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .sm\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .sm\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .sm\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .sm\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .sm\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .sm\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .sm\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .sm\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .sm\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .sm\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .sm\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .sm\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .sm\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .sm\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .sm\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .sm\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .sm\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .sm\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .sm\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .sm\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .sm\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .sm\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .sm\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .sm\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .sm\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .sm\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .sm\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .sm\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .sm\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .sm\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .sm\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .sm\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .sm\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .sm\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .sm\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .sm\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .sm\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .sm\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .sm\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .sm\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .sm\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .sm\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .sm\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .sm\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .sm\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .sm\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .sm\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .sm\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .sm\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .sm\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .sm\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .sm\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .sm\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .sm\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .sm\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .sm\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .sm\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .sm\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .sm\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .sm\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .sm\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .sm\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .sm\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .sm\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .sm\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .sm\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .sm\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .sm\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .sm\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .sm\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .sm\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .sm\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .sm\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .sm\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .sm\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .sm\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .sm\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .sm\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .sm\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .sm\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .sm\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .sm\:col-auto {
    grid-column: auto !important;
  }

  .sm\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

  .sm\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }

  .sm\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .sm\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .sm\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .sm\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .sm\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .sm\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .sm\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .sm\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .sm\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .sm\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .sm\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .sm\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .sm\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .sm\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .sm\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .sm\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .sm\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .sm\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .sm\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .sm\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .sm\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .sm\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .sm\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .sm\:col-start-auto {
    grid-column-start: auto !important;
  }

  .sm\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .sm\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .sm\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .sm\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .sm\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .sm\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .sm\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .sm\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .sm\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .sm\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .sm\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .sm\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .sm\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .sm\:col-end-auto {
    grid-column-end: auto !important;
  }

  .sm\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .sm\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .sm\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .sm\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .sm\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .sm\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .sm\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .sm\:row-auto {
    grid-row: auto !important;
  }

  .sm\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .sm\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .sm\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .sm\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .sm\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .sm\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .sm\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .sm\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .sm\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .sm\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .sm\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .sm\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .sm\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .sm\:row-start-auto {
    grid-row-start: auto !important;
  }

  .sm\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .sm\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .sm\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .sm\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .sm\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .sm\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .sm\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .sm\:row-end-auto {
    grid-row-end: auto !important;
  }

  .sm\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .sm\:transform-none {
    transform: none !important;
  }

  .sm\:origin-center {
    transform-origin: center !important;
  }

  .sm\:origin-top {
    transform-origin: top !important;
  }

  .sm\:origin-top-right {
    transform-origin: top right !important;
  }

  .sm\:origin-right {
    transform-origin: right !important;
  }

  .sm\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .sm\:origin-bottom {
    transform-origin: bottom !important;
  }

  .sm\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .sm\:origin-left {
    transform-origin: left !important;
  }

  .sm\:origin-top-left {
    transform-origin: top left !important;
  }

  .sm\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .sm\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .sm\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .sm\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .sm\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .sm\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .sm\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .sm\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .sm\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .sm\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .sm\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .sm\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .sm\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .sm\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .sm\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .sm\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .sm\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .sm\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .sm\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .sm\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .sm\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .sm\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .sm\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .sm\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .sm\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .sm\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .sm\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .sm\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .sm\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .sm\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (min-width: 960px) and (max-width: 1279px) {
  .md\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .md\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .md\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .md\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .md\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .md\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .md\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .md\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .md\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .md\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .md\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .md\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .md\:rounded-none {
    border-radius: 0 !important;
  }

  .md\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .md\:rounded {
    border-radius: 0.25rem !important;
  }

  .md\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .md\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .md\:rounded-full {
    border-radius: 9999px !important;
  }

  .md\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .md\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .md\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .md\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .md\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .md\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .md\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .md\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .md\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .md\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .md\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .md\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .md\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .md\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .md\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .md\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .md\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .md\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .md\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .md\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .md\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .md\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .md\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .md\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .md\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .md\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .md\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .md\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .md\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .md\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .md\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .md\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .md\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .md\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .md\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .md\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .md\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .md\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .md\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .md\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .md\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .md\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .md\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .md\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .md\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .md\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .md\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .md\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .md\:border-0 {
    border-width: 0 !important;
  }

  .md\:border-2 {
    border-width: 2px !important;
  }

  .md\:border-4 {
    border-width: 4px !important;
  }

  .md\:border-8 {
    border-width: 8px !important;
  }

  .md\:border {
    border-width: 1px !important;
  }

  .md\:border-t-0 {
    border-top-width: 0 !important;
  }

  .md\:border-r-0 {
    border-right-width: 0 !important;
  }

  .md\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .md\:border-l-0 {
    border-left-width: 0 !important;
  }

  .md\:border-t-2 {
    border-top-width: 2px !important;
  }

  .md\:border-r-2 {
    border-right-width: 2px !important;
  }

  .md\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .md\:border-l-2 {
    border-left-width: 2px !important;
  }

  .md\:border-t-4 {
    border-top-width: 4px !important;
  }

  .md\:border-r-4 {
    border-right-width: 4px !important;
  }

  .md\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .md\:border-l-4 {
    border-left-width: 4px !important;
  }

  .md\:border-t-8 {
    border-top-width: 8px !important;
  }

  .md\:border-r-8 {
    border-right-width: 8px !important;
  }

  .md\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .md\:border-l-8 {
    border-left-width: 8px !important;
  }

  .md\:border-t {
    border-top-width: 1px !important;
  }

  .md\:border-r {
    border-right-width: 1px !important;
  }

  .md\:border-b {
    border-bottom-width: 1px !important;
  }

  .md\:border-l {
    border-left-width: 1px !important;
  }

  .md\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .md\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .md\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .md\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .md\:first\:border:first-child {
    border-width: 1px !important;
  }

  .md\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .md\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .md\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .md\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .md\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .md\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .md\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .md\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .md\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .md\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .md\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .md\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .md\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .md\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .md\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .md\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .md\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .md\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .md\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .md\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .md\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .md\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .md\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .md\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .md\:last\:border:last-child {
    border-width: 1px !important;
  }

  .md\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .md\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .md\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .md\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .md\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .md\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .md\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .md\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .md\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .md\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .md\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .md\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .md\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .md\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .md\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .md\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .md\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .md\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .md\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .md\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .md\:block {
    display: block !important;
  }

  .md\:inline-block {
    display: inline-block !important;
  }

  .md\:inline {
    display: inline !important;
  }

  .md\:flex {
    display: flex !important;
  }

  .md\:inline-flex {
    display: inline-flex !important;
  }

  .md\:table {
    display: table !important;
  }

  .md\:table-caption {
    display: table-caption !important;
  }

  .md\:table-cell {
    display: table-cell !important;
  }

  .md\:table-column {
    display: table-column !important;
  }

  .md\:table-column-group {
    display: table-column-group !important;
  }

  .md\:table-footer-group {
    display: table-footer-group !important;
  }

  .md\:table-header-group {
    display: table-header-group !important;
  }

  .md\:table-row-group {
    display: table-row-group !important;
  }

  .md\:table-row {
    display: table-row !important;
  }

  .md\:flow-root {
    display: flow-root !important;
  }

  .md\:grid {
    display: grid !important;
  }

  .md\:inline-grid {
    display: inline-grid !important;
  }

  .md\:contents {
    display: contents !important;
  }

  .md\:hidden {
    display: none !important;
  }

  .md\:flex-row {
    flex-direction: row !important;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .md\:flex-col {
    flex-direction: column !important;
  }

  .md\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .md\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .md\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .md\:items-start {
    align-items: flex-start !important;
  }

  .md\:items-end {
    align-items: flex-end !important;
  }

  .md\:items-center {
    align-items: center !important;
  }

  .md\:items-baseline {
    align-items: baseline !important;
  }

  .md\:items-stretch {
    align-items: stretch !important;
  }

  .md\:self-auto {
    align-self: auto !important;
  }

  .md\:self-start {
    align-self: flex-start !important;
  }

  .md\:self-end {
    align-self: flex-end !important;
  }

  .md\:self-center {
    align-self: center !important;
  }

  .md\:self-stretch {
    align-self: stretch !important;
  }

  .md\:justify-start {
    justify-content: flex-start !important;
  }

  .md\:justify-end {
    justify-content: flex-end !important;
  }

  .md\:justify-center {
    justify-content: center !important;
  }

  .md\:justify-between {
    justify-content: space-between !important;
  }

  .md\:justify-around {
    justify-content: space-around !important;
  }

  .md\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .md\:content-center {
    align-content: center !important;
  }

  .md\:content-start {
    align-content: flex-start !important;
  }

  .md\:content-end {
    align-content: flex-end !important;
  }

  .md\:content-between {
    align-content: space-between !important;
  }

  .md\:content-around {
    align-content: space-around !important;
  }

  .md\:flex-0 {
    flex: 0 0 auto !important;
  }

  .md\:flex-1 {
    flex: 1 1 0% !important;
  }

  .md\:flex-auto {
    flex: 1 1 auto !important;
  }

  .md\:flex-initial {
    flex: 0 1 auto !important;
  }

  .md\:flex-none {
    flex: none !important;
  }

  .md\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .md\:flex-grow {
    flex-grow: 1 !important;
  }

  .md\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .md\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .md\:order-1 {
    order: 1 !important;
  }

  .md\:order-2 {
    order: 2 !important;
  }

  .md\:order-3 {
    order: 3 !important;
  }

  .md\:order-4 {
    order: 4 !important;
  }

  .md\:order-5 {
    order: 5 !important;
  }

  .md\:order-6 {
    order: 6 !important;
  }

  .md\:order-7 {
    order: 7 !important;
  }

  .md\:order-8 {
    order: 8 !important;
  }

  .md\:order-9 {
    order: 9 !important;
  }

  .md\:order-10 {
    order: 10 !important;
  }

  .md\:order-11 {
    order: 11 !important;
  }

  .md\:order-12 {
    order: 12 !important;
  }

  .md\:order-first {
    order: -9999 !important;
  }

  .md\:order-last {
    order: 9999 !important;
  }

  .md\:order-none {
    order: 0 !important;
  }

  .md\:font-hairline {
    font-weight: 100 !important;
  }

  .md\:font-thin {
    font-weight: 200 !important;
  }

  .md\:font-light {
    font-weight: 300 !important;
  }

  .md\:font-normal {
    font-weight: 400 !important;
  }

  .md\:font-medium {
    font-weight: 500 !important;
  }

  .md\:font-semibold {
    font-weight: 600 !important;
  }

  .md\:font-bold {
    font-weight: 700 !important;
  }

  .md\:font-extrabold {
    font-weight: 800 !important;
  }

  .md\:font-black {
    font-weight: 900 !important;
  }

  .md\:h-0 {
    height: 0 !important;
  }

  .md\:h-1 {
    height: 0.25rem !important;
  }

  .md\:h-2 {
    height: 0.5rem !important;
  }

  .md\:h-3 {
    height: 0.75rem !important;
  }

  .md\:h-4 {
    height: 1rem !important;
  }

  .md\:h-5 {
    height: 1.25rem !important;
  }

  .md\:h-6 {
    height: 1.5rem !important;
  }

  .md\:h-7 {
    height: 1.75rem !important;
  }

  .md\:h-8 {
    height: 2rem !important;
  }

  .md\:h-9 {
    height: 2.25rem !important;
  }

  .md\:h-10 {
    height: 2.5rem !important;
  }

  .md\:h-11 {
    height: 2.75rem !important;
  }

  .md\:h-12 {
    height: 3rem !important;
  }

  .md\:h-13 {
    height: 3.25rem !important;
  }

  .md\:h-14 {
    height: 3.5rem !important;
  }

  .md\:h-15 {
    height: 3.75rem !important;
  }

  .md\:h-16 {
    height: 4rem !important;
  }

  .md\:h-18 {
    height: 4.5rem !important;
  }

  .md\:h-20 {
    height: 5rem !important;
  }

  .md\:h-22 {
    height: 5.5rem !important;
  }

  .md\:h-24 {
    height: 6rem !important;
  }

  .md\:h-26 {
    height: 6.5rem !important;
  }

  .md\:h-28 {
    height: 7rem !important;
  }

  .md\:h-30 {
    height: 7.5rem !important;
  }

  .md\:h-32 {
    height: 8rem !important;
  }

  .md\:h-36 {
    height: 9rem !important;
  }

  .md\:h-40 {
    height: 10rem !important;
  }

  .md\:h-44 {
    height: 11rem !important;
  }

  .md\:h-48 {
    height: 12rem !important;
  }

  .md\:h-50 {
    height: 12.5rem !important;
  }

  .md\:h-52 {
    height: 13rem !important;
  }

  .md\:h-56 {
    height: 14rem !important;
  }

  .md\:h-60 {
    height: 15rem !important;
  }

  .md\:h-64 {
    height: 16rem !important;
  }

  .md\:h-72 {
    height: 18rem !important;
  }

  .md\:h-80 {
    height: 20rem !important;
  }

  .md\:h-90 {
    height: 24rem !important;
  }

  .md\:h-96 {
    height: 24rem !important;
  }

  .md\:h-100 {
    height: 25rem !important;
  }

  .md\:h-120 {
    height: 30rem !important;
  }

  .md\:h-128 {
    height: 32rem !important;
  }

  .md\:h-140 {
    height: 35rem !important;
  }

  .md\:h-160 {
    height: 40rem !important;
  }

  .md\:h-180 {
    height: 45rem !important;
  }

  .md\:h-192 {
    height: 48rem !important;
  }

  .md\:h-200 {
    height: 50rem !important;
  }

  .md\:h-240 {
    height: 60rem !important;
  }

  .md\:h-256 {
    height: 64rem !important;
  }

  .md\:h-280 {
    height: 70rem !important;
  }

  .md\:h-320 {
    height: 80rem !important;
  }

  .md\:h-360 {
    height: 90rem !important;
  }

  .md\:h-400 {
    height: 100rem !important;
  }

  .md\:h-480 {
    height: 120rem !important;
  }

  .md\:h-auto {
    height: auto !important;
  }

  .md\:h-px {
    height: 1px !important;
  }

  .md\:h-0\.5 {
    height: 0.125rem !important;
  }

  .md\:h-1\.5 {
    height: 0.375rem !important;
  }

  .md\:h-2\.5 {
    height: 0.625rem !important;
  }

  .md\:h-3\.5 {
    height: 0.875rem !important;
  }

  .md\:h-1\/2 {
    height: 50% !important;
  }

  .md\:h-1\/3 {
    height: 33.333333% !important;
  }

  .md\:h-2\/3 {
    height: 66.666667% !important;
  }

  .md\:h-1\/4 {
    height: 25% !important;
  }

  .md\:h-2\/4 {
    height: 50% !important;
  }

  .md\:h-3\/4 {
    height: 75% !important;
  }

  .md\:h-1\/5 {
    height: 20% !important;
  }

  .md\:h-2\/5 {
    height: 40% !important;
  }

  .md\:h-3\/5 {
    height: 60% !important;
  }

  .md\:h-4\/5 {
    height: 80% !important;
  }

  .md\:h-1\/6 {
    height: 16.666667% !important;
  }

  .md\:h-2\/6 {
    height: 33.333333% !important;
  }

  .md\:h-3\/6 {
    height: 50% !important;
  }

  .md\:h-4\/6 {
    height: 66.666667% !important;
  }

  .md\:h-5\/6 {
    height: 83.333333% !important;
  }

  .md\:h-1\/12 {
    height: 8.333333% !important;
  }

  .md\:h-2\/12 {
    height: 16.666667% !important;
  }

  .md\:h-3\/12 {
    height: 25% !important;
  }

  .md\:h-4\/12 {
    height: 33.333333% !important;
  }

  .md\:h-5\/12 {
    height: 41.666667% !important;
  }

  .md\:h-6\/12 {
    height: 50% !important;
  }

  .md\:h-7\/12 {
    height: 58.333333% !important;
  }

  .md\:h-8\/12 {
    height: 66.666667% !important;
  }

  .md\:h-9\/12 {
    height: 75% !important;
  }

  .md\:h-10\/12 {
    height: 83.333333% !important;
  }

  .md\:h-11\/12 {
    height: 91.666667% !important;
  }

  .md\:h-full {
    height: 100% !important;
  }

  .md\:h-2px {
    height: 2px !important;
  }

  .md\:h-screen {
    height: 100vh !important;
  }

  .md\:text-xs {
    font-size: 0.625rem !important;
  }

  .md\:text-sm {
    font-size: 0.75rem !important;
  }

  .md\:text-md {
    font-size: 0.8125rem !important;
  }

  .md\:text-base {
    font-size: 0.875rem !important;
  }

  .md\:text-lg {
    font-size: 1rem !important;
  }

  .md\:text-xl {
    font-size: 1.125rem !important;
  }

  .md\:text-2xl {
    font-size: 1.25rem !important;
  }

  .md\:text-3xl {
    font-size: 1.5rem !important;
  }

  .md\:text-4xl {
    font-size: 2rem !important;
  }

  .md\:text-5xl {
    font-size: 2.25rem !important;
  }

  .md\:text-6xl {
    font-size: 2.5rem !important;
  }

  .md\:text-7xl {
    font-size: 3rem !important;
  }

  .md\:text-8xl {
    font-size: 4rem !important;
  }

  .md\:text-9xl {
    font-size: 6rem !important;
  }

  .md\:text-10xl {
    font-size: 8rem !important;
  }

  .md\:leading-3 {
    line-height: 0.75rem !important;
  }

  .md\:leading-4 {
    line-height: 1rem !important;
  }

  .md\:leading-5 {
    line-height: 1.25rem !important;
  }

  .md\:leading-6 {
    line-height: 1.5rem !important;
  }

  .md\:leading-7 {
    line-height: 1.75rem !important;
  }

  .md\:leading-8 {
    line-height: 2rem !important;
  }

  .md\:leading-9 {
    line-height: 2.25rem !important;
  }

  .md\:leading-10 {
    line-height: 2.5rem !important;
  }

  .md\:leading-none {
    line-height: 1 !important;
  }

  .md\:leading-tight {
    line-height: 1.25 !important;
  }

  .md\:leading-snug {
    line-height: 1.375 !important;
  }

  .md\:leading-normal {
    line-height: 1.5 !important;
  }

  .md\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .md\:leading-loose {
    line-height: 2 !important;
  }

  .md\:m-0 {
    margin: 0 !important;
  }

  .md\:m-1 {
    margin: 0.25rem !important;
  }

  .md\:m-2 {
    margin: 0.5rem !important;
  }

  .md\:m-3 {
    margin: 0.75rem !important;
  }

  .md\:m-4 {
    margin: 1rem !important;
  }

  .md\:m-5 {
    margin: 1.25rem !important;
  }

  .md\:m-6 {
    margin: 1.5rem !important;
  }

  .md\:m-7 {
    margin: 1.75rem !important;
  }

  .md\:m-8 {
    margin: 2rem !important;
  }

  .md\:m-9 {
    margin: 2.25rem !important;
  }

  .md\:m-10 {
    margin: 2.5rem !important;
  }

  .md\:m-11 {
    margin: 2.75rem !important;
  }

  .md\:m-12 {
    margin: 3rem !important;
  }

  .md\:m-13 {
    margin: 3.25rem !important;
  }

  .md\:m-14 {
    margin: 3.5rem !important;
  }

  .md\:m-15 {
    margin: 3.75rem !important;
  }

  .md\:m-16 {
    margin: 4rem !important;
  }

  .md\:m-18 {
    margin: 4.5rem !important;
  }

  .md\:m-20 {
    margin: 5rem !important;
  }

  .md\:m-22 {
    margin: 5.5rem !important;
  }

  .md\:m-24 {
    margin: 6rem !important;
  }

  .md\:m-26 {
    margin: 6.5rem !important;
  }

  .md\:m-28 {
    margin: 7rem !important;
  }

  .md\:m-30 {
    margin: 7.5rem !important;
  }

  .md\:m-32 {
    margin: 8rem !important;
  }

  .md\:m-36 {
    margin: 9rem !important;
  }

  .md\:m-40 {
    margin: 10rem !important;
  }

  .md\:m-44 {
    margin: 11rem !important;
  }

  .md\:m-48 {
    margin: 12rem !important;
  }

  .md\:m-50 {
    margin: 12.5rem !important;
  }

  .md\:m-52 {
    margin: 13rem !important;
  }

  .md\:m-56 {
    margin: 14rem !important;
  }

  .md\:m-60 {
    margin: 15rem !important;
  }

  .md\:m-64 {
    margin: 16rem !important;
  }

  .md\:m-72 {
    margin: 18rem !important;
  }

  .md\:m-80 {
    margin: 20rem !important;
  }

  .md\:m-90 {
    margin: 24rem !important;
  }

  .md\:m-96 {
    margin: 24rem !important;
  }

  .md\:m-100 {
    margin: 25rem !important;
  }

  .md\:m-120 {
    margin: 30rem !important;
  }

  .md\:m-128 {
    margin: 32rem !important;
  }

  .md\:m-140 {
    margin: 35rem !important;
  }

  .md\:m-160 {
    margin: 40rem !important;
  }

  .md\:m-180 {
    margin: 45rem !important;
  }

  .md\:m-192 {
    margin: 48rem !important;
  }

  .md\:m-200 {
    margin: 50rem !important;
  }

  .md\:m-240 {
    margin: 60rem !important;
  }

  .md\:m-256 {
    margin: 64rem !important;
  }

  .md\:m-280 {
    margin: 70rem !important;
  }

  .md\:m-320 {
    margin: 80rem !important;
  }

  .md\:m-360 {
    margin: 90rem !important;
  }

  .md\:m-400 {
    margin: 100rem !important;
  }

  .md\:m-480 {
    margin: 120rem !important;
  }

  .md\:m-auto {
    margin: auto !important;
  }

  .md\:m-px {
    margin: 1px !important;
  }

  .md\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .md\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .md\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .md\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .md\:m-1\/2 {
    margin: 50% !important;
  }

  .md\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .md\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .md\:m-1\/4 {
    margin: 25% !important;
  }

  .md\:m-2\/4 {
    margin: 50% !important;
  }

  .md\:m-3\/4 {
    margin: 75% !important;
  }

  .md\:m-1\/5 {
    margin: 20% !important;
  }

  .md\:m-2\/5 {
    margin: 40% !important;
  }

  .md\:m-3\/5 {
    margin: 60% !important;
  }

  .md\:m-4\/5 {
    margin: 80% !important;
  }

  .md\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .md\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .md\:m-3\/6 {
    margin: 50% !important;
  }

  .md\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .md\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .md\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .md\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .md\:m-3\/12 {
    margin: 25% !important;
  }

  .md\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .md\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .md\:m-6\/12 {
    margin: 50% !important;
  }

  .md\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .md\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .md\:m-9\/12 {
    margin: 75% !important;
  }

  .md\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .md\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .md\:m-full {
    margin: 100% !important;
  }

  .md\:m-2px {
    margin: 2px !important;
  }

  .md\:-m-1 {
    margin: -0.25rem !important;
  }

  .md\:-m-2 {
    margin: -0.5rem !important;
  }

  .md\:-m-3 {
    margin: -0.75rem !important;
  }

  .md\:-m-4 {
    margin: -1rem !important;
  }

  .md\:-m-5 {
    margin: -1.25rem !important;
  }

  .md\:-m-6 {
    margin: -1.5rem !important;
  }

  .md\:-m-7 {
    margin: -1.75rem !important;
  }

  .md\:-m-8 {
    margin: -2rem !important;
  }

  .md\:-m-9 {
    margin: -2.25rem !important;
  }

  .md\:-m-10 {
    margin: -2.5rem !important;
  }

  .md\:-m-11 {
    margin: -2.75rem !important;
  }

  .md\:-m-12 {
    margin: -3rem !important;
  }

  .md\:-m-13 {
    margin: -3.25rem !important;
  }

  .md\:-m-14 {
    margin: -3.5rem !important;
  }

  .md\:-m-15 {
    margin: -3.75rem !important;
  }

  .md\:-m-16 {
    margin: -4rem !important;
  }

  .md\:-m-18 {
    margin: -4.5rem !important;
  }

  .md\:-m-20 {
    margin: -5rem !important;
  }

  .md\:-m-22 {
    margin: -5.5rem !important;
  }

  .md\:-m-24 {
    margin: -6rem !important;
  }

  .md\:-m-26 {
    margin: -6.5rem !important;
  }

  .md\:-m-28 {
    margin: -7rem !important;
  }

  .md\:-m-30 {
    margin: -7.5rem !important;
  }

  .md\:-m-32 {
    margin: -8rem !important;
  }

  .md\:-m-36 {
    margin: -9rem !important;
  }

  .md\:-m-40 {
    margin: -10rem !important;
  }

  .md\:-m-44 {
    margin: -11rem !important;
  }

  .md\:-m-48 {
    margin: -12rem !important;
  }

  .md\:-m-50 {
    margin: -12.5rem !important;
  }

  .md\:-m-52 {
    margin: -13rem !important;
  }

  .md\:-m-56 {
    margin: -14rem !important;
  }

  .md\:-m-60 {
    margin: -15rem !important;
  }

  .md\:-m-64 {
    margin: -16rem !important;
  }

  .md\:-m-72 {
    margin: -18rem !important;
  }

  .md\:-m-80 {
    margin: -20rem !important;
  }

  .md\:-m-90 {
    margin: -24rem !important;
  }

  .md\:-m-96 {
    margin: -24rem !important;
  }

  .md\:-m-100 {
    margin: -25rem !important;
  }

  .md\:-m-120 {
    margin: -30rem !important;
  }

  .md\:-m-128 {
    margin: -32rem !important;
  }

  .md\:-m-140 {
    margin: -35rem !important;
  }

  .md\:-m-160 {
    margin: -40rem !important;
  }

  .md\:-m-180 {
    margin: -45rem !important;
  }

  .md\:-m-192 {
    margin: -48rem !important;
  }

  .md\:-m-200 {
    margin: -50rem !important;
  }

  .md\:-m-240 {
    margin: -60rem !important;
  }

  .md\:-m-256 {
    margin: -64rem !important;
  }

  .md\:-m-280 {
    margin: -70rem !important;
  }

  .md\:-m-320 {
    margin: -80rem !important;
  }

  .md\:-m-360 {
    margin: -90rem !important;
  }

  .md\:-m-400 {
    margin: -100rem !important;
  }

  .md\:-m-480 {
    margin: -120rem !important;
  }

  .md\:-m-px {
    margin: -1px !important;
  }

  .md\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .md\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .md\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .md\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .md\:-m-1\/2 {
    margin: -50% !important;
  }

  .md\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .md\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .md\:-m-1\/4 {
    margin: -25% !important;
  }

  .md\:-m-2\/4 {
    margin: -50% !important;
  }

  .md\:-m-3\/4 {
    margin: -75% !important;
  }

  .md\:-m-1\/5 {
    margin: -20% !important;
  }

  .md\:-m-2\/5 {
    margin: -40% !important;
  }

  .md\:-m-3\/5 {
    margin: -60% !important;
  }

  .md\:-m-4\/5 {
    margin: -80% !important;
  }

  .md\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .md\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .md\:-m-3\/6 {
    margin: -50% !important;
  }

  .md\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .md\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .md\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .md\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .md\:-m-3\/12 {
    margin: -25% !important;
  }

  .md\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .md\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .md\:-m-6\/12 {
    margin: -50% !important;
  }

  .md\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .md\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .md\:-m-9\/12 {
    margin: -75% !important;
  }

  .md\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .md\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .md\:-m-full {
    margin: -100% !important;
  }

  .md\:-m-2px {
    margin: -2px !important;
  }

  .md\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .md\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .md\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .md\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .md\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .md\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .md\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .md\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .md\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .md\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .md\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .md\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .md\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .md\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .md\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .md\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .md\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .md\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .md\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .md\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .md\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .md\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .md\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .md\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .md\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .md\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .md\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .md\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .md\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .md\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .md\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .md\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .md\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .md\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .md\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .md\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .md\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .md\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .md\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .md\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .md\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .md\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .md\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .md\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .md\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .md\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .md\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .md\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .md\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .md\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .md\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .md\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .md\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .md\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .md\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .md\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .md\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .md\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .md\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .md\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .md\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .md\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .md\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .md\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .md\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .md\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .md\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .md\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .md\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .md\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .md\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .md\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .md\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .md\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .md\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .md\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .md\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .md\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .md\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .md\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .md\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .md\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .md\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .md\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .md\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .md\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .md\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .md\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .md\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .md\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .md\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .md\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .md\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .md\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .md\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .md\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .md\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .md\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .md\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .md\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .md\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .md\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .md\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .md\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .md\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .md\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .md\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .md\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .md\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .md\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .md\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .md\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .md\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .md\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .md\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .md\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .md\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .md\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .md\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .md\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .md\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .md\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .md\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .md\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .md\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .md\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .md\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .md\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .md\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .md\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .md\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .md\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .md\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .md\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .md\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .md\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .md\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .md\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .md\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .md\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .md\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .md\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .md\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .md\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .md\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .md\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .md\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .md\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .md\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .md\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .md\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .md\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .md\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .md\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .md\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .md\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .md\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .md\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .md\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .md\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .md\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .md\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .md\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .md\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .md\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .md\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .md\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .md\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .md\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .md\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .md\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .md\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .md\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .md\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .md\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .md\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .md\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .md\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .md\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .md\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .md\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .md\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .md\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .md\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .md\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .md\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .md\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .md\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .md\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .md\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .md\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .md\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .md\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .md\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .md\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .md\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .md\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .md\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .md\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .md\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .md\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .md\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .md\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .md\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .md\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .md\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .md\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .md\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .md\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .md\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .md\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .md\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .md\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .md\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .md\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .md\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .md\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .md\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .md\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .md\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .md\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .md\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .md\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .md\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .md\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .md\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .md\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .md\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .md\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .md\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .md\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .md\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .md\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .md\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .md\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .md\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .md\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .md\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .md\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .md\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .md\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .md\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .md\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .md\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .md\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .md\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .md\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .md\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .md\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .md\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .md\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .md\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .md\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .md\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .md\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .md\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .md\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .md\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .md\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .md\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .md\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .md\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .md\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .md\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .md\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .md\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .md\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .md\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .md\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .md\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .md\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .md\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .md\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .md\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .md\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .md\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .md\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .md\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .md\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .md\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .md\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .md\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .md\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .md\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .md\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .md\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .md\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .md\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .md\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .md\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .md\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .md\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .md\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .md\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .md\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .md\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .md\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .md\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .md\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .md\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .md\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .md\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .md\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .md\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .md\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .md\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .md\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .md\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .md\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .md\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .md\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .md\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .md\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .md\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .md\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .md\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .md\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .md\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .md\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .md\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .md\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .md\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .md\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .md\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .md\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .md\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .md\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .md\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .md\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .md\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .md\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .md\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .md\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .md\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .md\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .md\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .md\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .md\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .md\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .md\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .md\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .md\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .md\:mt-0 {
    margin-top: 0 !important;
  }

  .md\:mr-0 {
    margin-right: 0 !important;
  }

  .md\:mb-0 {
    margin-bottom: 0 !important;
  }

  .md\:ml-0 {
    margin-left: 0 !important;
  }

  .md\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .md\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .md\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .md\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .md\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .md\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .md\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .md\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .md\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .md\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .md\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .md\:mt-4 {
    margin-top: 1rem !important;
  }

  .md\:mr-4 {
    margin-right: 1rem !important;
  }

  .md\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .md\:ml-4 {
    margin-left: 1rem !important;
  }

  .md\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .md\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .md\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .md\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .md\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .md\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .md\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .md\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .md\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .md\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .md\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .md\:mt-8 {
    margin-top: 2rem !important;
  }

  .md\:mr-8 {
    margin-right: 2rem !important;
  }

  .md\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .md\:ml-8 {
    margin-left: 2rem !important;
  }

  .md\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .md\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .md\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .md\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .md\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .md\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .md\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .md\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .md\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .md\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .md\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .md\:mt-12 {
    margin-top: 3rem !important;
  }

  .md\:mr-12 {
    margin-right: 3rem !important;
  }

  .md\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .md\:ml-12 {
    margin-left: 3rem !important;
  }

  .md\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .md\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .md\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .md\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .md\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .md\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .md\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .md\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .md\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .md\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .md\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .md\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .md\:mt-16 {
    margin-top: 4rem !important;
  }

  .md\:mr-16 {
    margin-right: 4rem !important;
  }

  .md\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .md\:ml-16 {
    margin-left: 4rem !important;
  }

  .md\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .md\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .md\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .md\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .md\:mt-20 {
    margin-top: 5rem !important;
  }

  .md\:mr-20 {
    margin-right: 5rem !important;
  }

  .md\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .md\:ml-20 {
    margin-left: 5rem !important;
  }

  .md\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .md\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .md\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .md\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .md\:mt-24 {
    margin-top: 6rem !important;
  }

  .md\:mr-24 {
    margin-right: 6rem !important;
  }

  .md\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .md\:ml-24 {
    margin-left: 6rem !important;
  }

  .md\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .md\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .md\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .md\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .md\:mt-28 {
    margin-top: 7rem !important;
  }

  .md\:mr-28 {
    margin-right: 7rem !important;
  }

  .md\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .md\:ml-28 {
    margin-left: 7rem !important;
  }

  .md\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .md\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .md\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .md\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .md\:mt-32 {
    margin-top: 8rem !important;
  }

  .md\:mr-32 {
    margin-right: 8rem !important;
  }

  .md\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .md\:ml-32 {
    margin-left: 8rem !important;
  }

  .md\:mt-36 {
    margin-top: 9rem !important;
  }

  .md\:mr-36 {
    margin-right: 9rem !important;
  }

  .md\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .md\:ml-36 {
    margin-left: 9rem !important;
  }

  .md\:mt-40 {
    margin-top: 10rem !important;
  }

  .md\:mr-40 {
    margin-right: 10rem !important;
  }

  .md\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .md\:ml-40 {
    margin-left: 10rem !important;
  }

  .md\:mt-44 {
    margin-top: 11rem !important;
  }

  .md\:mr-44 {
    margin-right: 11rem !important;
  }

  .md\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .md\:ml-44 {
    margin-left: 11rem !important;
  }

  .md\:mt-48 {
    margin-top: 12rem !important;
  }

  .md\:mr-48 {
    margin-right: 12rem !important;
  }

  .md\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .md\:ml-48 {
    margin-left: 12rem !important;
  }

  .md\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .md\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .md\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .md\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .md\:mt-52 {
    margin-top: 13rem !important;
  }

  .md\:mr-52 {
    margin-right: 13rem !important;
  }

  .md\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .md\:ml-52 {
    margin-left: 13rem !important;
  }

  .md\:mt-56 {
    margin-top: 14rem !important;
  }

  .md\:mr-56 {
    margin-right: 14rem !important;
  }

  .md\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .md\:ml-56 {
    margin-left: 14rem !important;
  }

  .md\:mt-60 {
    margin-top: 15rem !important;
  }

  .md\:mr-60 {
    margin-right: 15rem !important;
  }

  .md\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .md\:ml-60 {
    margin-left: 15rem !important;
  }

  .md\:mt-64 {
    margin-top: 16rem !important;
  }

  .md\:mr-64 {
    margin-right: 16rem !important;
  }

  .md\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .md\:ml-64 {
    margin-left: 16rem !important;
  }

  .md\:mt-72 {
    margin-top: 18rem !important;
  }

  .md\:mr-72 {
    margin-right: 18rem !important;
  }

  .md\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .md\:ml-72 {
    margin-left: 18rem !important;
  }

  .md\:mt-80 {
    margin-top: 20rem !important;
  }

  .md\:mr-80 {
    margin-right: 20rem !important;
  }

  .md\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .md\:ml-80 {
    margin-left: 20rem !important;
  }

  .md\:mt-90 {
    margin-top: 24rem !important;
  }

  .md\:mr-90 {
    margin-right: 24rem !important;
  }

  .md\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .md\:ml-90 {
    margin-left: 24rem !important;
  }

  .md\:mt-96 {
    margin-top: 24rem !important;
  }

  .md\:mr-96 {
    margin-right: 24rem !important;
  }

  .md\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .md\:ml-96 {
    margin-left: 24rem !important;
  }

  .md\:mt-100 {
    margin-top: 25rem !important;
  }

  .md\:mr-100 {
    margin-right: 25rem !important;
  }

  .md\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .md\:ml-100 {
    margin-left: 25rem !important;
  }

  .md\:mt-120 {
    margin-top: 30rem !important;
  }

  .md\:mr-120 {
    margin-right: 30rem !important;
  }

  .md\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .md\:ml-120 {
    margin-left: 30rem !important;
  }

  .md\:mt-128 {
    margin-top: 32rem !important;
  }

  .md\:mr-128 {
    margin-right: 32rem !important;
  }

  .md\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .md\:ml-128 {
    margin-left: 32rem !important;
  }

  .md\:mt-140 {
    margin-top: 35rem !important;
  }

  .md\:mr-140 {
    margin-right: 35rem !important;
  }

  .md\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .md\:ml-140 {
    margin-left: 35rem !important;
  }

  .md\:mt-160 {
    margin-top: 40rem !important;
  }

  .md\:mr-160 {
    margin-right: 40rem !important;
  }

  .md\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .md\:ml-160 {
    margin-left: 40rem !important;
  }

  .md\:mt-180 {
    margin-top: 45rem !important;
  }

  .md\:mr-180 {
    margin-right: 45rem !important;
  }

  .md\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .md\:ml-180 {
    margin-left: 45rem !important;
  }

  .md\:mt-192 {
    margin-top: 48rem !important;
  }

  .md\:mr-192 {
    margin-right: 48rem !important;
  }

  .md\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .md\:ml-192 {
    margin-left: 48rem !important;
  }

  .md\:mt-200 {
    margin-top: 50rem !important;
  }

  .md\:mr-200 {
    margin-right: 50rem !important;
  }

  .md\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .md\:ml-200 {
    margin-left: 50rem !important;
  }

  .md\:mt-240 {
    margin-top: 60rem !important;
  }

  .md\:mr-240 {
    margin-right: 60rem !important;
  }

  .md\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .md\:ml-240 {
    margin-left: 60rem !important;
  }

  .md\:mt-256 {
    margin-top: 64rem !important;
  }

  .md\:mr-256 {
    margin-right: 64rem !important;
  }

  .md\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .md\:ml-256 {
    margin-left: 64rem !important;
  }

  .md\:mt-280 {
    margin-top: 70rem !important;
  }

  .md\:mr-280 {
    margin-right: 70rem !important;
  }

  .md\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .md\:ml-280 {
    margin-left: 70rem !important;
  }

  .md\:mt-320 {
    margin-top: 80rem !important;
  }

  .md\:mr-320 {
    margin-right: 80rem !important;
  }

  .md\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .md\:ml-320 {
    margin-left: 80rem !important;
  }

  .md\:mt-360 {
    margin-top: 90rem !important;
  }

  .md\:mr-360 {
    margin-right: 90rem !important;
  }

  .md\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .md\:ml-360 {
    margin-left: 90rem !important;
  }

  .md\:mt-400 {
    margin-top: 100rem !important;
  }

  .md\:mr-400 {
    margin-right: 100rem !important;
  }

  .md\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .md\:ml-400 {
    margin-left: 100rem !important;
  }

  .md\:mt-480 {
    margin-top: 120rem !important;
  }

  .md\:mr-480 {
    margin-right: 120rem !important;
  }

  .md\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .md\:ml-480 {
    margin-left: 120rem !important;
  }

  .md\:mt-auto {
    margin-top: auto !important;
  }

  .md\:mr-auto {
    margin-right: auto !important;
  }

  .md\:mb-auto {
    margin-bottom: auto !important;
  }

  .md\:ml-auto {
    margin-left: auto !important;
  }

  .md\:mt-px {
    margin-top: 1px !important;
  }

  .md\:mr-px {
    margin-right: 1px !important;
  }

  .md\:mb-px {
    margin-bottom: 1px !important;
  }

  .md\:ml-px {
    margin-left: 1px !important;
  }

  .md\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .md\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .md\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .md\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .md\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .md\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .md\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .md\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .md\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .md\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .md\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .md\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .md\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .md\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .md\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .md\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .md\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .md\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .md\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .md\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .md\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .md\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .md\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .md\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .md\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .md\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .md\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .md\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .md\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .md\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .md\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .md\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .md\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .md\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .md\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .md\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .md\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .md\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .md\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .md\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .md\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .md\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .md\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .md\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .md\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .md\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .md\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .md\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .md\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .md\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .md\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .md\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .md\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .md\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .md\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .md\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .md\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .md\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .md\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .md\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .md\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .md\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .md\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .md\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .md\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .md\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .md\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .md\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .md\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .md\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .md\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .md\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .md\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .md\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .md\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .md\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .md\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .md\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .md\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .md\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .md\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .md\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .md\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .md\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .md\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .md\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .md\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .md\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .md\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .md\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .md\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .md\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .md\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .md\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .md\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .md\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .md\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .md\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .md\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .md\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .md\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .md\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .md\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .md\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .md\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .md\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .md\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .md\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .md\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .md\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .md\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .md\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .md\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .md\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .md\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .md\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .md\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .md\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .md\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .md\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .md\:mt-full {
    margin-top: 100% !important;
  }

  .md\:mr-full {
    margin-right: 100% !important;
  }

  .md\:mb-full {
    margin-bottom: 100% !important;
  }

  .md\:ml-full {
    margin-left: 100% !important;
  }

  .md\:mt-2px {
    margin-top: 2px !important;
  }

  .md\:mr-2px {
    margin-right: 2px !important;
  }

  .md\:mb-2px {
    margin-bottom: 2px !important;
  }

  .md\:ml-2px {
    margin-left: 2px !important;
  }

  .md\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .md\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .md\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .md\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .md\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .md\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .md\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .md\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .md\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .md\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .md\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .md\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .md\:-mt-4 {
    margin-top: -1rem !important;
  }

  .md\:-mr-4 {
    margin-right: -1rem !important;
  }

  .md\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .md\:-ml-4 {
    margin-left: -1rem !important;
  }

  .md\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .md\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .md\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .md\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .md\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .md\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .md\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .md\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .md\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .md\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .md\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .md\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .md\:-mt-8 {
    margin-top: -2rem !important;
  }

  .md\:-mr-8 {
    margin-right: -2rem !important;
  }

  .md\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .md\:-ml-8 {
    margin-left: -2rem !important;
  }

  .md\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .md\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .md\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .md\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .md\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .md\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .md\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .md\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .md\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .md\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .md\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .md\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .md\:-mt-12 {
    margin-top: -3rem !important;
  }

  .md\:-mr-12 {
    margin-right: -3rem !important;
  }

  .md\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .md\:-ml-12 {
    margin-left: -3rem !important;
  }

  .md\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .md\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .md\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .md\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .md\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .md\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .md\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .md\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .md\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .md\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .md\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .md\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .md\:-mt-16 {
    margin-top: -4rem !important;
  }

  .md\:-mr-16 {
    margin-right: -4rem !important;
  }

  .md\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .md\:-ml-16 {
    margin-left: -4rem !important;
  }

  .md\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .md\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .md\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .md\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .md\:-mt-20 {
    margin-top: -5rem !important;
  }

  .md\:-mr-20 {
    margin-right: -5rem !important;
  }

  .md\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .md\:-ml-20 {
    margin-left: -5rem !important;
  }

  .md\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .md\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .md\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .md\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .md\:-mt-24 {
    margin-top: -6rem !important;
  }

  .md\:-mr-24 {
    margin-right: -6rem !important;
  }

  .md\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .md\:-ml-24 {
    margin-left: -6rem !important;
  }

  .md\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .md\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .md\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .md\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .md\:-mt-28 {
    margin-top: -7rem !important;
  }

  .md\:-mr-28 {
    margin-right: -7rem !important;
  }

  .md\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .md\:-ml-28 {
    margin-left: -7rem !important;
  }

  .md\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .md\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .md\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .md\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .md\:-mt-32 {
    margin-top: -8rem !important;
  }

  .md\:-mr-32 {
    margin-right: -8rem !important;
  }

  .md\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .md\:-ml-32 {
    margin-left: -8rem !important;
  }

  .md\:-mt-36 {
    margin-top: -9rem !important;
  }

  .md\:-mr-36 {
    margin-right: -9rem !important;
  }

  .md\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .md\:-ml-36 {
    margin-left: -9rem !important;
  }

  .md\:-mt-40 {
    margin-top: -10rem !important;
  }

  .md\:-mr-40 {
    margin-right: -10rem !important;
  }

  .md\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .md\:-ml-40 {
    margin-left: -10rem !important;
  }

  .md\:-mt-44 {
    margin-top: -11rem !important;
  }

  .md\:-mr-44 {
    margin-right: -11rem !important;
  }

  .md\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .md\:-ml-44 {
    margin-left: -11rem !important;
  }

  .md\:-mt-48 {
    margin-top: -12rem !important;
  }

  .md\:-mr-48 {
    margin-right: -12rem !important;
  }

  .md\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .md\:-ml-48 {
    margin-left: -12rem !important;
  }

  .md\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .md\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .md\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .md\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .md\:-mt-52 {
    margin-top: -13rem !important;
  }

  .md\:-mr-52 {
    margin-right: -13rem !important;
  }

  .md\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .md\:-ml-52 {
    margin-left: -13rem !important;
  }

  .md\:-mt-56 {
    margin-top: -14rem !important;
  }

  .md\:-mr-56 {
    margin-right: -14rem !important;
  }

  .md\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .md\:-ml-56 {
    margin-left: -14rem !important;
  }

  .md\:-mt-60 {
    margin-top: -15rem !important;
  }

  .md\:-mr-60 {
    margin-right: -15rem !important;
  }

  .md\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .md\:-ml-60 {
    margin-left: -15rem !important;
  }

  .md\:-mt-64 {
    margin-top: -16rem !important;
  }

  .md\:-mr-64 {
    margin-right: -16rem !important;
  }

  .md\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .md\:-ml-64 {
    margin-left: -16rem !important;
  }

  .md\:-mt-72 {
    margin-top: -18rem !important;
  }

  .md\:-mr-72 {
    margin-right: -18rem !important;
  }

  .md\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .md\:-ml-72 {
    margin-left: -18rem !important;
  }

  .md\:-mt-80 {
    margin-top: -20rem !important;
  }

  .md\:-mr-80 {
    margin-right: -20rem !important;
  }

  .md\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .md\:-ml-80 {
    margin-left: -20rem !important;
  }

  .md\:-mt-90 {
    margin-top: -24rem !important;
  }

  .md\:-mr-90 {
    margin-right: -24rem !important;
  }

  .md\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .md\:-ml-90 {
    margin-left: -24rem !important;
  }

  .md\:-mt-96 {
    margin-top: -24rem !important;
  }

  .md\:-mr-96 {
    margin-right: -24rem !important;
  }

  .md\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .md\:-ml-96 {
    margin-left: -24rem !important;
  }

  .md\:-mt-100 {
    margin-top: -25rem !important;
  }

  .md\:-mr-100 {
    margin-right: -25rem !important;
  }

  .md\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .md\:-ml-100 {
    margin-left: -25rem !important;
  }

  .md\:-mt-120 {
    margin-top: -30rem !important;
  }

  .md\:-mr-120 {
    margin-right: -30rem !important;
  }

  .md\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .md\:-ml-120 {
    margin-left: -30rem !important;
  }

  .md\:-mt-128 {
    margin-top: -32rem !important;
  }

  .md\:-mr-128 {
    margin-right: -32rem !important;
  }

  .md\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .md\:-ml-128 {
    margin-left: -32rem !important;
  }

  .md\:-mt-140 {
    margin-top: -35rem !important;
  }

  .md\:-mr-140 {
    margin-right: -35rem !important;
  }

  .md\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .md\:-ml-140 {
    margin-left: -35rem !important;
  }

  .md\:-mt-160 {
    margin-top: -40rem !important;
  }

  .md\:-mr-160 {
    margin-right: -40rem !important;
  }

  .md\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .md\:-ml-160 {
    margin-left: -40rem !important;
  }

  .md\:-mt-180 {
    margin-top: -45rem !important;
  }

  .md\:-mr-180 {
    margin-right: -45rem !important;
  }

  .md\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .md\:-ml-180 {
    margin-left: -45rem !important;
  }

  .md\:-mt-192 {
    margin-top: -48rem !important;
  }

  .md\:-mr-192 {
    margin-right: -48rem !important;
  }

  .md\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .md\:-ml-192 {
    margin-left: -48rem !important;
  }

  .md\:-mt-200 {
    margin-top: -50rem !important;
  }

  .md\:-mr-200 {
    margin-right: -50rem !important;
  }

  .md\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .md\:-ml-200 {
    margin-left: -50rem !important;
  }

  .md\:-mt-240 {
    margin-top: -60rem !important;
  }

  .md\:-mr-240 {
    margin-right: -60rem !important;
  }

  .md\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .md\:-ml-240 {
    margin-left: -60rem !important;
  }

  .md\:-mt-256 {
    margin-top: -64rem !important;
  }

  .md\:-mr-256 {
    margin-right: -64rem !important;
  }

  .md\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .md\:-ml-256 {
    margin-left: -64rem !important;
  }

  .md\:-mt-280 {
    margin-top: -70rem !important;
  }

  .md\:-mr-280 {
    margin-right: -70rem !important;
  }

  .md\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .md\:-ml-280 {
    margin-left: -70rem !important;
  }

  .md\:-mt-320 {
    margin-top: -80rem !important;
  }

  .md\:-mr-320 {
    margin-right: -80rem !important;
  }

  .md\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .md\:-ml-320 {
    margin-left: -80rem !important;
  }

  .md\:-mt-360 {
    margin-top: -90rem !important;
  }

  .md\:-mr-360 {
    margin-right: -90rem !important;
  }

  .md\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .md\:-ml-360 {
    margin-left: -90rem !important;
  }

  .md\:-mt-400 {
    margin-top: -100rem !important;
  }

  .md\:-mr-400 {
    margin-right: -100rem !important;
  }

  .md\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .md\:-ml-400 {
    margin-left: -100rem !important;
  }

  .md\:-mt-480 {
    margin-top: -120rem !important;
  }

  .md\:-mr-480 {
    margin-right: -120rem !important;
  }

  .md\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .md\:-ml-480 {
    margin-left: -120rem !important;
  }

  .md\:-mt-px {
    margin-top: -1px !important;
  }

  .md\:-mr-px {
    margin-right: -1px !important;
  }

  .md\:-mb-px {
    margin-bottom: -1px !important;
  }

  .md\:-ml-px {
    margin-left: -1px !important;
  }

  .md\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .md\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .md\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .md\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .md\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .md\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .md\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .md\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .md\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .md\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .md\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .md\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .md\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .md\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .md\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .md\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .md\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .md\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .md\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .md\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .md\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .md\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .md\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .md\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .md\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .md\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .md\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .md\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .md\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .md\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .md\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .md\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .md\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .md\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .md\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .md\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .md\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .md\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .md\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .md\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .md\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .md\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .md\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .md\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .md\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .md\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .md\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .md\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .md\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .md\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .md\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .md\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .md\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .md\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .md\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .md\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .md\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .md\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .md\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .md\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .md\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .md\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .md\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .md\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .md\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .md\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .md\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .md\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .md\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .md\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .md\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .md\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .md\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .md\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .md\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .md\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .md\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .md\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .md\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .md\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .md\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .md\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .md\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .md\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .md\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .md\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .md\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .md\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .md\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .md\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .md\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .md\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .md\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .md\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .md\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .md\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .md\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .md\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .md\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .md\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .md\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .md\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .md\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .md\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .md\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .md\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .md\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .md\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .md\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .md\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .md\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .md\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .md\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .md\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .md\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .md\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .md\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .md\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .md\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .md\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .md\:-mt-full {
    margin-top: -100% !important;
  }

  .md\:-mr-full {
    margin-right: -100% !important;
  }

  .md\:-mb-full {
    margin-bottom: -100% !important;
  }

  .md\:-ml-full {
    margin-left: -100% !important;
  }

  .md\:-mt-2px {
    margin-top: -2px !important;
  }

  .md\:-mr-2px {
    margin-right: -2px !important;
  }

  .md\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .md\:-ml-2px {
    margin-left: -2px !important;
  }

  .md\:max-h-0 {
    max-height: 0 !important;
  }

  .md\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .md\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .md\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .md\:max-h-4 {
    max-height: 1rem !important;
  }

  .md\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .md\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .md\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .md\:max-h-8 {
    max-height: 2rem !important;
  }

  .md\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .md\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .md\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .md\:max-h-12 {
    max-height: 3rem !important;
  }

  .md\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .md\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .md\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .md\:max-h-16 {
    max-height: 4rem !important;
  }

  .md\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .md\:max-h-20 {
    max-height: 5rem !important;
  }

  .md\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .md\:max-h-24 {
    max-height: 6rem !important;
  }

  .md\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .md\:max-h-28 {
    max-height: 7rem !important;
  }

  .md\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .md\:max-h-32 {
    max-height: 8rem !important;
  }

  .md\:max-h-36 {
    max-height: 9rem !important;
  }

  .md\:max-h-40 {
    max-height: 10rem !important;
  }

  .md\:max-h-44 {
    max-height: 11rem !important;
  }

  .md\:max-h-48 {
    max-height: 12rem !important;
  }

  .md\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .md\:max-h-52 {
    max-height: 13rem !important;
  }

  .md\:max-h-56 {
    max-height: 14rem !important;
  }

  .md\:max-h-60 {
    max-height: 15rem !important;
  }

  .md\:max-h-64 {
    max-height: 16rem !important;
  }

  .md\:max-h-72 {
    max-height: 18rem !important;
  }

  .md\:max-h-80 {
    max-height: 20rem !important;
  }

  .md\:max-h-90 {
    max-height: 24rem !important;
  }

  .md\:max-h-96 {
    max-height: 24rem !important;
  }

  .md\:max-h-100 {
    max-height: 25rem !important;
  }

  .md\:max-h-120 {
    max-height: 30rem !important;
  }

  .md\:max-h-128 {
    max-height: 32rem !important;
  }

  .md\:max-h-140 {
    max-height: 35rem !important;
  }

  .md\:max-h-160 {
    max-height: 40rem !important;
  }

  .md\:max-h-180 {
    max-height: 45rem !important;
  }

  .md\:max-h-192 {
    max-height: 48rem !important;
  }

  .md\:max-h-200 {
    max-height: 50rem !important;
  }

  .md\:max-h-240 {
    max-height: 60rem !important;
  }

  .md\:max-h-256 {
    max-height: 64rem !important;
  }

  .md\:max-h-280 {
    max-height: 70rem !important;
  }

  .md\:max-h-320 {
    max-height: 80rem !important;
  }

  .md\:max-h-360 {
    max-height: 90rem !important;
  }

  .md\:max-h-400 {
    max-height: 100rem !important;
  }

  .md\:max-h-480 {
    max-height: 120rem !important;
  }

  .md\:max-h-screen {
    max-height: 100vh !important;
  }

  .md\:max-h-px {
    max-height: 1px !important;
  }

  .md\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .md\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .md\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .md\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .md\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .md\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .md\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .md\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .md\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .md\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .md\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .md\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .md\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .md\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .md\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .md\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .md\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .md\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .md\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .md\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .md\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .md\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .md\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .md\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .md\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .md\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .md\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .md\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .md\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .md\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .md\:max-h-full {
    max-height: 100% !important;
  }

  .md\:max-h-2px {
    max-height: 2px !important;
  }

  .md\:max-h-none {
    max-height: none !important;
  }

  .md\:max-w-0 {
    max-width: 0 !important;
  }

  .md\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .md\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .md\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .md\:max-w-4 {
    max-width: 1rem !important;
  }

  .md\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .md\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .md\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .md\:max-w-8 {
    max-width: 2rem !important;
  }

  .md\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .md\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .md\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .md\:max-w-12 {
    max-width: 3rem !important;
  }

  .md\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .md\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .md\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .md\:max-w-16 {
    max-width: 4rem !important;
  }

  .md\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .md\:max-w-20 {
    max-width: 5rem !important;
  }

  .md\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .md\:max-w-24 {
    max-width: 6rem !important;
  }

  .md\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .md\:max-w-28 {
    max-width: 7rem !important;
  }

  .md\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .md\:max-w-32 {
    max-width: 8rem !important;
  }

  .md\:max-w-36 {
    max-width: 9rem !important;
  }

  .md\:max-w-40 {
    max-width: 10rem !important;
  }

  .md\:max-w-44 {
    max-width: 11rem !important;
  }

  .md\:max-w-48 {
    max-width: 12rem !important;
  }

  .md\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .md\:max-w-52 {
    max-width: 13rem !important;
  }

  .md\:max-w-56 {
    max-width: 14rem !important;
  }

  .md\:max-w-60 {
    max-width: 15rem !important;
  }

  .md\:max-w-64 {
    max-width: 16rem !important;
  }

  .md\:max-w-72 {
    max-width: 18rem !important;
  }

  .md\:max-w-80 {
    max-width: 20rem !important;
  }

  .md\:max-w-90 {
    max-width: 24rem !important;
  }

  .md\:max-w-96 {
    max-width: 24rem !important;
  }

  .md\:max-w-100 {
    max-width: 25rem !important;
  }

  .md\:max-w-120 {
    max-width: 30rem !important;
  }

  .md\:max-w-128 {
    max-width: 32rem !important;
  }

  .md\:max-w-140 {
    max-width: 35rem !important;
  }

  .md\:max-w-160 {
    max-width: 40rem !important;
  }

  .md\:max-w-180 {
    max-width: 45rem !important;
  }

  .md\:max-w-192 {
    max-width: 48rem !important;
  }

  .md\:max-w-200 {
    max-width: 50rem !important;
  }

  .md\:max-w-240 {
    max-width: 60rem !important;
  }

  .md\:max-w-256 {
    max-width: 64rem !important;
  }

  .md\:max-w-280 {
    max-width: 70rem !important;
  }

  .md\:max-w-320 {
    max-width: 80rem !important;
  }

  .md\:max-w-360 {
    max-width: 90rem !important;
  }

  .md\:max-w-400 {
    max-width: 100rem !important;
  }

  .md\:max-w-480 {
    max-width: 120rem !important;
  }

  .md\:max-w-none {
    max-width: none !important;
  }

  .md\:max-w-xs {
    max-width: 20rem !important;
  }

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

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

  .md\:max-w-lg {
    max-width: 32rem !important;
  }

  .md\:max-w-xl {
    max-width: 36rem !important;
  }

  .md\:max-w-2xl {
    max-width: 42rem !important;
  }

  .md\:max-w-3xl {
    max-width: 48rem !important;
  }

  .md\:max-w-4xl {
    max-width: 56rem !important;
  }

  .md\:max-w-5xl {
    max-width: 64rem !important;
  }

  .md\:max-w-6xl {
    max-width: 72rem !important;
  }

  .md\:max-w-7xl {
    max-width: 80rem !important;
  }

  .md\:max-w-full {
    max-width: 100% !important;
  }

  .md\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .md\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .md\:max-w-screen {
    max-width: 100vw !important;
  }

  .md\:max-w-px {
    max-width: 1px !important;
  }

  .md\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .md\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .md\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .md\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .md\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .md\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .md\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .md\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .md\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .md\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .md\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .md\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .md\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .md\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .md\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .md\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .md\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .md\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .md\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .md\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .md\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .md\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .md\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .md\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .md\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .md\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .md\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .md\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .md\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .md\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .md\:max-w-2px {
    max-width: 2px !important;
  }

  .md\:min-h-0 {
    min-height: 0 !important;
  }

  .md\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .md\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .md\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .md\:min-h-4 {
    min-height: 1rem !important;
  }

  .md\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .md\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .md\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .md\:min-h-8 {
    min-height: 2rem !important;
  }

  .md\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .md\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .md\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .md\:min-h-12 {
    min-height: 3rem !important;
  }

  .md\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .md\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .md\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .md\:min-h-16 {
    min-height: 4rem !important;
  }

  .md\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .md\:min-h-20 {
    min-height: 5rem !important;
  }

  .md\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .md\:min-h-24 {
    min-height: 6rem !important;
  }

  .md\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .md\:min-h-28 {
    min-height: 7rem !important;
  }

  .md\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .md\:min-h-32 {
    min-height: 8rem !important;
  }

  .md\:min-h-36 {
    min-height: 9rem !important;
  }

  .md\:min-h-40 {
    min-height: 10rem !important;
  }

  .md\:min-h-44 {
    min-height: 11rem !important;
  }

  .md\:min-h-48 {
    min-height: 12rem !important;
  }

  .md\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .md\:min-h-52 {
    min-height: 13rem !important;
  }

  .md\:min-h-56 {
    min-height: 14rem !important;
  }

  .md\:min-h-60 {
    min-height: 15rem !important;
  }

  .md\:min-h-64 {
    min-height: 16rem !important;
  }

  .md\:min-h-72 {
    min-height: 18rem !important;
  }

  .md\:min-h-80 {
    min-height: 20rem !important;
  }

  .md\:min-h-90 {
    min-height: 24rem !important;
  }

  .md\:min-h-96 {
    min-height: 24rem !important;
  }

  .md\:min-h-100 {
    min-height: 25rem !important;
  }

  .md\:min-h-120 {
    min-height: 30rem !important;
  }

  .md\:min-h-128 {
    min-height: 32rem !important;
  }

  .md\:min-h-140 {
    min-height: 35rem !important;
  }

  .md\:min-h-160 {
    min-height: 40rem !important;
  }

  .md\:min-h-180 {
    min-height: 45rem !important;
  }

  .md\:min-h-192 {
    min-height: 48rem !important;
  }

  .md\:min-h-200 {
    min-height: 50rem !important;
  }

  .md\:min-h-240 {
    min-height: 60rem !important;
  }

  .md\:min-h-256 {
    min-height: 64rem !important;
  }

  .md\:min-h-280 {
    min-height: 70rem !important;
  }

  .md\:min-h-320 {
    min-height: 80rem !important;
  }

  .md\:min-h-360 {
    min-height: 90rem !important;
  }

  .md\:min-h-400 {
    min-height: 100rem !important;
  }

  .md\:min-h-480 {
    min-height: 120rem !important;
  }

  .md\:min-h-full {
    min-height: 100% !important;
  }

  .md\:min-h-screen {
    min-height: 100vh !important;
  }

  .md\:min-h-px {
    min-height: 1px !important;
  }

  .md\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .md\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .md\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .md\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .md\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .md\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .md\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .md\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .md\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .md\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .md\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .md\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .md\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .md\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .md\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .md\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .md\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .md\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .md\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .md\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .md\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .md\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .md\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .md\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .md\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .md\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .md\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .md\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .md\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .md\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .md\:min-h-2px {
    min-height: 2px !important;
  }

  .md\:min-w-0 {
    min-width: 0 !important;
  }

  .md\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .md\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .md\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .md\:min-w-4 {
    min-width: 1rem !important;
  }

  .md\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .md\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .md\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .md\:min-w-8 {
    min-width: 2rem !important;
  }

  .md\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .md\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .md\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .md\:min-w-12 {
    min-width: 3rem !important;
  }

  .md\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .md\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .md\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .md\:min-w-16 {
    min-width: 4rem !important;
  }

  .md\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .md\:min-w-20 {
    min-width: 5rem !important;
  }

  .md\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .md\:min-w-24 {
    min-width: 6rem !important;
  }

  .md\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .md\:min-w-28 {
    min-width: 7rem !important;
  }

  .md\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .md\:min-w-32 {
    min-width: 8rem !important;
  }

  .md\:min-w-36 {
    min-width: 9rem !important;
  }

  .md\:min-w-40 {
    min-width: 10rem !important;
  }

  .md\:min-w-44 {
    min-width: 11rem !important;
  }

  .md\:min-w-48 {
    min-width: 12rem !important;
  }

  .md\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .md\:min-w-52 {
    min-width: 13rem !important;
  }

  .md\:min-w-56 {
    min-width: 14rem !important;
  }

  .md\:min-w-60 {
    min-width: 15rem !important;
  }

  .md\:min-w-64 {
    min-width: 16rem !important;
  }

  .md\:min-w-72 {
    min-width: 18rem !important;
  }

  .md\:min-w-80 {
    min-width: 20rem !important;
  }

  .md\:min-w-90 {
    min-width: 24rem !important;
  }

  .md\:min-w-96 {
    min-width: 24rem !important;
  }

  .md\:min-w-100 {
    min-width: 25rem !important;
  }

  .md\:min-w-120 {
    min-width: 30rem !important;
  }

  .md\:min-w-128 {
    min-width: 32rem !important;
  }

  .md\:min-w-140 {
    min-width: 35rem !important;
  }

  .md\:min-w-160 {
    min-width: 40rem !important;
  }

  .md\:min-w-180 {
    min-width: 45rem !important;
  }

  .md\:min-w-192 {
    min-width: 48rem !important;
  }

  .md\:min-w-200 {
    min-width: 50rem !important;
  }

  .md\:min-w-240 {
    min-width: 60rem !important;
  }

  .md\:min-w-256 {
    min-width: 64rem !important;
  }

  .md\:min-w-280 {
    min-width: 70rem !important;
  }

  .md\:min-w-320 {
    min-width: 80rem !important;
  }

  .md\:min-w-360 {
    min-width: 90rem !important;
  }

  .md\:min-w-400 {
    min-width: 100rem !important;
  }

  .md\:min-w-480 {
    min-width: 120rem !important;
  }

  .md\:min-w-full {
    min-width: 100% !important;
  }

  .md\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .md\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .md\:min-w-screen {
    min-width: 100vw !important;
  }

  .md\:min-w-px {
    min-width: 1px !important;
  }

  .md\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .md\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .md\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .md\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .md\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .md\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .md\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .md\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .md\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .md\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .md\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .md\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .md\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .md\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .md\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .md\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .md\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .md\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .md\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .md\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .md\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .md\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .md\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .md\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .md\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .md\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .md\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .md\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .md\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .md\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .md\:min-w-2px {
    min-width: 2px !important;
  }

  .md\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .md\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .md\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .md\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .md\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .md\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .md\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .md\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .md\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .md\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .md\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .md\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .md\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .md\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .md\:opacity-0 {
    opacity: 0 !important;
  }

  .md\:opacity-12 {
    opacity: 0.12 !important;
  }

  .md\:opacity-25 {
    opacity: 0.25 !important;
  }

  .md\:opacity-38 {
    opacity: 0.38 !important;
  }

  .md\:opacity-50 {
    opacity: 0.5 !important;
  }

  .md\:opacity-54 {
    opacity: 0.54 !important;
  }

  .md\:opacity-70 {
    opacity: 0.7 !important;
  }

  .md\:opacity-75 {
    opacity: 0.75 !important;
  }

  .md\:opacity-84 {
    opacity: 0.84 !important;
  }

  .md\:opacity-100 {
    opacity: 1 !important;
  }

  .md\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .md\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .md\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .md\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .md\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .md\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .md\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .md\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .md\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .md\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .md\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .md\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .md\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .md\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .md\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .md\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .md\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .md\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .md\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .md\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .md\:overflow-auto {
    overflow: auto !important;
  }

  .md\:overflow-hidden {
    overflow: hidden !important;
  }

  .md\:overflow-visible {
    overflow: visible !important;
  }

  .md\:overflow-scroll {
    overflow: scroll !important;
  }

  .md\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .md\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .md\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .md\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .md\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .md\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .md\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .md\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .md\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .md\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .md\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .md\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .md\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .md\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .md\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .md\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .md\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .md\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .md\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .md\:p-0 {
    padding: 0 !important;
  }

  .md\:p-1 {
    padding: 0.25rem !important;
  }

  .md\:p-2 {
    padding: 0.5rem !important;
  }

  .md\:p-3 {
    padding: 0.75rem !important;
  }

  .md\:p-4 {
    padding: 1rem !important;
  }

  .md\:p-5 {
    padding: 1.25rem !important;
  }

  .md\:p-6 {
    padding: 1.5rem !important;
  }

  .md\:p-7 {
    padding: 1.75rem !important;
  }

  .md\:p-8 {
    padding: 2rem !important;
  }

  .md\:p-9 {
    padding: 2.25rem !important;
  }

  .md\:p-10 {
    padding: 2.5rem !important;
  }

  .md\:p-11 {
    padding: 2.75rem !important;
  }

  .md\:p-12 {
    padding: 3rem !important;
  }

  .md\:p-13 {
    padding: 3.25rem !important;
  }

  .md\:p-14 {
    padding: 3.5rem !important;
  }

  .md\:p-15 {
    padding: 3.75rem !important;
  }

  .md\:p-16 {
    padding: 4rem !important;
  }

  .md\:p-18 {
    padding: 4.5rem !important;
  }

  .md\:p-20 {
    padding: 5rem !important;
  }

  .md\:p-22 {
    padding: 5.5rem !important;
  }

  .md\:p-24 {
    padding: 6rem !important;
  }

  .md\:p-26 {
    padding: 6.5rem !important;
  }

  .md\:p-28 {
    padding: 7rem !important;
  }

  .md\:p-30 {
    padding: 7.5rem !important;
  }

  .md\:p-32 {
    padding: 8rem !important;
  }

  .md\:p-36 {
    padding: 9rem !important;
  }

  .md\:p-40 {
    padding: 10rem !important;
  }

  .md\:p-44 {
    padding: 11rem !important;
  }

  .md\:p-48 {
    padding: 12rem !important;
  }

  .md\:p-50 {
    padding: 12.5rem !important;
  }

  .md\:p-52 {
    padding: 13rem !important;
  }

  .md\:p-56 {
    padding: 14rem !important;
  }

  .md\:p-60 {
    padding: 15rem !important;
  }

  .md\:p-64 {
    padding: 16rem !important;
  }

  .md\:p-72 {
    padding: 18rem !important;
  }

  .md\:p-80 {
    padding: 20rem !important;
  }

  .md\:p-90 {
    padding: 24rem !important;
  }

  .md\:p-96 {
    padding: 24rem !important;
  }

  .md\:p-100 {
    padding: 25rem !important;
  }

  .md\:p-120 {
    padding: 30rem !important;
  }

  .md\:p-128 {
    padding: 32rem !important;
  }

  .md\:p-140 {
    padding: 35rem !important;
  }

  .md\:p-160 {
    padding: 40rem !important;
  }

  .md\:p-180 {
    padding: 45rem !important;
  }

  .md\:p-192 {
    padding: 48rem !important;
  }

  .md\:p-200 {
    padding: 50rem !important;
  }

  .md\:p-240 {
    padding: 60rem !important;
  }

  .md\:p-256 {
    padding: 64rem !important;
  }

  .md\:p-280 {
    padding: 70rem !important;
  }

  .md\:p-320 {
    padding: 80rem !important;
  }

  .md\:p-360 {
    padding: 90rem !important;
  }

  .md\:p-400 {
    padding: 100rem !important;
  }

  .md\:p-480 {
    padding: 120rem !important;
  }

  .md\:p-px {
    padding: 1px !important;
  }

  .md\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .md\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .md\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .md\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .md\:p-1\/2 {
    padding: 50% !important;
  }

  .md\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .md\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .md\:p-1\/4 {
    padding: 25% !important;
  }

  .md\:p-2\/4 {
    padding: 50% !important;
  }

  .md\:p-3\/4 {
    padding: 75% !important;
  }

  .md\:p-1\/5 {
    padding: 20% !important;
  }

  .md\:p-2\/5 {
    padding: 40% !important;
  }

  .md\:p-3\/5 {
    padding: 60% !important;
  }

  .md\:p-4\/5 {
    padding: 80% !important;
  }

  .md\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .md\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .md\:p-3\/6 {
    padding: 50% !important;
  }

  .md\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .md\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .md\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .md\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .md\:p-3\/12 {
    padding: 25% !important;
  }

  .md\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .md\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .md\:p-6\/12 {
    padding: 50% !important;
  }

  .md\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .md\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .md\:p-9\/12 {
    padding: 75% !important;
  }

  .md\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .md\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .md\:p-full {
    padding: 100% !important;
  }

  .md\:p-2px {
    padding: 2px !important;
  }

  .md\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .md\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .md\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .md\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .md\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .md\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .md\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .md\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .md\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .md\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .md\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .md\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .md\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .md\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .md\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .md\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .md\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .md\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .md\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .md\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .md\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .md\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .md\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .md\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .md\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .md\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .md\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .md\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .md\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .md\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .md\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .md\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .md\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .md\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .md\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .md\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .md\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .md\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .md\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .md\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .md\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .md\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .md\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .md\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .md\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .md\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .md\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .md\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .md\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .md\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .md\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .md\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .md\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .md\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .md\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .md\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .md\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .md\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .md\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .md\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .md\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .md\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .md\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .md\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .md\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .md\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .md\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .md\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .md\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .md\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .md\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .md\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .md\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .md\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .md\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .md\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .md\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .md\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .md\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .md\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .md\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .md\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .md\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .md\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .md\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .md\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .md\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .md\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .md\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .md\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .md\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .md\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .md\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .md\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .md\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .md\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .md\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .md\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .md\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .md\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .md\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .md\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .md\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .md\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .md\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .md\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .md\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .md\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .md\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .md\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .md\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .md\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .md\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .md\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .md\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .md\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .md\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .md\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .md\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .md\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .md\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .md\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .md\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .md\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .md\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .md\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .md\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .md\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .md\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .md\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .md\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .md\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .md\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .md\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .md\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .md\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .md\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .md\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .md\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .md\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .md\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .md\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .md\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .md\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .md\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .md\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .md\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .md\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .md\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .md\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .md\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .md\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .md\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .md\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .md\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .md\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .md\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .md\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .md\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .md\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .md\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .md\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .md\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .md\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .md\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .md\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .md\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .md\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .md\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .md\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .md\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .md\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .md\:pt-0 {
    padding-top: 0 !important;
  }

  .md\:pr-0 {
    padding-right: 0 !important;
  }

  .md\:pb-0 {
    padding-bottom: 0 !important;
  }

  .md\:pl-0 {
    padding-left: 0 !important;
  }

  .md\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .md\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .md\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .md\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .md\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .md\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .md\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .md\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .md\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .md\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .md\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .md\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .md\:pt-4 {
    padding-top: 1rem !important;
  }

  .md\:pr-4 {
    padding-right: 1rem !important;
  }

  .md\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .md\:pl-4 {
    padding-left: 1rem !important;
  }

  .md\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .md\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .md\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .md\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .md\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .md\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .md\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .md\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .md\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .md\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .md\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .md\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .md\:pt-8 {
    padding-top: 2rem !important;
  }

  .md\:pr-8 {
    padding-right: 2rem !important;
  }

  .md\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .md\:pl-8 {
    padding-left: 2rem !important;
  }

  .md\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .md\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .md\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .md\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .md\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .md\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .md\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .md\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .md\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .md\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .md\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .md\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .md\:pt-12 {
    padding-top: 3rem !important;
  }

  .md\:pr-12 {
    padding-right: 3rem !important;
  }

  .md\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .md\:pl-12 {
    padding-left: 3rem !important;
  }

  .md\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .md\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .md\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .md\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .md\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .md\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .md\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .md\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .md\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .md\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .md\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .md\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .md\:pt-16 {
    padding-top: 4rem !important;
  }

  .md\:pr-16 {
    padding-right: 4rem !important;
  }

  .md\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .md\:pl-16 {
    padding-left: 4rem !important;
  }

  .md\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .md\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .md\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .md\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .md\:pt-20 {
    padding-top: 5rem !important;
  }

  .md\:pr-20 {
    padding-right: 5rem !important;
  }

  .md\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .md\:pl-20 {
    padding-left: 5rem !important;
  }

  .md\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .md\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .md\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .md\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .md\:pt-24 {
    padding-top: 6rem !important;
  }

  .md\:pr-24 {
    padding-right: 6rem !important;
  }

  .md\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .md\:pl-24 {
    padding-left: 6rem !important;
  }

  .md\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .md\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .md\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .md\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .md\:pt-28 {
    padding-top: 7rem !important;
  }

  .md\:pr-28 {
    padding-right: 7rem !important;
  }

  .md\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .md\:pl-28 {
    padding-left: 7rem !important;
  }

  .md\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .md\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .md\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .md\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .md\:pt-32 {
    padding-top: 8rem !important;
  }

  .md\:pr-32 {
    padding-right: 8rem !important;
  }

  .md\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .md\:pl-32 {
    padding-left: 8rem !important;
  }

  .md\:pt-36 {
    padding-top: 9rem !important;
  }

  .md\:pr-36 {
    padding-right: 9rem !important;
  }

  .md\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .md\:pl-36 {
    padding-left: 9rem !important;
  }

  .md\:pt-40 {
    padding-top: 10rem !important;
  }

  .md\:pr-40 {
    padding-right: 10rem !important;
  }

  .md\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .md\:pl-40 {
    padding-left: 10rem !important;
  }

  .md\:pt-44 {
    padding-top: 11rem !important;
  }

  .md\:pr-44 {
    padding-right: 11rem !important;
  }

  .md\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .md\:pl-44 {
    padding-left: 11rem !important;
  }

  .md\:pt-48 {
    padding-top: 12rem !important;
  }

  .md\:pr-48 {
    padding-right: 12rem !important;
  }

  .md\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .md\:pl-48 {
    padding-left: 12rem !important;
  }

  .md\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .md\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .md\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .md\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .md\:pt-52 {
    padding-top: 13rem !important;
  }

  .md\:pr-52 {
    padding-right: 13rem !important;
  }

  .md\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .md\:pl-52 {
    padding-left: 13rem !important;
  }

  .md\:pt-56 {
    padding-top: 14rem !important;
  }

  .md\:pr-56 {
    padding-right: 14rem !important;
  }

  .md\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .md\:pl-56 {
    padding-left: 14rem !important;
  }

  .md\:pt-60 {
    padding-top: 15rem !important;
  }

  .md\:pr-60 {
    padding-right: 15rem !important;
  }

  .md\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .md\:pl-60 {
    padding-left: 15rem !important;
  }

  .md\:pt-64 {
    padding-top: 16rem !important;
  }

  .md\:pr-64 {
    padding-right: 16rem !important;
  }

  .md\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .md\:pl-64 {
    padding-left: 16rem !important;
  }

  .md\:pt-72 {
    padding-top: 18rem !important;
  }

  .md\:pr-72 {
    padding-right: 18rem !important;
  }

  .md\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .md\:pl-72 {
    padding-left: 18rem !important;
  }

  .md\:pt-80 {
    padding-top: 20rem !important;
  }

  .md\:pr-80 {
    padding-right: 20rem !important;
  }

  .md\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .md\:pl-80 {
    padding-left: 20rem !important;
  }

  .md\:pt-90 {
    padding-top: 24rem !important;
  }

  .md\:pr-90 {
    padding-right: 24rem !important;
  }

  .md\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .md\:pl-90 {
    padding-left: 24rem !important;
  }

  .md\:pt-96 {
    padding-top: 24rem !important;
  }

  .md\:pr-96 {
    padding-right: 24rem !important;
  }

  .md\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .md\:pl-96 {
    padding-left: 24rem !important;
  }

  .md\:pt-100 {
    padding-top: 25rem !important;
  }

  .md\:pr-100 {
    padding-right: 25rem !important;
  }

  .md\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .md\:pl-100 {
    padding-left: 25rem !important;
  }

  .md\:pt-120 {
    padding-top: 30rem !important;
  }

  .md\:pr-120 {
    padding-right: 30rem !important;
  }

  .md\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .md\:pl-120 {
    padding-left: 30rem !important;
  }

  .md\:pt-128 {
    padding-top: 32rem !important;
  }

  .md\:pr-128 {
    padding-right: 32rem !important;
  }

  .md\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .md\:pl-128 {
    padding-left: 32rem !important;
  }

  .md\:pt-140 {
    padding-top: 35rem !important;
  }

  .md\:pr-140 {
    padding-right: 35rem !important;
  }

  .md\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .md\:pl-140 {
    padding-left: 35rem !important;
  }

  .md\:pt-160 {
    padding-top: 40rem !important;
  }

  .md\:pr-160 {
    padding-right: 40rem !important;
  }

  .md\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .md\:pl-160 {
    padding-left: 40rem !important;
  }

  .md\:pt-180 {
    padding-top: 45rem !important;
  }

  .md\:pr-180 {
    padding-right: 45rem !important;
  }

  .md\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .md\:pl-180 {
    padding-left: 45rem !important;
  }

  .md\:pt-192 {
    padding-top: 48rem !important;
  }

  .md\:pr-192 {
    padding-right: 48rem !important;
  }

  .md\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .md\:pl-192 {
    padding-left: 48rem !important;
  }

  .md\:pt-200 {
    padding-top: 50rem !important;
  }

  .md\:pr-200 {
    padding-right: 50rem !important;
  }

  .md\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .md\:pl-200 {
    padding-left: 50rem !important;
  }

  .md\:pt-240 {
    padding-top: 60rem !important;
  }

  .md\:pr-240 {
    padding-right: 60rem !important;
  }

  .md\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .md\:pl-240 {
    padding-left: 60rem !important;
  }

  .md\:pt-256 {
    padding-top: 64rem !important;
  }

  .md\:pr-256 {
    padding-right: 64rem !important;
  }

  .md\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .md\:pl-256 {
    padding-left: 64rem !important;
  }

  .md\:pt-280 {
    padding-top: 70rem !important;
  }

  .md\:pr-280 {
    padding-right: 70rem !important;
  }

  .md\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .md\:pl-280 {
    padding-left: 70rem !important;
  }

  .md\:pt-320 {
    padding-top: 80rem !important;
  }

  .md\:pr-320 {
    padding-right: 80rem !important;
  }

  .md\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .md\:pl-320 {
    padding-left: 80rem !important;
  }

  .md\:pt-360 {
    padding-top: 90rem !important;
  }

  .md\:pr-360 {
    padding-right: 90rem !important;
  }

  .md\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .md\:pl-360 {
    padding-left: 90rem !important;
  }

  .md\:pt-400 {
    padding-top: 100rem !important;
  }

  .md\:pr-400 {
    padding-right: 100rem !important;
  }

  .md\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .md\:pl-400 {
    padding-left: 100rem !important;
  }

  .md\:pt-480 {
    padding-top: 120rem !important;
  }

  .md\:pr-480 {
    padding-right: 120rem !important;
  }

  .md\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .md\:pl-480 {
    padding-left: 120rem !important;
  }

  .md\:pt-px {
    padding-top: 1px !important;
  }

  .md\:pr-px {
    padding-right: 1px !important;
  }

  .md\:pb-px {
    padding-bottom: 1px !important;
  }

  .md\:pl-px {
    padding-left: 1px !important;
  }

  .md\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .md\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .md\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .md\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .md\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .md\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .md\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .md\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .md\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .md\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .md\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .md\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .md\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .md\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .md\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .md\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .md\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .md\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .md\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .md\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .md\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .md\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .md\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .md\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .md\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .md\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .md\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .md\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .md\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .md\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .md\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .md\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .md\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .md\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .md\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .md\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .md\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .md\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .md\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .md\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .md\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .md\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .md\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .md\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .md\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .md\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .md\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .md\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .md\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .md\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .md\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .md\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .md\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .md\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .md\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .md\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .md\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .md\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .md\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .md\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .md\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .md\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .md\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .md\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .md\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .md\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .md\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .md\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .md\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .md\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .md\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .md\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .md\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .md\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .md\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .md\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .md\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .md\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .md\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .md\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .md\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .md\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .md\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .md\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .md\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .md\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .md\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .md\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .md\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .md\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .md\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .md\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .md\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .md\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .md\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .md\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .md\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .md\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .md\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .md\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .md\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .md\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .md\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .md\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .md\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .md\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .md\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .md\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .md\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .md\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .md\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .md\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .md\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .md\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .md\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .md\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .md\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .md\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .md\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .md\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .md\:pt-full {
    padding-top: 100% !important;
  }

  .md\:pr-full {
    padding-right: 100% !important;
  }

  .md\:pb-full {
    padding-bottom: 100% !important;
  }

  .md\:pl-full {
    padding-left: 100% !important;
  }

  .md\:pt-2px {
    padding-top: 2px !important;
  }

  .md\:pr-2px {
    padding-right: 2px !important;
  }

  .md\:pb-2px {
    padding-bottom: 2px !important;
  }

  .md\:pl-2px {
    padding-left: 2px !important;
  }

  .md\:static {
    position: static !important;
  }

  .md\:fixed {
    position: fixed !important;
  }

  .md\:absolute {
    position: absolute !important;
  }

  .md\:relative {
    position: relative !important;
  }

  .md\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .md\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .md\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .md\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .md\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .md\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .md\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .md\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .md\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .md\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .md\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .md\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .md\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .md\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .md\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .md\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .md\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .md\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .md\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .md\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .md\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .md\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .md\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .md\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .md\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .md\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .md\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .md\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .md\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .md\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .md\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .md\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .md\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .md\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .md\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .md\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .md\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .md\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .md\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .md\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .md\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .md\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .md\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .md\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .md\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .md\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .md\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .md\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .md\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .md\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .md\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .md\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .md\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .md\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .md\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .md\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .md\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .md\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .md\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .md\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .md\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .md\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .md\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .md\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .md\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .md\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .md\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .md\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .md\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .md\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .md\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .md\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .md\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .md\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .md\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .md\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .md\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .md\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .md\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .md\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .md\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .md\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .md\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .md\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .md\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .md\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .md\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .md\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .md\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .md\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .md\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .md\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .md\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .md\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .md\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .md\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .md\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .md\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .md\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .md\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .md\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .md\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .md\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .md\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .md\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .md\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .md\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .md\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .md\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .md\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .md\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .md\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .md\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .md\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .md\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .md\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .md\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .md\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .md\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .md\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .md\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .md\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .md\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .md\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .md\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .md\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .md\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .md\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .md\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .md\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .md\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .md\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .md\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .md\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .md\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .md\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .md\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .md\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .md\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .md\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .md\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .md\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .md\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .md\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .md\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .md\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .md\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .md\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .md\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .md\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .md\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .md\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .md\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .md\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .md\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .md\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .md\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .md\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .md\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .md\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .md\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .md\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .md\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .md\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .md\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .md\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .md\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .md\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .md\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .md\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .md\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .md\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .md\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .md\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .md\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .md\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .md\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .md\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .md\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .md\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .md\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .md\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .md\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .md\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .md\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .md\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .md\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .md\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .md\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .md\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .md\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .md\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .md\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .md\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .md\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .md\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .md\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .md\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .md\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .md\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .md\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .md\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .md\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .md\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .md\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .md\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .md\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .md\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .md\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .md\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .md\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .md\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .md\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .md\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .md\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .md\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .md\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .md\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .md\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .md\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .md\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .md\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .md\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .md\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .md\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .md\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .md\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .md\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .md\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .md\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .md\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .md\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .md\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .md\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .md\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .md\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .md\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .md\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .md\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .md\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .md\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .md\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .md\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .md\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .md\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .md\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .md\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .md\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .md\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .md\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .md\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .md\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .md\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .md\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .md\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .md\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .md\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .md\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .md\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .md\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .md\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .md\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .md\:top-0 {
    top: 0 !important;
  }

  .md\:right-0 {
    right: 0 !important;
  }

  .md\:bottom-0 {
    bottom: 0 !important;
  }

  .md\:left-0 {
    left: 0 !important;
  }

  .md\:top-1 {
    top: 0.25rem !important;
  }

  .md\:right-1 {
    right: 0.25rem !important;
  }

  .md\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .md\:left-1 {
    left: 0.25rem !important;
  }

  .md\:top-2 {
    top: 0.5rem !important;
  }

  .md\:right-2 {
    right: 0.5rem !important;
  }

  .md\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .md\:left-2 {
    left: 0.5rem !important;
  }

  .md\:top-3 {
    top: 0.75rem !important;
  }

  .md\:right-3 {
    right: 0.75rem !important;
  }

  .md\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .md\:left-3 {
    left: 0.75rem !important;
  }

  .md\:top-4 {
    top: 1rem !important;
  }

  .md\:right-4 {
    right: 1rem !important;
  }

  .md\:bottom-4 {
    bottom: 1rem !important;
  }

  .md\:left-4 {
    left: 1rem !important;
  }

  .md\:top-5 {
    top: 1.25rem !important;
  }

  .md\:right-5 {
    right: 1.25rem !important;
  }

  .md\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .md\:left-5 {
    left: 1.25rem !important;
  }

  .md\:top-6 {
    top: 1.5rem !important;
  }

  .md\:right-6 {
    right: 1.5rem !important;
  }

  .md\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .md\:left-6 {
    left: 1.5rem !important;
  }

  .md\:top-7 {
    top: 1.75rem !important;
  }

  .md\:right-7 {
    right: 1.75rem !important;
  }

  .md\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .md\:left-7 {
    left: 1.75rem !important;
  }

  .md\:top-8 {
    top: 2rem !important;
  }

  .md\:right-8 {
    right: 2rem !important;
  }

  .md\:bottom-8 {
    bottom: 2rem !important;
  }

  .md\:left-8 {
    left: 2rem !important;
  }

  .md\:top-9 {
    top: 2.25rem !important;
  }

  .md\:right-9 {
    right: 2.25rem !important;
  }

  .md\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .md\:left-9 {
    left: 2.25rem !important;
  }

  .md\:top-10 {
    top: 2.5rem !important;
  }

  .md\:right-10 {
    right: 2.5rem !important;
  }

  .md\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .md\:left-10 {
    left: 2.5rem !important;
  }

  .md\:top-11 {
    top: 2.75rem !important;
  }

  .md\:right-11 {
    right: 2.75rem !important;
  }

  .md\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .md\:left-11 {
    left: 2.75rem !important;
  }

  .md\:top-12 {
    top: 3rem !important;
  }

  .md\:right-12 {
    right: 3rem !important;
  }

  .md\:bottom-12 {
    bottom: 3rem !important;
  }

  .md\:left-12 {
    left: 3rem !important;
  }

  .md\:top-13 {
    top: 3.25rem !important;
  }

  .md\:right-13 {
    right: 3.25rem !important;
  }

  .md\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .md\:left-13 {
    left: 3.25rem !important;
  }

  .md\:top-14 {
    top: 3.5rem !important;
  }

  .md\:right-14 {
    right: 3.5rem !important;
  }

  .md\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .md\:left-14 {
    left: 3.5rem !important;
  }

  .md\:top-15 {
    top: 3.75rem !important;
  }

  .md\:right-15 {
    right: 3.75rem !important;
  }

  .md\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .md\:left-15 {
    left: 3.75rem !important;
  }

  .md\:top-16 {
    top: 4rem !important;
  }

  .md\:right-16 {
    right: 4rem !important;
  }

  .md\:bottom-16 {
    bottom: 4rem !important;
  }

  .md\:left-16 {
    left: 4rem !important;
  }

  .md\:top-18 {
    top: 4.5rem !important;
  }

  .md\:right-18 {
    right: 4.5rem !important;
  }

  .md\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .md\:left-18 {
    left: 4.5rem !important;
  }

  .md\:top-20 {
    top: 5rem !important;
  }

  .md\:right-20 {
    right: 5rem !important;
  }

  .md\:bottom-20 {
    bottom: 5rem !important;
  }

  .md\:left-20 {
    left: 5rem !important;
  }

  .md\:top-22 {
    top: 5.5rem !important;
  }

  .md\:right-22 {
    right: 5.5rem !important;
  }

  .md\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .md\:left-22 {
    left: 5.5rem !important;
  }

  .md\:top-24 {
    top: 6rem !important;
  }

  .md\:right-24 {
    right: 6rem !important;
  }

  .md\:bottom-24 {
    bottom: 6rem !important;
  }

  .md\:left-24 {
    left: 6rem !important;
  }

  .md\:top-26 {
    top: 6.5rem !important;
  }

  .md\:right-26 {
    right: 6.5rem !important;
  }

  .md\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .md\:left-26 {
    left: 6.5rem !important;
  }

  .md\:top-28 {
    top: 7rem !important;
  }

  .md\:right-28 {
    right: 7rem !important;
  }

  .md\:bottom-28 {
    bottom: 7rem !important;
  }

  .md\:left-28 {
    left: 7rem !important;
  }

  .md\:top-30 {
    top: 7.5rem !important;
  }

  .md\:right-30 {
    right: 7.5rem !important;
  }

  .md\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .md\:left-30 {
    left: 7.5rem !important;
  }

  .md\:top-32 {
    top: 8rem !important;
  }

  .md\:right-32 {
    right: 8rem !important;
  }

  .md\:bottom-32 {
    bottom: 8rem !important;
  }

  .md\:left-32 {
    left: 8rem !important;
  }

  .md\:top-36 {
    top: 9rem !important;
  }

  .md\:right-36 {
    right: 9rem !important;
  }

  .md\:bottom-36 {
    bottom: 9rem !important;
  }

  .md\:left-36 {
    left: 9rem !important;
  }

  .md\:top-40 {
    top: 10rem !important;
  }

  .md\:right-40 {
    right: 10rem !important;
  }

  .md\:bottom-40 {
    bottom: 10rem !important;
  }

  .md\:left-40 {
    left: 10rem !important;
  }

  .md\:top-44 {
    top: 11rem !important;
  }

  .md\:right-44 {
    right: 11rem !important;
  }

  .md\:bottom-44 {
    bottom: 11rem !important;
  }

  .md\:left-44 {
    left: 11rem !important;
  }

  .md\:top-48 {
    top: 12rem !important;
  }

  .md\:right-48 {
    right: 12rem !important;
  }

  .md\:bottom-48 {
    bottom: 12rem !important;
  }

  .md\:left-48 {
    left: 12rem !important;
  }

  .md\:top-50 {
    top: 12.5rem !important;
  }

  .md\:right-50 {
    right: 12.5rem !important;
  }

  .md\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .md\:left-50 {
    left: 12.5rem !important;
  }

  .md\:top-52 {
    top: 13rem !important;
  }

  .md\:right-52 {
    right: 13rem !important;
  }

  .md\:bottom-52 {
    bottom: 13rem !important;
  }

  .md\:left-52 {
    left: 13rem !important;
  }

  .md\:top-56 {
    top: 14rem !important;
  }

  .md\:right-56 {
    right: 14rem !important;
  }

  .md\:bottom-56 {
    bottom: 14rem !important;
  }

  .md\:left-56 {
    left: 14rem !important;
  }

  .md\:top-60 {
    top: 15rem !important;
  }

  .md\:right-60 {
    right: 15rem !important;
  }

  .md\:bottom-60 {
    bottom: 15rem !important;
  }

  .md\:left-60 {
    left: 15rem !important;
  }

  .md\:top-64 {
    top: 16rem !important;
  }

  .md\:right-64 {
    right: 16rem !important;
  }

  .md\:bottom-64 {
    bottom: 16rem !important;
  }

  .md\:left-64 {
    left: 16rem !important;
  }

  .md\:top-72 {
    top: 18rem !important;
  }

  .md\:right-72 {
    right: 18rem !important;
  }

  .md\:bottom-72 {
    bottom: 18rem !important;
  }

  .md\:left-72 {
    left: 18rem !important;
  }

  .md\:top-80 {
    top: 20rem !important;
  }

  .md\:right-80 {
    right: 20rem !important;
  }

  .md\:bottom-80 {
    bottom: 20rem !important;
  }

  .md\:left-80 {
    left: 20rem !important;
  }

  .md\:top-90 {
    top: 24rem !important;
  }

  .md\:right-90 {
    right: 24rem !important;
  }

  .md\:bottom-90 {
    bottom: 24rem !important;
  }

  .md\:left-90 {
    left: 24rem !important;
  }

  .md\:top-96 {
    top: 24rem !important;
  }

  .md\:right-96 {
    right: 24rem !important;
  }

  .md\:bottom-96 {
    bottom: 24rem !important;
  }

  .md\:left-96 {
    left: 24rem !important;
  }

  .md\:top-100 {
    top: 25rem !important;
  }

  .md\:right-100 {
    right: 25rem !important;
  }

  .md\:bottom-100 {
    bottom: 25rem !important;
  }

  .md\:left-100 {
    left: 25rem !important;
  }

  .md\:top-120 {
    top: 30rem !important;
  }

  .md\:right-120 {
    right: 30rem !important;
  }

  .md\:bottom-120 {
    bottom: 30rem !important;
  }

  .md\:left-120 {
    left: 30rem !important;
  }

  .md\:top-128 {
    top: 32rem !important;
  }

  .md\:right-128 {
    right: 32rem !important;
  }

  .md\:bottom-128 {
    bottom: 32rem !important;
  }

  .md\:left-128 {
    left: 32rem !important;
  }

  .md\:top-140 {
    top: 35rem !important;
  }

  .md\:right-140 {
    right: 35rem !important;
  }

  .md\:bottom-140 {
    bottom: 35rem !important;
  }

  .md\:left-140 {
    left: 35rem !important;
  }

  .md\:top-160 {
    top: 40rem !important;
  }

  .md\:right-160 {
    right: 40rem !important;
  }

  .md\:bottom-160 {
    bottom: 40rem !important;
  }

  .md\:left-160 {
    left: 40rem !important;
  }

  .md\:top-180 {
    top: 45rem !important;
  }

  .md\:right-180 {
    right: 45rem !important;
  }

  .md\:bottom-180 {
    bottom: 45rem !important;
  }

  .md\:left-180 {
    left: 45rem !important;
  }

  .md\:top-192 {
    top: 48rem !important;
  }

  .md\:right-192 {
    right: 48rem !important;
  }

  .md\:bottom-192 {
    bottom: 48rem !important;
  }

  .md\:left-192 {
    left: 48rem !important;
  }

  .md\:top-200 {
    top: 50rem !important;
  }

  .md\:right-200 {
    right: 50rem !important;
  }

  .md\:bottom-200 {
    bottom: 50rem !important;
  }

  .md\:left-200 {
    left: 50rem !important;
  }

  .md\:top-240 {
    top: 60rem !important;
  }

  .md\:right-240 {
    right: 60rem !important;
  }

  .md\:bottom-240 {
    bottom: 60rem !important;
  }

  .md\:left-240 {
    left: 60rem !important;
  }

  .md\:top-256 {
    top: 64rem !important;
  }

  .md\:right-256 {
    right: 64rem !important;
  }

  .md\:bottom-256 {
    bottom: 64rem !important;
  }

  .md\:left-256 {
    left: 64rem !important;
  }

  .md\:top-280 {
    top: 70rem !important;
  }

  .md\:right-280 {
    right: 70rem !important;
  }

  .md\:bottom-280 {
    bottom: 70rem !important;
  }

  .md\:left-280 {
    left: 70rem !important;
  }

  .md\:top-320 {
    top: 80rem !important;
  }

  .md\:right-320 {
    right: 80rem !important;
  }

  .md\:bottom-320 {
    bottom: 80rem !important;
  }

  .md\:left-320 {
    left: 80rem !important;
  }

  .md\:top-360 {
    top: 90rem !important;
  }

  .md\:right-360 {
    right: 90rem !important;
  }

  .md\:bottom-360 {
    bottom: 90rem !important;
  }

  .md\:left-360 {
    left: 90rem !important;
  }

  .md\:top-400 {
    top: 100rem !important;
  }

  .md\:right-400 {
    right: 100rem !important;
  }

  .md\:bottom-400 {
    bottom: 100rem !important;
  }

  .md\:left-400 {
    left: 100rem !important;
  }

  .md\:top-480 {
    top: 120rem !important;
  }

  .md\:right-480 {
    right: 120rem !important;
  }

  .md\:bottom-480 {
    bottom: 120rem !important;
  }

  .md\:left-480 {
    left: 120rem !important;
  }

  .md\:top-auto {
    top: auto !important;
  }

  .md\:right-auto {
    right: auto !important;
  }

  .md\:bottom-auto {
    bottom: auto !important;
  }

  .md\:left-auto {
    left: auto !important;
  }

  .md\:top-px {
    top: 1px !important;
  }

  .md\:right-px {
    right: 1px !important;
  }

  .md\:bottom-px {
    bottom: 1px !important;
  }

  .md\:left-px {
    left: 1px !important;
  }

  .md\:top-0\.5 {
    top: 0.125rem !important;
  }

  .md\:right-0\.5 {
    right: 0.125rem !important;
  }

  .md\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .md\:left-0\.5 {
    left: 0.125rem !important;
  }

  .md\:top-1\.5 {
    top: 0.375rem !important;
  }

  .md\:right-1\.5 {
    right: 0.375rem !important;
  }

  .md\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .md\:left-1\.5 {
    left: 0.375rem !important;
  }

  .md\:top-2\.5 {
    top: 0.625rem !important;
  }

  .md\:right-2\.5 {
    right: 0.625rem !important;
  }

  .md\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .md\:left-2\.5 {
    left: 0.625rem !important;
  }

  .md\:top-3\.5 {
    top: 0.875rem !important;
  }

  .md\:right-3\.5 {
    right: 0.875rem !important;
  }

  .md\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .md\:left-3\.5 {
    left: 0.875rem !important;
  }

  .md\:top-1\/2 {
    top: 50% !important;
  }

  .md\:right-1\/2 {
    right: 50% !important;
  }

  .md\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .md\:left-1\/2 {
    left: 50% !important;
  }

  .md\:top-1\/3 {
    top: 33.333333% !important;
  }

  .md\:right-1\/3 {
    right: 33.333333% !important;
  }

  .md\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .md\:left-1\/3 {
    left: 33.333333% !important;
  }

  .md\:top-2\/3 {
    top: 66.666667% !important;
  }

  .md\:right-2\/3 {
    right: 66.666667% !important;
  }

  .md\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .md\:left-2\/3 {
    left: 66.666667% !important;
  }

  .md\:top-1\/4 {
    top: 25% !important;
  }

  .md\:right-1\/4 {
    right: 25% !important;
  }

  .md\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .md\:left-1\/4 {
    left: 25% !important;
  }

  .md\:top-2\/4 {
    top: 50% !important;
  }

  .md\:right-2\/4 {
    right: 50% !important;
  }

  .md\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .md\:left-2\/4 {
    left: 50% !important;
  }

  .md\:top-3\/4 {
    top: 75% !important;
  }

  .md\:right-3\/4 {
    right: 75% !important;
  }

  .md\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .md\:left-3\/4 {
    left: 75% !important;
  }

  .md\:top-1\/5 {
    top: 20% !important;
  }

  .md\:right-1\/5 {
    right: 20% !important;
  }

  .md\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .md\:left-1\/5 {
    left: 20% !important;
  }

  .md\:top-2\/5 {
    top: 40% !important;
  }

  .md\:right-2\/5 {
    right: 40% !important;
  }

  .md\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .md\:left-2\/5 {
    left: 40% !important;
  }

  .md\:top-3\/5 {
    top: 60% !important;
  }

  .md\:right-3\/5 {
    right: 60% !important;
  }

  .md\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .md\:left-3\/5 {
    left: 60% !important;
  }

  .md\:top-4\/5 {
    top: 80% !important;
  }

  .md\:right-4\/5 {
    right: 80% !important;
  }

  .md\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .md\:left-4\/5 {
    left: 80% !important;
  }

  .md\:top-1\/6 {
    top: 16.666667% !important;
  }

  .md\:right-1\/6 {
    right: 16.666667% !important;
  }

  .md\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .md\:left-1\/6 {
    left: 16.666667% !important;
  }

  .md\:top-2\/6 {
    top: 33.333333% !important;
  }

  .md\:right-2\/6 {
    right: 33.333333% !important;
  }

  .md\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .md\:left-2\/6 {
    left: 33.333333% !important;
  }

  .md\:top-3\/6 {
    top: 50% !important;
  }

  .md\:right-3\/6 {
    right: 50% !important;
  }

  .md\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .md\:left-3\/6 {
    left: 50% !important;
  }

  .md\:top-4\/6 {
    top: 66.666667% !important;
  }

  .md\:right-4\/6 {
    right: 66.666667% !important;
  }

  .md\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .md\:left-4\/6 {
    left: 66.666667% !important;
  }

  .md\:top-5\/6 {
    top: 83.333333% !important;
  }

  .md\:right-5\/6 {
    right: 83.333333% !important;
  }

  .md\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .md\:left-5\/6 {
    left: 83.333333% !important;
  }

  .md\:top-1\/12 {
    top: 8.333333% !important;
  }

  .md\:right-1\/12 {
    right: 8.333333% !important;
  }

  .md\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .md\:left-1\/12 {
    left: 8.333333% !important;
  }

  .md\:top-2\/12 {
    top: 16.666667% !important;
  }

  .md\:right-2\/12 {
    right: 16.666667% !important;
  }

  .md\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .md\:left-2\/12 {
    left: 16.666667% !important;
  }

  .md\:top-3\/12 {
    top: 25% !important;
  }

  .md\:right-3\/12 {
    right: 25% !important;
  }

  .md\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .md\:left-3\/12 {
    left: 25% !important;
  }

  .md\:top-4\/12 {
    top: 33.333333% !important;
  }

  .md\:right-4\/12 {
    right: 33.333333% !important;
  }

  .md\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .md\:left-4\/12 {
    left: 33.333333% !important;
  }

  .md\:top-5\/12 {
    top: 41.666667% !important;
  }

  .md\:right-5\/12 {
    right: 41.666667% !important;
  }

  .md\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .md\:left-5\/12 {
    left: 41.666667% !important;
  }

  .md\:top-6\/12 {
    top: 50% !important;
  }

  .md\:right-6\/12 {
    right: 50% !important;
  }

  .md\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .md\:left-6\/12 {
    left: 50% !important;
  }

  .md\:top-7\/12 {
    top: 58.333333% !important;
  }

  .md\:right-7\/12 {
    right: 58.333333% !important;
  }

  .md\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .md\:left-7\/12 {
    left: 58.333333% !important;
  }

  .md\:top-8\/12 {
    top: 66.666667% !important;
  }

  .md\:right-8\/12 {
    right: 66.666667% !important;
  }

  .md\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .md\:left-8\/12 {
    left: 66.666667% !important;
  }

  .md\:top-9\/12 {
    top: 75% !important;
  }

  .md\:right-9\/12 {
    right: 75% !important;
  }

  .md\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .md\:left-9\/12 {
    left: 75% !important;
  }

  .md\:top-10\/12 {
    top: 83.333333% !important;
  }

  .md\:right-10\/12 {
    right: 83.333333% !important;
  }

  .md\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .md\:left-10\/12 {
    left: 83.333333% !important;
  }

  .md\:top-11\/12 {
    top: 91.666667% !important;
  }

  .md\:right-11\/12 {
    right: 91.666667% !important;
  }

  .md\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .md\:left-11\/12 {
    left: 91.666667% !important;
  }

  .md\:top-full {
    top: 100% !important;
  }

  .md\:right-full {
    right: 100% !important;
  }

  .md\:bottom-full {
    bottom: 100% !important;
  }

  .md\:left-full {
    left: 100% !important;
  }

  .md\:top-2px {
    top: 2px !important;
  }

  .md\:right-2px {
    right: 2px !important;
  }

  .md\:bottom-2px {
    bottom: 2px !important;
  }

  .md\:left-2px {
    left: 2px !important;
  }

  .md\:text-left {
    text-align: left !important;
  }

  .md\:text-center {
    text-align: center !important;
  }

  .md\:text-right {
    text-align: right !important;
  }

  .md\:text-justify {
    text-align: justify !important;
  }

  .md\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .md\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .md\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .md\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .md\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .md\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .md\:visible {
    visibility: visible !important;
  }

  .md\:invisible {
    visibility: hidden !important;
  }

  .md\:whitespace-normal {
    white-space: normal !important;
  }

  .md\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .md\:whitespace-pre {
    white-space: pre !important;
  }

  .md\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .md\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .md\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .md\:break-words {
    overflow-wrap: break-word !important;
  }

  .md\:break-all {
    word-break: break-all !important;
  }

  .md\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .md\:w-0 {
    width: 0 !important;
  }

  .md\:w-1 {
    width: 0.25rem !important;
  }

  .md\:w-2 {
    width: 0.5rem !important;
  }

  .md\:w-3 {
    width: 0.75rem !important;
  }

  .md\:w-4 {
    width: 1rem !important;
  }

  .md\:w-5 {
    width: 1.25rem !important;
  }

  .md\:w-6 {
    width: 1.5rem !important;
  }

  .md\:w-7 {
    width: 1.75rem !important;
  }

  .md\:w-8 {
    width: 2rem !important;
  }

  .md\:w-9 {
    width: 2.25rem !important;
  }

  .md\:w-10 {
    width: 2.5rem !important;
  }

  .md\:w-11 {
    width: 2.75rem !important;
  }

  .md\:w-12 {
    width: 3rem !important;
  }

  .md\:w-13 {
    width: 3.25rem !important;
  }

  .md\:w-14 {
    width: 3.5rem !important;
  }

  .md\:w-15 {
    width: 3.75rem !important;
  }

  .md\:w-16 {
    width: 4rem !important;
  }

  .md\:w-18 {
    width: 4.5rem !important;
  }

  .md\:w-20 {
    width: 5rem !important;
  }

  .md\:w-22 {
    width: 5.5rem !important;
  }

  .md\:w-24 {
    width: 6rem !important;
  }

  .md\:w-26 {
    width: 6.5rem !important;
  }

  .md\:w-28 {
    width: 7rem !important;
  }

  .md\:w-30 {
    width: 7.5rem !important;
  }

  .md\:w-32 {
    width: 8rem !important;
  }

  .md\:w-36 {
    width: 9rem !important;
  }

  .md\:w-40 {
    width: 10rem !important;
  }

  .md\:w-44 {
    width: 11rem !important;
  }

  .md\:w-48 {
    width: 12rem !important;
  }

  .md\:w-50 {
    width: 12.5rem !important;
  }

  .md\:w-52 {
    width: 13rem !important;
  }

  .md\:w-56 {
    width: 14rem !important;
  }

  .md\:w-60 {
    width: 15rem !important;
  }

  .md\:w-64 {
    width: 16rem !important;
  }

  .md\:w-72 {
    width: 18rem !important;
  }

  .md\:w-80 {
    width: 20rem !important;
  }

  .md\:w-90 {
    width: 24rem !important;
  }

  .md\:w-96 {
    width: 24rem !important;
  }

  .md\:w-100 {
    width: 25rem !important;
  }

  .md\:w-120 {
    width: 30rem !important;
  }

  .md\:w-128 {
    width: 32rem !important;
  }

  .md\:w-140 {
    width: 35rem !important;
  }

  .md\:w-160 {
    width: 40rem !important;
  }

  .md\:w-180 {
    width: 45rem !important;
  }

  .md\:w-192 {
    width: 48rem !important;
  }

  .md\:w-200 {
    width: 50rem !important;
  }

  .md\:w-240 {
    width: 60rem !important;
  }

  .md\:w-256 {
    width: 64rem !important;
  }

  .md\:w-280 {
    width: 70rem !important;
  }

  .md\:w-320 {
    width: 80rem !important;
  }

  .md\:w-360 {
    width: 90rem !important;
  }

  .md\:w-400 {
    width: 100rem !important;
  }

  .md\:w-480 {
    width: 120rem !important;
  }

  .md\:w-auto {
    width: auto !important;
  }

  .md\:w-px {
    width: 1px !important;
  }

  .md\:w-0\.5 {
    width: 0.125rem !important;
  }

  .md\:w-1\.5 {
    width: 0.375rem !important;
  }

  .md\:w-2\.5 {
    width: 0.625rem !important;
  }

  .md\:w-3\.5 {
    width: 0.875rem !important;
  }

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

  .md\:w-1\/3 {
    width: 33.333333% !important;
  }

  .md\:w-2\/3 {
    width: 66.666667% !important;
  }

  .md\:w-1\/4 {
    width: 25% !important;
  }

  .md\:w-2\/4 {
    width: 50% !important;
  }

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

  .md\:w-1\/5 {
    width: 20% !important;
  }

  .md\:w-2\/5 {
    width: 40% !important;
  }

  .md\:w-3\/5 {
    width: 60% !important;
  }

  .md\:w-4\/5 {
    width: 80% !important;
  }

  .md\:w-1\/6 {
    width: 16.666667% !important;
  }

  .md\:w-2\/6 {
    width: 33.333333% !important;
  }

  .md\:w-3\/6 {
    width: 50% !important;
  }

  .md\:w-4\/6 {
    width: 66.666667% !important;
  }

  .md\:w-5\/6 {
    width: 83.333333% !important;
  }

  .md\:w-1\/12 {
    width: 8.333333% !important;
  }

  .md\:w-2\/12 {
    width: 16.666667% !important;
  }

  .md\:w-3\/12 {
    width: 25% !important;
  }

  .md\:w-4\/12 {
    width: 33.333333% !important;
  }

  .md\:w-5\/12 {
    width: 41.666667% !important;
  }

  .md\:w-6\/12 {
    width: 50% !important;
  }

  .md\:w-7\/12 {
    width: 58.333333% !important;
  }

  .md\:w-8\/12 {
    width: 66.666667% !important;
  }

  .md\:w-9\/12 {
    width: 75% !important;
  }

  .md\:w-10\/12 {
    width: 83.333333% !important;
  }

  .md\:w-11\/12 {
    width: 91.666667% !important;
  }

  .md\:w-full {
    width: 100% !important;
  }

  .md\:w-2px {
    width: 2px !important;
  }

  .md\:w-screen {
    width: 100vw !important;
  }

  .md\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .md\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .md\:z-0 {
    z-index: 0 !important;
  }

  .md\:z-10 {
    z-index: 10 !important;
  }

  .md\:z-20 {
    z-index: 20 !important;
  }

  .md\:z-30 {
    z-index: 30 !important;
  }

  .md\:z-40 {
    z-index: 40 !important;
  }

  .md\:z-50 {
    z-index: 50 !important;
  }

  .md\:z-60 {
    z-index: 60 !important;
  }

  .md\:z-70 {
    z-index: 70 !important;
  }

  .md\:z-80 {
    z-index: 80 !important;
  }

  .md\:z-90 {
    z-index: 90 !important;
  }

  .md\:z-99 {
    z-index: 99 !important;
  }

  .md\:z-999 {
    z-index: 999 !important;
  }

  .md\:z-9999 {
    z-index: 9999 !important;
  }

  .md\:z-99999 {
    z-index: 99999 !important;
  }

  .md\:z-auto {
    z-index: auto !important;
  }

  .md\:-z-1 {
    z-index: -1 !important;
  }

  .md\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .md\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .md\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .md\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .md\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .md\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .md\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .md\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .md\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .md\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .md\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .md\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .md\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .md\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .md\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .md\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .md\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .md\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .md\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .md\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .md\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .md\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .md\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .md\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .md\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .md\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .md\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .md\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .md\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .md\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .md\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .md\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .md\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .md\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .md\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .md\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .md\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .md\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .md\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .md\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .md\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .md\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .md\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .md\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .md\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .md\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .md\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .md\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .md\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .md\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .md\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .md\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .md\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .md\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .md\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .md\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .md\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .md\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .md\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .md\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .md\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .md\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .md\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .md\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .md\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .md\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .md\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .md\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .md\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .md\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .md\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .md\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .md\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .md\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .md\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .md\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .md\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .md\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .md\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .md\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .md\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .md\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .md\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .md\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .md\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .md\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .md\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .md\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .md\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .md\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .md\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .md\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .md\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .md\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .md\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .md\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .md\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .md\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .md\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .md\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .md\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .md\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .md\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .md\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .md\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .md\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .md\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .md\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .md\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .md\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .md\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .md\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .md\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .md\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .md\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .md\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .md\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .md\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .md\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .md\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .md\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .md\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .md\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .md\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .md\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .md\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .md\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .md\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .md\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .md\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .md\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .md\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .md\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .md\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .md\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .md\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .md\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .md\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .md\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .md\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .md\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .md\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .md\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .md\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .md\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .md\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .md\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .md\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .md\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .md\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .md\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .md\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .md\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .md\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .md\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .md\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .md\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .md\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .md\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .md\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .md\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .md\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .md\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .md\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .md\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .md\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .md\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .md\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .md\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .md\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .md\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .md\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .md\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .md\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .md\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .md\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .md\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .md\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .md\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .md\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .md\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .md\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .md\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .md\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .md\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .md\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .md\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .md\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .md\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .md\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .md\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .md\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .md\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .md\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .md\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .md\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .md\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .md\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .md\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .md\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .md\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .md\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .md\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .md\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .md\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .md\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .md\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .md\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .md\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .md\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .md\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .md\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .md\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .md\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .md\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .md\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .md\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .md\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .md\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .md\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .md\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .md\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .md\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .md\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .md\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .md\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .md\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .md\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .md\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .md\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .md\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .md\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .md\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .md\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .md\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .md\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .md\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .md\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .md\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .md\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .md\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .md\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .md\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .md\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .md\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .md\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .md\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .md\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .md\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .md\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .md\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .md\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .md\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .md\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .md\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .md\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .md\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .md\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .md\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .md\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .md\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .md\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .md\:col-auto {
    grid-column: auto !important;
  }

  .md\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

  .md\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }

  .md\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .md\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .md\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .md\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .md\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .md\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .md\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .md\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .md\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .md\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .md\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .md\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .md\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .md\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .md\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .md\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .md\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .md\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .md\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .md\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .md\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .md\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .md\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .md\:col-start-auto {
    grid-column-start: auto !important;
  }

  .md\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .md\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .md\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .md\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .md\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .md\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .md\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .md\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .md\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .md\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .md\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .md\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .md\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .md\:col-end-auto {
    grid-column-end: auto !important;
  }

  .md\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .md\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .md\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .md\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .md\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .md\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .md\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .md\:row-auto {
    grid-row: auto !important;
  }

  .md\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .md\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .md\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .md\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .md\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .md\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .md\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .md\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .md\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .md\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .md\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .md\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .md\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .md\:row-start-auto {
    grid-row-start: auto !important;
  }

  .md\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .md\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .md\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .md\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .md\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .md\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .md\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .md\:row-end-auto {
    grid-row-end: auto !important;
  }

  .md\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .md\:transform-none {
    transform: none !important;
  }

  .md\:origin-center {
    transform-origin: center !important;
  }

  .md\:origin-top {
    transform-origin: top !important;
  }

  .md\:origin-top-right {
    transform-origin: top right !important;
  }

  .md\:origin-right {
    transform-origin: right !important;
  }

  .md\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .md\:origin-bottom {
    transform-origin: bottom !important;
  }

  .md\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .md\:origin-left {
    transform-origin: left !important;
  }

  .md\:origin-top-left {
    transform-origin: top left !important;
  }

  .md\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .md\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .md\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .md\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .md\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .md\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .md\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .md\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .md\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .md\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .md\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .md\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .md\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .md\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .md\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .md\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .md\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .md\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .md\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .md\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .md\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .md\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .md\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .md\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .md\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .md\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .md\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .md\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .md\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .md\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .lg\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .lg\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .lg\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .lg\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .lg\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lg\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lg\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lg\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lg\:rounded-none {
    border-radius: 0 !important;
  }

  .lg\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .lg\:rounded {
    border-radius: 0.25rem !important;
  }

  .lg\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .lg\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .lg\:rounded-full {
    border-radius: 9999px !important;
  }

  .lg\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .lg\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .lg\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lg\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lg\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .lg\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .lg\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lg\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lg\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .lg\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .lg\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lg\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lg\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .lg\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .lg\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lg\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lg\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .lg\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .lg\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lg\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lg\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .lg\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .lg\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lg\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lg\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .lg\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .lg\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .lg\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .lg\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .lg\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .lg\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .lg\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .lg\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .lg\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .lg\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .lg\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .lg\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .lg\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .lg\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .lg\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .lg\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .lg\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .lg\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .lg\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .lg\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .lg\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .lg\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .lg\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .lg\:border-0 {
    border-width: 0 !important;
  }

  .lg\:border-2 {
    border-width: 2px !important;
  }

  .lg\:border-4 {
    border-width: 4px !important;
  }

  .lg\:border-8 {
    border-width: 8px !important;
  }

  .lg\:border {
    border-width: 1px !important;
  }

  .lg\:border-t-0 {
    border-top-width: 0 !important;
  }

  .lg\:border-r-0 {
    border-right-width: 0 !important;
  }

  .lg\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .lg\:border-l-0 {
    border-left-width: 0 !important;
  }

  .lg\:border-t-2 {
    border-top-width: 2px !important;
  }

  .lg\:border-r-2 {
    border-right-width: 2px !important;
  }

  .lg\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .lg\:border-l-2 {
    border-left-width: 2px !important;
  }

  .lg\:border-t-4 {
    border-top-width: 4px !important;
  }

  .lg\:border-r-4 {
    border-right-width: 4px !important;
  }

  .lg\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .lg\:border-l-4 {
    border-left-width: 4px !important;
  }

  .lg\:border-t-8 {
    border-top-width: 8px !important;
  }

  .lg\:border-r-8 {
    border-right-width: 8px !important;
  }

  .lg\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .lg\:border-l-8 {
    border-left-width: 8px !important;
  }

  .lg\:border-t {
    border-top-width: 1px !important;
  }

  .lg\:border-r {
    border-right-width: 1px !important;
  }

  .lg\:border-b {
    border-bottom-width: 1px !important;
  }

  .lg\:border-l {
    border-left-width: 1px !important;
  }

  .lg\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .lg\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .lg\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .lg\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .lg\:first\:border:first-child {
    border-width: 1px !important;
  }

  .lg\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .lg\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .lg\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .lg\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .lg\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .lg\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .lg\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .lg\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .lg\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .lg\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .lg\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .lg\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .lg\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .lg\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .lg\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .lg\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .lg\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .lg\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .lg\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .lg\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .lg\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .lg\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .lg\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .lg\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .lg\:last\:border:last-child {
    border-width: 1px !important;
  }

  .lg\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .lg\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .lg\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .lg\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .lg\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .lg\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .lg\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .lg\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .lg\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .lg\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .lg\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .lg\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .lg\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .lg\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .lg\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .lg\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .lg\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .lg\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .lg\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .lg\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .lg\:block {
    display: block !important;
  }

  .lg\:inline-block {
    display: inline-block !important;
  }

  .lg\:inline {
    display: inline !important;
  }

  .lg\:flex {
    display: flex !important;
  }

  .lg\:inline-flex {
    display: inline-flex !important;
  }

  .lg\:table {
    display: table !important;
  }

  .lg\:table-caption {
    display: table-caption !important;
  }

  .lg\:table-cell {
    display: table-cell !important;
  }

  .lg\:table-column {
    display: table-column !important;
  }

  .lg\:table-column-group {
    display: table-column-group !important;
  }

  .lg\:table-footer-group {
    display: table-footer-group !important;
  }

  .lg\:table-header-group {
    display: table-header-group !important;
  }

  .lg\:table-row-group {
    display: table-row-group !important;
  }

  .lg\:table-row {
    display: table-row !important;
  }

  .lg\:flow-root {
    display: flow-root !important;
  }

  .lg\:grid {
    display: grid !important;
  }

  .lg\:inline-grid {
    display: inline-grid !important;
  }

  .lg\:contents {
    display: contents !important;
  }

  .lg\:hidden {
    display: none !important;
  }

  .lg\:flex-row {
    flex-direction: row !important;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .lg\:flex-col {
    flex-direction: column !important;
  }

  .lg\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .lg\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .lg\:items-start {
    align-items: flex-start !important;
  }

  .lg\:items-end {
    align-items: flex-end !important;
  }

  .lg\:items-center {
    align-items: center !important;
  }

  .lg\:items-baseline {
    align-items: baseline !important;
  }

  .lg\:items-stretch {
    align-items: stretch !important;
  }

  .lg\:self-auto {
    align-self: auto !important;
  }

  .lg\:self-start {
    align-self: flex-start !important;
  }

  .lg\:self-end {
    align-self: flex-end !important;
  }

  .lg\:self-center {
    align-self: center !important;
  }

  .lg\:self-stretch {
    align-self: stretch !important;
  }

  .lg\:justify-start {
    justify-content: flex-start !important;
  }

  .lg\:justify-end {
    justify-content: flex-end !important;
  }

  .lg\:justify-center {
    justify-content: center !important;
  }

  .lg\:justify-between {
    justify-content: space-between !important;
  }

  .lg\:justify-around {
    justify-content: space-around !important;
  }

  .lg\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .lg\:content-center {
    align-content: center !important;
  }

  .lg\:content-start {
    align-content: flex-start !important;
  }

  .lg\:content-end {
    align-content: flex-end !important;
  }

  .lg\:content-between {
    align-content: space-between !important;
  }

  .lg\:content-around {
    align-content: space-around !important;
  }

  .lg\:flex-0 {
    flex: 0 0 auto !important;
  }

  .lg\:flex-1 {
    flex: 1 1 0% !important;
  }

  .lg\:flex-auto {
    flex: 1 1 auto !important;
  }

  .lg\:flex-initial {
    flex: 0 1 auto !important;
  }

  .lg\:flex-none {
    flex: none !important;
  }

  .lg\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .lg\:flex-grow {
    flex-grow: 1 !important;
  }

  .lg\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .lg\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .lg\:order-1 {
    order: 1 !important;
  }

  .lg\:order-2 {
    order: 2 !important;
  }

  .lg\:order-3 {
    order: 3 !important;
  }

  .lg\:order-4 {
    order: 4 !important;
  }

  .lg\:order-5 {
    order: 5 !important;
  }

  .lg\:order-6 {
    order: 6 !important;
  }

  .lg\:order-7 {
    order: 7 !important;
  }

  .lg\:order-8 {
    order: 8 !important;
  }

  .lg\:order-9 {
    order: 9 !important;
  }

  .lg\:order-10 {
    order: 10 !important;
  }

  .lg\:order-11 {
    order: 11 !important;
  }

  .lg\:order-12 {
    order: 12 !important;
  }

  .lg\:order-first {
    order: -9999 !important;
  }

  .lg\:order-last {
    order: 9999 !important;
  }

  .lg\:order-none {
    order: 0 !important;
  }

  .lg\:font-hairline {
    font-weight: 100 !important;
  }

  .lg\:font-thin {
    font-weight: 200 !important;
  }

  .lg\:font-light {
    font-weight: 300 !important;
  }

  .lg\:font-normal {
    font-weight: 400 !important;
  }

  .lg\:font-medium {
    font-weight: 500 !important;
  }

  .lg\:font-semibold {
    font-weight: 600 !important;
  }

  .lg\:font-bold {
    font-weight: 700 !important;
  }

  .lg\:font-extrabold {
    font-weight: 800 !important;
  }

  .lg\:font-black {
    font-weight: 900 !important;
  }

  .lg\:h-0 {
    height: 0 !important;
  }

  .lg\:h-1 {
    height: 0.25rem !important;
  }

  .lg\:h-2 {
    height: 0.5rem !important;
  }

  .lg\:h-3 {
    height: 0.75rem !important;
  }

  .lg\:h-4 {
    height: 1rem !important;
  }

  .lg\:h-5 {
    height: 1.25rem !important;
  }

  .lg\:h-6 {
    height: 1.5rem !important;
  }

  .lg\:h-7 {
    height: 1.75rem !important;
  }

  .lg\:h-8 {
    height: 2rem !important;
  }

  .lg\:h-9 {
    height: 2.25rem !important;
  }

  .lg\:h-10 {
    height: 2.5rem !important;
  }

  .lg\:h-11 {
    height: 2.75rem !important;
  }

  .lg\:h-12 {
    height: 3rem !important;
  }

  .lg\:h-13 {
    height: 3.25rem !important;
  }

  .lg\:h-14 {
    height: 3.5rem !important;
  }

  .lg\:h-15 {
    height: 3.75rem !important;
  }

  .lg\:h-16 {
    height: 4rem !important;
  }

  .lg\:h-18 {
    height: 4.5rem !important;
  }

  .lg\:h-20 {
    height: 5rem !important;
  }

  .lg\:h-22 {
    height: 5.5rem !important;
  }

  .lg\:h-24 {
    height: 6rem !important;
  }

  .lg\:h-26 {
    height: 6.5rem !important;
  }

  .lg\:h-28 {
    height: 7rem !important;
  }

  .lg\:h-30 {
    height: 7.5rem !important;
  }

  .lg\:h-32 {
    height: 8rem !important;
  }

  .lg\:h-36 {
    height: 9rem !important;
  }

  .lg\:h-40 {
    height: 10rem !important;
  }

  .lg\:h-44 {
    height: 11rem !important;
  }

  .lg\:h-48 {
    height: 12rem !important;
  }

  .lg\:h-50 {
    height: 12.5rem !important;
  }

  .lg\:h-52 {
    height: 13rem !important;
  }

  .lg\:h-56 {
    height: 14rem !important;
  }

  .lg\:h-60 {
    height: 15rem !important;
  }

  .lg\:h-64 {
    height: 16rem !important;
  }

  .lg\:h-72 {
    height: 18rem !important;
  }

  .lg\:h-80 {
    height: 20rem !important;
  }

  .lg\:h-90 {
    height: 24rem !important;
  }

  .lg\:h-96 {
    height: 24rem !important;
  }

  .lg\:h-100 {
    height: 25rem !important;
  }

  .lg\:h-120 {
    height: 30rem !important;
  }

  .lg\:h-128 {
    height: 32rem !important;
  }

  .lg\:h-140 {
    height: 35rem !important;
  }

  .lg\:h-160 {
    height: 40rem !important;
  }

  .lg\:h-180 {
    height: 45rem !important;
  }

  .lg\:h-192 {
    height: 48rem !important;
  }

  .lg\:h-200 {
    height: 50rem !important;
  }

  .lg\:h-240 {
    height: 60rem !important;
  }

  .lg\:h-256 {
    height: 64rem !important;
  }

  .lg\:h-280 {
    height: 70rem !important;
  }

  .lg\:h-320 {
    height: 80rem !important;
  }

  .lg\:h-360 {
    height: 90rem !important;
  }

  .lg\:h-400 {
    height: 100rem !important;
  }

  .lg\:h-480 {
    height: 120rem !important;
  }

  .lg\:h-auto {
    height: auto !important;
  }

  .lg\:h-px {
    height: 1px !important;
  }

  .lg\:h-0\.5 {
    height: 0.125rem !important;
  }

  .lg\:h-1\.5 {
    height: 0.375rem !important;
  }

  .lg\:h-2\.5 {
    height: 0.625rem !important;
  }

  .lg\:h-3\.5 {
    height: 0.875rem !important;
  }

  .lg\:h-1\/2 {
    height: 50% !important;
  }

  .lg\:h-1\/3 {
    height: 33.333333% !important;
  }

  .lg\:h-2\/3 {
    height: 66.666667% !important;
  }

  .lg\:h-1\/4 {
    height: 25% !important;
  }

  .lg\:h-2\/4 {
    height: 50% !important;
  }

  .lg\:h-3\/4 {
    height: 75% !important;
  }

  .lg\:h-1\/5 {
    height: 20% !important;
  }

  .lg\:h-2\/5 {
    height: 40% !important;
  }

  .lg\:h-3\/5 {
    height: 60% !important;
  }

  .lg\:h-4\/5 {
    height: 80% !important;
  }

  .lg\:h-1\/6 {
    height: 16.666667% !important;
  }

  .lg\:h-2\/6 {
    height: 33.333333% !important;
  }

  .lg\:h-3\/6 {
    height: 50% !important;
  }

  .lg\:h-4\/6 {
    height: 66.666667% !important;
  }

  .lg\:h-5\/6 {
    height: 83.333333% !important;
  }

  .lg\:h-1\/12 {
    height: 8.333333% !important;
  }

  .lg\:h-2\/12 {
    height: 16.666667% !important;
  }

  .lg\:h-3\/12 {
    height: 25% !important;
  }

  .lg\:h-4\/12 {
    height: 33.333333% !important;
  }

  .lg\:h-5\/12 {
    height: 41.666667% !important;
  }

  .lg\:h-6\/12 {
    height: 50% !important;
  }

  .lg\:h-7\/12 {
    height: 58.333333% !important;
  }

  .lg\:h-8\/12 {
    height: 66.666667% !important;
  }

  .lg\:h-9\/12 {
    height: 75% !important;
  }

  .lg\:h-10\/12 {
    height: 83.333333% !important;
  }

  .lg\:h-11\/12 {
    height: 91.666667% !important;
  }

  .lg\:h-full {
    height: 100% !important;
  }

  .lg\:h-2px {
    height: 2px !important;
  }

  .lg\:h-screen {
    height: 100vh !important;
  }

  .lg\:text-xs {
    font-size: 0.625rem !important;
  }

  .lg\:text-sm {
    font-size: 0.75rem !important;
  }

  .lg\:text-md {
    font-size: 0.8125rem !important;
  }

  .lg\:text-base {
    font-size: 0.875rem !important;
  }

  .lg\:text-lg {
    font-size: 1rem !important;
  }

  .lg\:text-xl {
    font-size: 1.125rem !important;
  }

  .lg\:text-2xl {
    font-size: 1.25rem !important;
  }

  .lg\:text-3xl {
    font-size: 1.5rem !important;
  }

  .lg\:text-4xl {
    font-size: 2rem !important;
  }

  .lg\:text-5xl {
    font-size: 2.25rem !important;
  }

  .lg\:text-6xl {
    font-size: 2.5rem !important;
  }

  .lg\:text-7xl {
    font-size: 3rem !important;
  }

  .lg\:text-8xl {
    font-size: 4rem !important;
  }

  .lg\:text-9xl {
    font-size: 6rem !important;
  }

  .lg\:text-10xl {
    font-size: 8rem !important;
  }

  .lg\:leading-3 {
    line-height: 0.75rem !important;
  }

  .lg\:leading-4 {
    line-height: 1rem !important;
  }

  .lg\:leading-5 {
    line-height: 1.25rem !important;
  }

  .lg\:leading-6 {
    line-height: 1.5rem !important;
  }

  .lg\:leading-7 {
    line-height: 1.75rem !important;
  }

  .lg\:leading-8 {
    line-height: 2rem !important;
  }

  .lg\:leading-9 {
    line-height: 2.25rem !important;
  }

  .lg\:leading-10 {
    line-height: 2.5rem !important;
  }

  .lg\:leading-none {
    line-height: 1 !important;
  }

  .lg\:leading-tight {
    line-height: 1.25 !important;
  }

  .lg\:leading-snug {
    line-height: 1.375 !important;
  }

  .lg\:leading-normal {
    line-height: 1.5 !important;
  }

  .lg\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .lg\:leading-loose {
    line-height: 2 !important;
  }

  .lg\:m-0 {
    margin: 0 !important;
  }

  .lg\:m-1 {
    margin: 0.25rem !important;
  }

  .lg\:m-2 {
    margin: 0.5rem !important;
  }

  .lg\:m-3 {
    margin: 0.75rem !important;
  }

  .lg\:m-4 {
    margin: 1rem !important;
  }

  .lg\:m-5 {
    margin: 1.25rem !important;
  }

  .lg\:m-6 {
    margin: 1.5rem !important;
  }

  .lg\:m-7 {
    margin: 1.75rem !important;
  }

  .lg\:m-8 {
    margin: 2rem !important;
  }

  .lg\:m-9 {
    margin: 2.25rem !important;
  }

  .lg\:m-10 {
    margin: 2.5rem !important;
  }

  .lg\:m-11 {
    margin: 2.75rem !important;
  }

  .lg\:m-12 {
    margin: 3rem !important;
  }

  .lg\:m-13 {
    margin: 3.25rem !important;
  }

  .lg\:m-14 {
    margin: 3.5rem !important;
  }

  .lg\:m-15 {
    margin: 3.75rem !important;
  }

  .lg\:m-16 {
    margin: 4rem !important;
  }

  .lg\:m-18 {
    margin: 4.5rem !important;
  }

  .lg\:m-20 {
    margin: 5rem !important;
  }

  .lg\:m-22 {
    margin: 5.5rem !important;
  }

  .lg\:m-24 {
    margin: 6rem !important;
  }

  .lg\:m-26 {
    margin: 6.5rem !important;
  }

  .lg\:m-28 {
    margin: 7rem !important;
  }

  .lg\:m-30 {
    margin: 7.5rem !important;
  }

  .lg\:m-32 {
    margin: 8rem !important;
  }

  .lg\:m-36 {
    margin: 9rem !important;
  }

  .lg\:m-40 {
    margin: 10rem !important;
  }

  .lg\:m-44 {
    margin: 11rem !important;
  }

  .lg\:m-48 {
    margin: 12rem !important;
  }

  .lg\:m-50 {
    margin: 12.5rem !important;
  }

  .lg\:m-52 {
    margin: 13rem !important;
  }

  .lg\:m-56 {
    margin: 14rem !important;
  }

  .lg\:m-60 {
    margin: 15rem !important;
  }

  .lg\:m-64 {
    margin: 16rem !important;
  }

  .lg\:m-72 {
    margin: 18rem !important;
  }

  .lg\:m-80 {
    margin: 20rem !important;
  }

  .lg\:m-90 {
    margin: 24rem !important;
  }

  .lg\:m-96 {
    margin: 24rem !important;
  }

  .lg\:m-100 {
    margin: 25rem !important;
  }

  .lg\:m-120 {
    margin: 30rem !important;
  }

  .lg\:m-128 {
    margin: 32rem !important;
  }

  .lg\:m-140 {
    margin: 35rem !important;
  }

  .lg\:m-160 {
    margin: 40rem !important;
  }

  .lg\:m-180 {
    margin: 45rem !important;
  }

  .lg\:m-192 {
    margin: 48rem !important;
  }

  .lg\:m-200 {
    margin: 50rem !important;
  }

  .lg\:m-240 {
    margin: 60rem !important;
  }

  .lg\:m-256 {
    margin: 64rem !important;
  }

  .lg\:m-280 {
    margin: 70rem !important;
  }

  .lg\:m-320 {
    margin: 80rem !important;
  }

  .lg\:m-360 {
    margin: 90rem !important;
  }

  .lg\:m-400 {
    margin: 100rem !important;
  }

  .lg\:m-480 {
    margin: 120rem !important;
  }

  .lg\:m-auto {
    margin: auto !important;
  }

  .lg\:m-px {
    margin: 1px !important;
  }

  .lg\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .lg\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .lg\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .lg\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .lg\:m-1\/2 {
    margin: 50% !important;
  }

  .lg\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .lg\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .lg\:m-1\/4 {
    margin: 25% !important;
  }

  .lg\:m-2\/4 {
    margin: 50% !important;
  }

  .lg\:m-3\/4 {
    margin: 75% !important;
  }

  .lg\:m-1\/5 {
    margin: 20% !important;
  }

  .lg\:m-2\/5 {
    margin: 40% !important;
  }

  .lg\:m-3\/5 {
    margin: 60% !important;
  }

  .lg\:m-4\/5 {
    margin: 80% !important;
  }

  .lg\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .lg\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .lg\:m-3\/6 {
    margin: 50% !important;
  }

  .lg\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .lg\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .lg\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .lg\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .lg\:m-3\/12 {
    margin: 25% !important;
  }

  .lg\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .lg\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .lg\:m-6\/12 {
    margin: 50% !important;
  }

  .lg\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .lg\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .lg\:m-9\/12 {
    margin: 75% !important;
  }

  .lg\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .lg\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .lg\:m-full {
    margin: 100% !important;
  }

  .lg\:m-2px {
    margin: 2px !important;
  }

  .lg\:-m-1 {
    margin: -0.25rem !important;
  }

  .lg\:-m-2 {
    margin: -0.5rem !important;
  }

  .lg\:-m-3 {
    margin: -0.75rem !important;
  }

  .lg\:-m-4 {
    margin: -1rem !important;
  }

  .lg\:-m-5 {
    margin: -1.25rem !important;
  }

  .lg\:-m-6 {
    margin: -1.5rem !important;
  }

  .lg\:-m-7 {
    margin: -1.75rem !important;
  }

  .lg\:-m-8 {
    margin: -2rem !important;
  }

  .lg\:-m-9 {
    margin: -2.25rem !important;
  }

  .lg\:-m-10 {
    margin: -2.5rem !important;
  }

  .lg\:-m-11 {
    margin: -2.75rem !important;
  }

  .lg\:-m-12 {
    margin: -3rem !important;
  }

  .lg\:-m-13 {
    margin: -3.25rem !important;
  }

  .lg\:-m-14 {
    margin: -3.5rem !important;
  }

  .lg\:-m-15 {
    margin: -3.75rem !important;
  }

  .lg\:-m-16 {
    margin: -4rem !important;
  }

  .lg\:-m-18 {
    margin: -4.5rem !important;
  }

  .lg\:-m-20 {
    margin: -5rem !important;
  }

  .lg\:-m-22 {
    margin: -5.5rem !important;
  }

  .lg\:-m-24 {
    margin: -6rem !important;
  }

  .lg\:-m-26 {
    margin: -6.5rem !important;
  }

  .lg\:-m-28 {
    margin: -7rem !important;
  }

  .lg\:-m-30 {
    margin: -7.5rem !important;
  }

  .lg\:-m-32 {
    margin: -8rem !important;
  }

  .lg\:-m-36 {
    margin: -9rem !important;
  }

  .lg\:-m-40 {
    margin: -10rem !important;
  }

  .lg\:-m-44 {
    margin: -11rem !important;
  }

  .lg\:-m-48 {
    margin: -12rem !important;
  }

  .lg\:-m-50 {
    margin: -12.5rem !important;
  }

  .lg\:-m-52 {
    margin: -13rem !important;
  }

  .lg\:-m-56 {
    margin: -14rem !important;
  }

  .lg\:-m-60 {
    margin: -15rem !important;
  }

  .lg\:-m-64 {
    margin: -16rem !important;
  }

  .lg\:-m-72 {
    margin: -18rem !important;
  }

  .lg\:-m-80 {
    margin: -20rem !important;
  }

  .lg\:-m-90 {
    margin: -24rem !important;
  }

  .lg\:-m-96 {
    margin: -24rem !important;
  }

  .lg\:-m-100 {
    margin: -25rem !important;
  }

  .lg\:-m-120 {
    margin: -30rem !important;
  }

  .lg\:-m-128 {
    margin: -32rem !important;
  }

  .lg\:-m-140 {
    margin: -35rem !important;
  }

  .lg\:-m-160 {
    margin: -40rem !important;
  }

  .lg\:-m-180 {
    margin: -45rem !important;
  }

  .lg\:-m-192 {
    margin: -48rem !important;
  }

  .lg\:-m-200 {
    margin: -50rem !important;
  }

  .lg\:-m-240 {
    margin: -60rem !important;
  }

  .lg\:-m-256 {
    margin: -64rem !important;
  }

  .lg\:-m-280 {
    margin: -70rem !important;
  }

  .lg\:-m-320 {
    margin: -80rem !important;
  }

  .lg\:-m-360 {
    margin: -90rem !important;
  }

  .lg\:-m-400 {
    margin: -100rem !important;
  }

  .lg\:-m-480 {
    margin: -120rem !important;
  }

  .lg\:-m-px {
    margin: -1px !important;
  }

  .lg\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .lg\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .lg\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .lg\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .lg\:-m-1\/2 {
    margin: -50% !important;
  }

  .lg\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .lg\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .lg\:-m-1\/4 {
    margin: -25% !important;
  }

  .lg\:-m-2\/4 {
    margin: -50% !important;
  }

  .lg\:-m-3\/4 {
    margin: -75% !important;
  }

  .lg\:-m-1\/5 {
    margin: -20% !important;
  }

  .lg\:-m-2\/5 {
    margin: -40% !important;
  }

  .lg\:-m-3\/5 {
    margin: -60% !important;
  }

  .lg\:-m-4\/5 {
    margin: -80% !important;
  }

  .lg\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .lg\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .lg\:-m-3\/6 {
    margin: -50% !important;
  }

  .lg\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .lg\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .lg\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .lg\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .lg\:-m-3\/12 {
    margin: -25% !important;
  }

  .lg\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .lg\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .lg\:-m-6\/12 {
    margin: -50% !important;
  }

  .lg\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .lg\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .lg\:-m-9\/12 {
    margin: -75% !important;
  }

  .lg\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .lg\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .lg\:-m-full {
    margin: -100% !important;
  }

  .lg\:-m-2px {
    margin: -2px !important;
  }

  .lg\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .lg\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .lg\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .lg\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .lg\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .lg\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .lg\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .lg\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .lg\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .lg\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .lg\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .lg\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .lg\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .lg\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .lg\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .lg\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .lg\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lg\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .lg\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .lg\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .lg\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .lg\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .lg\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .lg\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .lg\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .lg\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .lg\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .lg\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .lg\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .lg\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .lg\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .lg\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .lg\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .lg\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .lg\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .lg\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .lg\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .lg\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .lg\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .lg\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .lg\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .lg\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .lg\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .lg\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .lg\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .lg\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .lg\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .lg\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .lg\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .lg\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .lg\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .lg\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .lg\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .lg\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .lg\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .lg\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .lg\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .lg\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .lg\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .lg\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .lg\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .lg\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .lg\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .lg\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .lg\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .lg\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .lg\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .lg\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .lg\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .lg\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .lg\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .lg\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .lg\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .lg\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .lg\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .lg\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .lg\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .lg\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .lg\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .lg\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .lg\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .lg\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .lg\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .lg\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .lg\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .lg\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .lg\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .lg\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .lg\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .lg\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .lg\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .lg\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .lg\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .lg\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .lg\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .lg\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .lg\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .lg\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .lg\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .lg\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .lg\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .lg\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .lg\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .lg\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .lg\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .lg\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .lg\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .lg\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lg\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .lg\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .lg\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .lg\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .lg\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .lg\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .lg\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .lg\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .lg\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .lg\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .lg\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lg\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lg\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lg\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lg\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lg\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lg\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .lg\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .lg\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lg\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lg\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .lg\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .lg\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .lg\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .lg\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .lg\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .lg\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .lg\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .lg\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .lg\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .lg\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .lg\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .lg\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lg\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lg\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lg\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lg\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lg\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lg\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .lg\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .lg\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .lg\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .lg\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .lg\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .lg\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .lg\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .lg\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lg\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lg\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .lg\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .lg\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lg\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lg\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .lg\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .lg\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lg\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lg\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .lg\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .lg\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .lg\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .lg\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .lg\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .lg\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .lg\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .lg\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .lg\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .lg\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .lg\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .lg\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .lg\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .lg\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .lg\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .lg\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .lg\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .lg\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .lg\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .lg\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .lg\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .lg\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .lg\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .lg\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .lg\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .lg\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .lg\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .lg\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .lg\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .lg\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .lg\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .lg\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .lg\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .lg\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .lg\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .lg\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .lg\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .lg\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .lg\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .lg\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .lg\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .lg\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .lg\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .lg\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .lg\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .lg\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .lg\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .lg\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .lg\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .lg\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .lg\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .lg\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .lg\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .lg\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .lg\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .lg\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .lg\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .lg\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .lg\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .lg\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .lg\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .lg\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .lg\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .lg\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .lg\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .lg\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .lg\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .lg\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .lg\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .lg\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .lg\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .lg\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .lg\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .lg\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .lg\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .lg\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .lg\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .lg\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .lg\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .lg\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .lg\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .lg\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .lg\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .lg\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .lg\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .lg\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .lg\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .lg\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .lg\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .lg\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .lg\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .lg\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .lg\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .lg\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .lg\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .lg\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .lg\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .lg\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .lg\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .lg\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .lg\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .lg\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .lg\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .lg\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .lg\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .lg\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .lg\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .lg\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .lg\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .lg\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .lg\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .lg\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .lg\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .lg\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .lg\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .lg\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .lg\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .lg\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .lg\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .lg\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .lg\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .lg\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .lg\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .lg\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lg\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lg\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lg\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lg\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lg\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lg\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .lg\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .lg\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lg\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lg\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .lg\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .lg\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .lg\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .lg\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .lg\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .lg\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .lg\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .lg\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .lg\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .lg\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .lg\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .lg\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lg\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lg\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lg\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lg\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lg\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lg\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .lg\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .lg\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .lg\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .lg\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .lg\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .lg\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .lg\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .lg\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lg\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lg\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .lg\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .lg\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lg\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lg\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .lg\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .lg\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lg\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lg\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .lg\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .lg\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .lg\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .lg\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .lg\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .lg\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .lg\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .lg\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .lg\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .lg\:mt-0 {
    margin-top: 0 !important;
  }

  .lg\:mr-0 {
    margin-right: 0 !important;
  }

  .lg\:mb-0 {
    margin-bottom: 0 !important;
  }

  .lg\:ml-0 {
    margin-left: 0 !important;
  }

  .lg\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .lg\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .lg\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .lg\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .lg\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .lg\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .lg\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .lg\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .lg\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .lg\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .lg\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .lg\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .lg\:mt-4 {
    margin-top: 1rem !important;
  }

  .lg\:mr-4 {
    margin-right: 1rem !important;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .lg\:ml-4 {
    margin-left: 1rem !important;
  }

  .lg\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .lg\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .lg\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .lg\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .lg\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .lg\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .lg\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .lg\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .lg\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .lg\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .lg\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .lg\:mt-8 {
    margin-top: 2rem !important;
  }

  .lg\:mr-8 {
    margin-right: 2rem !important;
  }

  .lg\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .lg\:ml-8 {
    margin-left: 2rem !important;
  }

  .lg\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .lg\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .lg\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .lg\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .lg\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .lg\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .lg\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .lg\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .lg\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .lg\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .lg\:mt-12 {
    margin-top: 3rem !important;
  }

  .lg\:mr-12 {
    margin-right: 3rem !important;
  }

  .lg\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .lg\:ml-12 {
    margin-left: 3rem !important;
  }

  .lg\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .lg\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .lg\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .lg\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .lg\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .lg\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .lg\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .lg\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .lg\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .lg\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .lg\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .lg\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .lg\:mt-16 {
    margin-top: 4rem !important;
  }

  .lg\:mr-16 {
    margin-right: 4rem !important;
  }

  .lg\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .lg\:ml-16 {
    margin-left: 4rem !important;
  }

  .lg\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .lg\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .lg\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .lg\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .lg\:mt-20 {
    margin-top: 5rem !important;
  }

  .lg\:mr-20 {
    margin-right: 5rem !important;
  }

  .lg\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .lg\:ml-20 {
    margin-left: 5rem !important;
  }

  .lg\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .lg\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .lg\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .lg\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .lg\:mt-24 {
    margin-top: 6rem !important;
  }

  .lg\:mr-24 {
    margin-right: 6rem !important;
  }

  .lg\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .lg\:ml-24 {
    margin-left: 6rem !important;
  }

  .lg\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .lg\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .lg\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .lg\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .lg\:mt-28 {
    margin-top: 7rem !important;
  }

  .lg\:mr-28 {
    margin-right: 7rem !important;
  }

  .lg\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .lg\:ml-28 {
    margin-left: 7rem !important;
  }

  .lg\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .lg\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .lg\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .lg\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .lg\:mt-32 {
    margin-top: 8rem !important;
  }

  .lg\:mr-32 {
    margin-right: 8rem !important;
  }

  .lg\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .lg\:ml-32 {
    margin-left: 8rem !important;
  }

  .lg\:mt-36 {
    margin-top: 9rem !important;
  }

  .lg\:mr-36 {
    margin-right: 9rem !important;
  }

  .lg\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .lg\:ml-36 {
    margin-left: 9rem !important;
  }

  .lg\:mt-40 {
    margin-top: 10rem !important;
  }

  .lg\:mr-40 {
    margin-right: 10rem !important;
  }

  .lg\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .lg\:ml-40 {
    margin-left: 10rem !important;
  }

  .lg\:mt-44 {
    margin-top: 11rem !important;
  }

  .lg\:mr-44 {
    margin-right: 11rem !important;
  }

  .lg\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .lg\:ml-44 {
    margin-left: 11rem !important;
  }

  .lg\:mt-48 {
    margin-top: 12rem !important;
  }

  .lg\:mr-48 {
    margin-right: 12rem !important;
  }

  .lg\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .lg\:ml-48 {
    margin-left: 12rem !important;
  }

  .lg\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .lg\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .lg\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .lg\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .lg\:mt-52 {
    margin-top: 13rem !important;
  }

  .lg\:mr-52 {
    margin-right: 13rem !important;
  }

  .lg\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .lg\:ml-52 {
    margin-left: 13rem !important;
  }

  .lg\:mt-56 {
    margin-top: 14rem !important;
  }

  .lg\:mr-56 {
    margin-right: 14rem !important;
  }

  .lg\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .lg\:ml-56 {
    margin-left: 14rem !important;
  }

  .lg\:mt-60 {
    margin-top: 15rem !important;
  }

  .lg\:mr-60 {
    margin-right: 15rem !important;
  }

  .lg\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .lg\:ml-60 {
    margin-left: 15rem !important;
  }

  .lg\:mt-64 {
    margin-top: 16rem !important;
  }

  .lg\:mr-64 {
    margin-right: 16rem !important;
  }

  .lg\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .lg\:ml-64 {
    margin-left: 16rem !important;
  }

  .lg\:mt-72 {
    margin-top: 18rem !important;
  }

  .lg\:mr-72 {
    margin-right: 18rem !important;
  }

  .lg\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .lg\:ml-72 {
    margin-left: 18rem !important;
  }

  .lg\:mt-80 {
    margin-top: 20rem !important;
  }

  .lg\:mr-80 {
    margin-right: 20rem !important;
  }

  .lg\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .lg\:ml-80 {
    margin-left: 20rem !important;
  }

  .lg\:mt-90 {
    margin-top: 24rem !important;
  }

  .lg\:mr-90 {
    margin-right: 24rem !important;
  }

  .lg\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .lg\:ml-90 {
    margin-left: 24rem !important;
  }

  .lg\:mt-96 {
    margin-top: 24rem !important;
  }

  .lg\:mr-96 {
    margin-right: 24rem !important;
  }

  .lg\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .lg\:ml-96 {
    margin-left: 24rem !important;
  }

  .lg\:mt-100 {
    margin-top: 25rem !important;
  }

  .lg\:mr-100 {
    margin-right: 25rem !important;
  }

  .lg\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .lg\:ml-100 {
    margin-left: 25rem !important;
  }

  .lg\:mt-120 {
    margin-top: 30rem !important;
  }

  .lg\:mr-120 {
    margin-right: 30rem !important;
  }

  .lg\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .lg\:ml-120 {
    margin-left: 30rem !important;
  }

  .lg\:mt-128 {
    margin-top: 32rem !important;
  }

  .lg\:mr-128 {
    margin-right: 32rem !important;
  }

  .lg\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .lg\:ml-128 {
    margin-left: 32rem !important;
  }

  .lg\:mt-140 {
    margin-top: 35rem !important;
  }

  .lg\:mr-140 {
    margin-right: 35rem !important;
  }

  .lg\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .lg\:ml-140 {
    margin-left: 35rem !important;
  }

  .lg\:mt-160 {
    margin-top: 40rem !important;
  }

  .lg\:mr-160 {
    margin-right: 40rem !important;
  }

  .lg\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .lg\:ml-160 {
    margin-left: 40rem !important;
  }

  .lg\:mt-180 {
    margin-top: 45rem !important;
  }

  .lg\:mr-180 {
    margin-right: 45rem !important;
  }

  .lg\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .lg\:ml-180 {
    margin-left: 45rem !important;
  }

  .lg\:mt-192 {
    margin-top: 48rem !important;
  }

  .lg\:mr-192 {
    margin-right: 48rem !important;
  }

  .lg\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .lg\:ml-192 {
    margin-left: 48rem !important;
  }

  .lg\:mt-200 {
    margin-top: 50rem !important;
  }

  .lg\:mr-200 {
    margin-right: 50rem !important;
  }

  .lg\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .lg\:ml-200 {
    margin-left: 50rem !important;
  }

  .lg\:mt-240 {
    margin-top: 60rem !important;
  }

  .lg\:mr-240 {
    margin-right: 60rem !important;
  }

  .lg\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .lg\:ml-240 {
    margin-left: 60rem !important;
  }

  .lg\:mt-256 {
    margin-top: 64rem !important;
  }

  .lg\:mr-256 {
    margin-right: 64rem !important;
  }

  .lg\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .lg\:ml-256 {
    margin-left: 64rem !important;
  }

  .lg\:mt-280 {
    margin-top: 70rem !important;
  }

  .lg\:mr-280 {
    margin-right: 70rem !important;
  }

  .lg\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .lg\:ml-280 {
    margin-left: 70rem !important;
  }

  .lg\:mt-320 {
    margin-top: 80rem !important;
  }

  .lg\:mr-320 {
    margin-right: 80rem !important;
  }

  .lg\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .lg\:ml-320 {
    margin-left: 80rem !important;
  }

  .lg\:mt-360 {
    margin-top: 90rem !important;
  }

  .lg\:mr-360 {
    margin-right: 90rem !important;
  }

  .lg\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .lg\:ml-360 {
    margin-left: 90rem !important;
  }

  .lg\:mt-400 {
    margin-top: 100rem !important;
  }

  .lg\:mr-400 {
    margin-right: 100rem !important;
  }

  .lg\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .lg\:ml-400 {
    margin-left: 100rem !important;
  }

  .lg\:mt-480 {
    margin-top: 120rem !important;
  }

  .lg\:mr-480 {
    margin-right: 120rem !important;
  }

  .lg\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .lg\:ml-480 {
    margin-left: 120rem !important;
  }

  .lg\:mt-auto {
    margin-top: auto !important;
  }

  .lg\:mr-auto {
    margin-right: auto !important;
  }

  .lg\:mb-auto {
    margin-bottom: auto !important;
  }

  .lg\:ml-auto {
    margin-left: auto !important;
  }

  .lg\:mt-px {
    margin-top: 1px !important;
  }

  .lg\:mr-px {
    margin-right: 1px !important;
  }

  .lg\:mb-px {
    margin-bottom: 1px !important;
  }

  .lg\:ml-px {
    margin-left: 1px !important;
  }

  .lg\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .lg\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .lg\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .lg\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .lg\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .lg\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .lg\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .lg\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .lg\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .lg\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .lg\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .lg\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .lg\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .lg\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .lg\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .lg\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .lg\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .lg\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .lg\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .lg\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .lg\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .lg\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .lg\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .lg\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .lg\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .lg\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .lg\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .lg\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .lg\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .lg\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .lg\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .lg\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .lg\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .lg\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .lg\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .lg\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .lg\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .lg\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .lg\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .lg\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .lg\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .lg\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .lg\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .lg\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .lg\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .lg\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .lg\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .lg\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .lg\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .lg\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .lg\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .lg\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .lg\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .lg\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .lg\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .lg\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .lg\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .lg\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .lg\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .lg\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .lg\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .lg\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .lg\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .lg\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .lg\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .lg\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .lg\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .lg\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .lg\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .lg\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .lg\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .lg\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .lg\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .lg\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .lg\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .lg\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .lg\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .lg\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .lg\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .lg\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .lg\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .lg\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .lg\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .lg\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .lg\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .lg\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .lg\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .lg\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .lg\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .lg\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .lg\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .lg\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .lg\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .lg\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .lg\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .lg\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .lg\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .lg\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .lg\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .lg\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .lg\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .lg\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .lg\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .lg\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .lg\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .lg\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .lg\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .lg\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .lg\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .lg\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .lg\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .lg\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .lg\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .lg\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .lg\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .lg\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .lg\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .lg\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .lg\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .lg\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .lg\:mt-full {
    margin-top: 100% !important;
  }

  .lg\:mr-full {
    margin-right: 100% !important;
  }

  .lg\:mb-full {
    margin-bottom: 100% !important;
  }

  .lg\:ml-full {
    margin-left: 100% !important;
  }

  .lg\:mt-2px {
    margin-top: 2px !important;
  }

  .lg\:mr-2px {
    margin-right: 2px !important;
  }

  .lg\:mb-2px {
    margin-bottom: 2px !important;
  }

  .lg\:ml-2px {
    margin-left: 2px !important;
  }

  .lg\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .lg\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .lg\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .lg\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .lg\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .lg\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .lg\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .lg\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .lg\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .lg\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .lg\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .lg\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .lg\:-mt-4 {
    margin-top: -1rem !important;
  }

  .lg\:-mr-4 {
    margin-right: -1rem !important;
  }

  .lg\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .lg\:-ml-4 {
    margin-left: -1rem !important;
  }

  .lg\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .lg\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .lg\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .lg\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .lg\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .lg\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .lg\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .lg\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .lg\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .lg\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .lg\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .lg\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .lg\:-mt-8 {
    margin-top: -2rem !important;
  }

  .lg\:-mr-8 {
    margin-right: -2rem !important;
  }

  .lg\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .lg\:-ml-8 {
    margin-left: -2rem !important;
  }

  .lg\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .lg\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .lg\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .lg\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .lg\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .lg\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .lg\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .lg\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .lg\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .lg\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .lg\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .lg\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .lg\:-mt-12 {
    margin-top: -3rem !important;
  }

  .lg\:-mr-12 {
    margin-right: -3rem !important;
  }

  .lg\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .lg\:-ml-12 {
    margin-left: -3rem !important;
  }

  .lg\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .lg\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .lg\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .lg\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .lg\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .lg\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .lg\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .lg\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .lg\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .lg\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .lg\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .lg\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .lg\:-mt-16 {
    margin-top: -4rem !important;
  }

  .lg\:-mr-16 {
    margin-right: -4rem !important;
  }

  .lg\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .lg\:-ml-16 {
    margin-left: -4rem !important;
  }

  .lg\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .lg\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .lg\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .lg\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .lg\:-mt-20 {
    margin-top: -5rem !important;
  }

  .lg\:-mr-20 {
    margin-right: -5rem !important;
  }

  .lg\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .lg\:-ml-20 {
    margin-left: -5rem !important;
  }

  .lg\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .lg\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .lg\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .lg\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .lg\:-mt-24 {
    margin-top: -6rem !important;
  }

  .lg\:-mr-24 {
    margin-right: -6rem !important;
  }

  .lg\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .lg\:-ml-24 {
    margin-left: -6rem !important;
  }

  .lg\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .lg\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .lg\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .lg\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .lg\:-mt-28 {
    margin-top: -7rem !important;
  }

  .lg\:-mr-28 {
    margin-right: -7rem !important;
  }

  .lg\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .lg\:-ml-28 {
    margin-left: -7rem !important;
  }

  .lg\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .lg\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .lg\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .lg\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .lg\:-mt-32 {
    margin-top: -8rem !important;
  }

  .lg\:-mr-32 {
    margin-right: -8rem !important;
  }

  .lg\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .lg\:-ml-32 {
    margin-left: -8rem !important;
  }

  .lg\:-mt-36 {
    margin-top: -9rem !important;
  }

  .lg\:-mr-36 {
    margin-right: -9rem !important;
  }

  .lg\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .lg\:-ml-36 {
    margin-left: -9rem !important;
  }

  .lg\:-mt-40 {
    margin-top: -10rem !important;
  }

  .lg\:-mr-40 {
    margin-right: -10rem !important;
  }

  .lg\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .lg\:-ml-40 {
    margin-left: -10rem !important;
  }

  .lg\:-mt-44 {
    margin-top: -11rem !important;
  }

  .lg\:-mr-44 {
    margin-right: -11rem !important;
  }

  .lg\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .lg\:-ml-44 {
    margin-left: -11rem !important;
  }

  .lg\:-mt-48 {
    margin-top: -12rem !important;
  }

  .lg\:-mr-48 {
    margin-right: -12rem !important;
  }

  .lg\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .lg\:-ml-48 {
    margin-left: -12rem !important;
  }

  .lg\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .lg\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .lg\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .lg\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .lg\:-mt-52 {
    margin-top: -13rem !important;
  }

  .lg\:-mr-52 {
    margin-right: -13rem !important;
  }

  .lg\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .lg\:-ml-52 {
    margin-left: -13rem !important;
  }

  .lg\:-mt-56 {
    margin-top: -14rem !important;
  }

  .lg\:-mr-56 {
    margin-right: -14rem !important;
  }

  .lg\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .lg\:-ml-56 {
    margin-left: -14rem !important;
  }

  .lg\:-mt-60 {
    margin-top: -15rem !important;
  }

  .lg\:-mr-60 {
    margin-right: -15rem !important;
  }

  .lg\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .lg\:-ml-60 {
    margin-left: -15rem !important;
  }

  .lg\:-mt-64 {
    margin-top: -16rem !important;
  }

  .lg\:-mr-64 {
    margin-right: -16rem !important;
  }

  .lg\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .lg\:-ml-64 {
    margin-left: -16rem !important;
  }

  .lg\:-mt-72 {
    margin-top: -18rem !important;
  }

  .lg\:-mr-72 {
    margin-right: -18rem !important;
  }

  .lg\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .lg\:-ml-72 {
    margin-left: -18rem !important;
  }

  .lg\:-mt-80 {
    margin-top: -20rem !important;
  }

  .lg\:-mr-80 {
    margin-right: -20rem !important;
  }

  .lg\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .lg\:-ml-80 {
    margin-left: -20rem !important;
  }

  .lg\:-mt-90 {
    margin-top: -24rem !important;
  }

  .lg\:-mr-90 {
    margin-right: -24rem !important;
  }

  .lg\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .lg\:-ml-90 {
    margin-left: -24rem !important;
  }

  .lg\:-mt-96 {
    margin-top: -24rem !important;
  }

  .lg\:-mr-96 {
    margin-right: -24rem !important;
  }

  .lg\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .lg\:-ml-96 {
    margin-left: -24rem !important;
  }

  .lg\:-mt-100 {
    margin-top: -25rem !important;
  }

  .lg\:-mr-100 {
    margin-right: -25rem !important;
  }

  .lg\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .lg\:-ml-100 {
    margin-left: -25rem !important;
  }

  .lg\:-mt-120 {
    margin-top: -30rem !important;
  }

  .lg\:-mr-120 {
    margin-right: -30rem !important;
  }

  .lg\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .lg\:-ml-120 {
    margin-left: -30rem !important;
  }

  .lg\:-mt-128 {
    margin-top: -32rem !important;
  }

  .lg\:-mr-128 {
    margin-right: -32rem !important;
  }

  .lg\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .lg\:-ml-128 {
    margin-left: -32rem !important;
  }

  .lg\:-mt-140 {
    margin-top: -35rem !important;
  }

  .lg\:-mr-140 {
    margin-right: -35rem !important;
  }

  .lg\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .lg\:-ml-140 {
    margin-left: -35rem !important;
  }

  .lg\:-mt-160 {
    margin-top: -40rem !important;
  }

  .lg\:-mr-160 {
    margin-right: -40rem !important;
  }

  .lg\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .lg\:-ml-160 {
    margin-left: -40rem !important;
  }

  .lg\:-mt-180 {
    margin-top: -45rem !important;
  }

  .lg\:-mr-180 {
    margin-right: -45rem !important;
  }

  .lg\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .lg\:-ml-180 {
    margin-left: -45rem !important;
  }

  .lg\:-mt-192 {
    margin-top: -48rem !important;
  }

  .lg\:-mr-192 {
    margin-right: -48rem !important;
  }

  .lg\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .lg\:-ml-192 {
    margin-left: -48rem !important;
  }

  .lg\:-mt-200 {
    margin-top: -50rem !important;
  }

  .lg\:-mr-200 {
    margin-right: -50rem !important;
  }

  .lg\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .lg\:-ml-200 {
    margin-left: -50rem !important;
  }

  .lg\:-mt-240 {
    margin-top: -60rem !important;
  }

  .lg\:-mr-240 {
    margin-right: -60rem !important;
  }

  .lg\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .lg\:-ml-240 {
    margin-left: -60rem !important;
  }

  .lg\:-mt-256 {
    margin-top: -64rem !important;
  }

  .lg\:-mr-256 {
    margin-right: -64rem !important;
  }

  .lg\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .lg\:-ml-256 {
    margin-left: -64rem !important;
  }

  .lg\:-mt-280 {
    margin-top: -70rem !important;
  }

  .lg\:-mr-280 {
    margin-right: -70rem !important;
  }

  .lg\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .lg\:-ml-280 {
    margin-left: -70rem !important;
  }

  .lg\:-mt-320 {
    margin-top: -80rem !important;
  }

  .lg\:-mr-320 {
    margin-right: -80rem !important;
  }

  .lg\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .lg\:-ml-320 {
    margin-left: -80rem !important;
  }

  .lg\:-mt-360 {
    margin-top: -90rem !important;
  }

  .lg\:-mr-360 {
    margin-right: -90rem !important;
  }

  .lg\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .lg\:-ml-360 {
    margin-left: -90rem !important;
  }

  .lg\:-mt-400 {
    margin-top: -100rem !important;
  }

  .lg\:-mr-400 {
    margin-right: -100rem !important;
  }

  .lg\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .lg\:-ml-400 {
    margin-left: -100rem !important;
  }

  .lg\:-mt-480 {
    margin-top: -120rem !important;
  }

  .lg\:-mr-480 {
    margin-right: -120rem !important;
  }

  .lg\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .lg\:-ml-480 {
    margin-left: -120rem !important;
  }

  .lg\:-mt-px {
    margin-top: -1px !important;
  }

  .lg\:-mr-px {
    margin-right: -1px !important;
  }

  .lg\:-mb-px {
    margin-bottom: -1px !important;
  }

  .lg\:-ml-px {
    margin-left: -1px !important;
  }

  .lg\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .lg\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .lg\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .lg\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .lg\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .lg\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .lg\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .lg\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .lg\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .lg\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .lg\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .lg\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .lg\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .lg\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .lg\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .lg\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .lg\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .lg\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .lg\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .lg\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .lg\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .lg\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .lg\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .lg\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .lg\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .lg\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .lg\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .lg\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .lg\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .lg\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .lg\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .lg\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .lg\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .lg\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .lg\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .lg\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .lg\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .lg\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .lg\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .lg\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .lg\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .lg\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .lg\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .lg\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .lg\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .lg\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .lg\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .lg\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .lg\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .lg\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .lg\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .lg\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .lg\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .lg\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .lg\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .lg\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .lg\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .lg\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .lg\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .lg\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .lg\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .lg\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .lg\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .lg\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .lg\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .lg\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .lg\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .lg\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .lg\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .lg\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .lg\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .lg\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .lg\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .lg\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .lg\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .lg\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .lg\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .lg\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .lg\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .lg\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .lg\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .lg\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .lg\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .lg\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .lg\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .lg\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .lg\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .lg\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .lg\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .lg\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .lg\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .lg\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .lg\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .lg\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .lg\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .lg\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .lg\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .lg\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .lg\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .lg\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .lg\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .lg\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .lg\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .lg\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .lg\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .lg\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .lg\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .lg\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .lg\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .lg\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .lg\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .lg\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .lg\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .lg\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .lg\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .lg\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .lg\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .lg\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .lg\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .lg\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .lg\:-mt-full {
    margin-top: -100% !important;
  }

  .lg\:-mr-full {
    margin-right: -100% !important;
  }

  .lg\:-mb-full {
    margin-bottom: -100% !important;
  }

  .lg\:-ml-full {
    margin-left: -100% !important;
  }

  .lg\:-mt-2px {
    margin-top: -2px !important;
  }

  .lg\:-mr-2px {
    margin-right: -2px !important;
  }

  .lg\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .lg\:-ml-2px {
    margin-left: -2px !important;
  }

  .lg\:max-h-0 {
    max-height: 0 !important;
  }

  .lg\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .lg\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .lg\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .lg\:max-h-4 {
    max-height: 1rem !important;
  }

  .lg\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .lg\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .lg\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .lg\:max-h-8 {
    max-height: 2rem !important;
  }

  .lg\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .lg\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .lg\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .lg\:max-h-12 {
    max-height: 3rem !important;
  }

  .lg\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .lg\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .lg\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .lg\:max-h-16 {
    max-height: 4rem !important;
  }

  .lg\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .lg\:max-h-20 {
    max-height: 5rem !important;
  }

  .lg\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .lg\:max-h-24 {
    max-height: 6rem !important;
  }

  .lg\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .lg\:max-h-28 {
    max-height: 7rem !important;
  }

  .lg\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .lg\:max-h-32 {
    max-height: 8rem !important;
  }

  .lg\:max-h-36 {
    max-height: 9rem !important;
  }

  .lg\:max-h-40 {
    max-height: 10rem !important;
  }

  .lg\:max-h-44 {
    max-height: 11rem !important;
  }

  .lg\:max-h-48 {
    max-height: 12rem !important;
  }

  .lg\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .lg\:max-h-52 {
    max-height: 13rem !important;
  }

  .lg\:max-h-56 {
    max-height: 14rem !important;
  }

  .lg\:max-h-60 {
    max-height: 15rem !important;
  }

  .lg\:max-h-64 {
    max-height: 16rem !important;
  }

  .lg\:max-h-72 {
    max-height: 18rem !important;
  }

  .lg\:max-h-80 {
    max-height: 20rem !important;
  }

  .lg\:max-h-90 {
    max-height: 24rem !important;
  }

  .lg\:max-h-96 {
    max-height: 24rem !important;
  }

  .lg\:max-h-100 {
    max-height: 25rem !important;
  }

  .lg\:max-h-120 {
    max-height: 30rem !important;
  }

  .lg\:max-h-128 {
    max-height: 32rem !important;
  }

  .lg\:max-h-140 {
    max-height: 35rem !important;
  }

  .lg\:max-h-160 {
    max-height: 40rem !important;
  }

  .lg\:max-h-180 {
    max-height: 45rem !important;
  }

  .lg\:max-h-192 {
    max-height: 48rem !important;
  }

  .lg\:max-h-200 {
    max-height: 50rem !important;
  }

  .lg\:max-h-240 {
    max-height: 60rem !important;
  }

  .lg\:max-h-256 {
    max-height: 64rem !important;
  }

  .lg\:max-h-280 {
    max-height: 70rem !important;
  }

  .lg\:max-h-320 {
    max-height: 80rem !important;
  }

  .lg\:max-h-360 {
    max-height: 90rem !important;
  }

  .lg\:max-h-400 {
    max-height: 100rem !important;
  }

  .lg\:max-h-480 {
    max-height: 120rem !important;
  }

  .lg\:max-h-screen {
    max-height: 100vh !important;
  }

  .lg\:max-h-px {
    max-height: 1px !important;
  }

  .lg\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .lg\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .lg\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .lg\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .lg\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .lg\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .lg\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .lg\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .lg\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .lg\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .lg\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .lg\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .lg\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .lg\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .lg\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .lg\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .lg\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .lg\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .lg\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .lg\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .lg\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .lg\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .lg\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .lg\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .lg\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .lg\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .lg\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .lg\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .lg\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .lg\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .lg\:max-h-full {
    max-height: 100% !important;
  }

  .lg\:max-h-2px {
    max-height: 2px !important;
  }

  .lg\:max-h-none {
    max-height: none !important;
  }

  .lg\:max-w-0 {
    max-width: 0 !important;
  }

  .lg\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .lg\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .lg\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .lg\:max-w-4 {
    max-width: 1rem !important;
  }

  .lg\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .lg\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .lg\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .lg\:max-w-8 {
    max-width: 2rem !important;
  }

  .lg\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .lg\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .lg\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .lg\:max-w-12 {
    max-width: 3rem !important;
  }

  .lg\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .lg\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .lg\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .lg\:max-w-16 {
    max-width: 4rem !important;
  }

  .lg\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .lg\:max-w-20 {
    max-width: 5rem !important;
  }

  .lg\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .lg\:max-w-24 {
    max-width: 6rem !important;
  }

  .lg\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .lg\:max-w-28 {
    max-width: 7rem !important;
  }

  .lg\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .lg\:max-w-32 {
    max-width: 8rem !important;
  }

  .lg\:max-w-36 {
    max-width: 9rem !important;
  }

  .lg\:max-w-40 {
    max-width: 10rem !important;
  }

  .lg\:max-w-44 {
    max-width: 11rem !important;
  }

  .lg\:max-w-48 {
    max-width: 12rem !important;
  }

  .lg\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .lg\:max-w-52 {
    max-width: 13rem !important;
  }

  .lg\:max-w-56 {
    max-width: 14rem !important;
  }

  .lg\:max-w-60 {
    max-width: 15rem !important;
  }

  .lg\:max-w-64 {
    max-width: 16rem !important;
  }

  .lg\:max-w-72 {
    max-width: 18rem !important;
  }

  .lg\:max-w-80 {
    max-width: 20rem !important;
  }

  .lg\:max-w-90 {
    max-width: 24rem !important;
  }

  .lg\:max-w-96 {
    max-width: 24rem !important;
  }

  .lg\:max-w-100 {
    max-width: 25rem !important;
  }

  .lg\:max-w-120 {
    max-width: 30rem !important;
  }

  .lg\:max-w-128 {
    max-width: 32rem !important;
  }

  .lg\:max-w-140 {
    max-width: 35rem !important;
  }

  .lg\:max-w-160 {
    max-width: 40rem !important;
  }

  .lg\:max-w-180 {
    max-width: 45rem !important;
  }

  .lg\:max-w-192 {
    max-width: 48rem !important;
  }

  .lg\:max-w-200 {
    max-width: 50rem !important;
  }

  .lg\:max-w-240 {
    max-width: 60rem !important;
  }

  .lg\:max-w-256 {
    max-width: 64rem !important;
  }

  .lg\:max-w-280 {
    max-width: 70rem !important;
  }

  .lg\:max-w-320 {
    max-width: 80rem !important;
  }

  .lg\:max-w-360 {
    max-width: 90rem !important;
  }

  .lg\:max-w-400 {
    max-width: 100rem !important;
  }

  .lg\:max-w-480 {
    max-width: 120rem !important;
  }

  .lg\:max-w-none {
    max-width: none !important;
  }

  .lg\:max-w-xs {
    max-width: 20rem !important;
  }

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

  .lg\:max-w-md {
    max-width: 28rem !important;
  }

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

  .lg\:max-w-xl {
    max-width: 36rem !important;
  }

  .lg\:max-w-2xl {
    max-width: 42rem !important;
  }

  .lg\:max-w-3xl {
    max-width: 48rem !important;
  }

  .lg\:max-w-4xl {
    max-width: 56rem !important;
  }

  .lg\:max-w-5xl {
    max-width: 64rem !important;
  }

  .lg\:max-w-6xl {
    max-width: 72rem !important;
  }

  .lg\:max-w-7xl {
    max-width: 80rem !important;
  }

  .lg\:max-w-full {
    max-width: 100% !important;
  }

  .lg\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .lg\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .lg\:max-w-screen {
    max-width: 100vw !important;
  }

  .lg\:max-w-px {
    max-width: 1px !important;
  }

  .lg\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .lg\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .lg\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .lg\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .lg\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .lg\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .lg\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .lg\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .lg\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .lg\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .lg\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .lg\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .lg\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .lg\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .lg\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .lg\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .lg\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .lg\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .lg\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .lg\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .lg\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .lg\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .lg\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .lg\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .lg\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .lg\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .lg\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .lg\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .lg\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .lg\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .lg\:max-w-2px {
    max-width: 2px !important;
  }

  .lg\:min-h-0 {
    min-height: 0 !important;
  }

  .lg\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .lg\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .lg\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .lg\:min-h-4 {
    min-height: 1rem !important;
  }

  .lg\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .lg\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .lg\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .lg\:min-h-8 {
    min-height: 2rem !important;
  }

  .lg\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .lg\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .lg\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .lg\:min-h-12 {
    min-height: 3rem !important;
  }

  .lg\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .lg\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .lg\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .lg\:min-h-16 {
    min-height: 4rem !important;
  }

  .lg\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .lg\:min-h-20 {
    min-height: 5rem !important;
  }

  .lg\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .lg\:min-h-24 {
    min-height: 6rem !important;
  }

  .lg\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .lg\:min-h-28 {
    min-height: 7rem !important;
  }

  .lg\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .lg\:min-h-32 {
    min-height: 8rem !important;
  }

  .lg\:min-h-36 {
    min-height: 9rem !important;
  }

  .lg\:min-h-40 {
    min-height: 10rem !important;
  }

  .lg\:min-h-44 {
    min-height: 11rem !important;
  }

  .lg\:min-h-48 {
    min-height: 12rem !important;
  }

  .lg\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .lg\:min-h-52 {
    min-height: 13rem !important;
  }

  .lg\:min-h-56 {
    min-height: 14rem !important;
  }

  .lg\:min-h-60 {
    min-height: 15rem !important;
  }

  .lg\:min-h-64 {
    min-height: 16rem !important;
  }

  .lg\:min-h-72 {
    min-height: 18rem !important;
  }

  .lg\:min-h-80 {
    min-height: 20rem !important;
  }

  .lg\:min-h-90 {
    min-height: 24rem !important;
  }

  .lg\:min-h-96 {
    min-height: 24rem !important;
  }

  .lg\:min-h-100 {
    min-height: 25rem !important;
  }

  .lg\:min-h-120 {
    min-height: 30rem !important;
  }

  .lg\:min-h-128 {
    min-height: 32rem !important;
  }

  .lg\:min-h-140 {
    min-height: 35rem !important;
  }

  .lg\:min-h-160 {
    min-height: 40rem !important;
  }

  .lg\:min-h-180 {
    min-height: 45rem !important;
  }

  .lg\:min-h-192 {
    min-height: 48rem !important;
  }

  .lg\:min-h-200 {
    min-height: 50rem !important;
  }

  .lg\:min-h-240 {
    min-height: 60rem !important;
  }

  .lg\:min-h-256 {
    min-height: 64rem !important;
  }

  .lg\:min-h-280 {
    min-height: 70rem !important;
  }

  .lg\:min-h-320 {
    min-height: 80rem !important;
  }

  .lg\:min-h-360 {
    min-height: 90rem !important;
  }

  .lg\:min-h-400 {
    min-height: 100rem !important;
  }

  .lg\:min-h-480 {
    min-height: 120rem !important;
  }

  .lg\:min-h-full {
    min-height: 100% !important;
  }

  .lg\:min-h-screen {
    min-height: 100vh !important;
  }

  .lg\:min-h-px {
    min-height: 1px !important;
  }

  .lg\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .lg\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .lg\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .lg\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .lg\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .lg\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .lg\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .lg\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .lg\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .lg\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .lg\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .lg\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .lg\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .lg\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .lg\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .lg\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .lg\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .lg\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .lg\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .lg\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .lg\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .lg\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .lg\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .lg\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .lg\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .lg\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .lg\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .lg\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .lg\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .lg\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .lg\:min-h-2px {
    min-height: 2px !important;
  }

  .lg\:min-w-0 {
    min-width: 0 !important;
  }

  .lg\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .lg\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .lg\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .lg\:min-w-4 {
    min-width: 1rem !important;
  }

  .lg\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .lg\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .lg\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .lg\:min-w-8 {
    min-width: 2rem !important;
  }

  .lg\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .lg\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .lg\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .lg\:min-w-12 {
    min-width: 3rem !important;
  }

  .lg\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .lg\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .lg\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .lg\:min-w-16 {
    min-width: 4rem !important;
  }

  .lg\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .lg\:min-w-20 {
    min-width: 5rem !important;
  }

  .lg\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .lg\:min-w-24 {
    min-width: 6rem !important;
  }

  .lg\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .lg\:min-w-28 {
    min-width: 7rem !important;
  }

  .lg\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .lg\:min-w-32 {
    min-width: 8rem !important;
  }

  .lg\:min-w-36 {
    min-width: 9rem !important;
  }

  .lg\:min-w-40 {
    min-width: 10rem !important;
  }

  .lg\:min-w-44 {
    min-width: 11rem !important;
  }

  .lg\:min-w-48 {
    min-width: 12rem !important;
  }

  .lg\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .lg\:min-w-52 {
    min-width: 13rem !important;
  }

  .lg\:min-w-56 {
    min-width: 14rem !important;
  }

  .lg\:min-w-60 {
    min-width: 15rem !important;
  }

  .lg\:min-w-64 {
    min-width: 16rem !important;
  }

  .lg\:min-w-72 {
    min-width: 18rem !important;
  }

  .lg\:min-w-80 {
    min-width: 20rem !important;
  }

  .lg\:min-w-90 {
    min-width: 24rem !important;
  }

  .lg\:min-w-96 {
    min-width: 24rem !important;
  }

  .lg\:min-w-100 {
    min-width: 25rem !important;
  }

  .lg\:min-w-120 {
    min-width: 30rem !important;
  }

  .lg\:min-w-128 {
    min-width: 32rem !important;
  }

  .lg\:min-w-140 {
    min-width: 35rem !important;
  }

  .lg\:min-w-160 {
    min-width: 40rem !important;
  }

  .lg\:min-w-180 {
    min-width: 45rem !important;
  }

  .lg\:min-w-192 {
    min-width: 48rem !important;
  }

  .lg\:min-w-200 {
    min-width: 50rem !important;
  }

  .lg\:min-w-240 {
    min-width: 60rem !important;
  }

  .lg\:min-w-256 {
    min-width: 64rem !important;
  }

  .lg\:min-w-280 {
    min-width: 70rem !important;
  }

  .lg\:min-w-320 {
    min-width: 80rem !important;
  }

  .lg\:min-w-360 {
    min-width: 90rem !important;
  }

  .lg\:min-w-400 {
    min-width: 100rem !important;
  }

  .lg\:min-w-480 {
    min-width: 120rem !important;
  }

  .lg\:min-w-full {
    min-width: 100% !important;
  }

  .lg\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .lg\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .lg\:min-w-screen {
    min-width: 100vw !important;
  }

  .lg\:min-w-px {
    min-width: 1px !important;
  }

  .lg\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .lg\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .lg\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .lg\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .lg\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .lg\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .lg\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .lg\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .lg\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .lg\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .lg\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .lg\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .lg\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .lg\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .lg\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .lg\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .lg\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .lg\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .lg\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .lg\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .lg\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .lg\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .lg\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .lg\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .lg\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .lg\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .lg\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .lg\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .lg\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .lg\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .lg\:min-w-2px {
    min-width: 2px !important;
  }

  .lg\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .lg\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .lg\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .lg\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .lg\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .lg\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .lg\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .lg\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .lg\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .lg\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .lg\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .lg\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .lg\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .lg\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .lg\:opacity-0 {
    opacity: 0 !important;
  }

  .lg\:opacity-12 {
    opacity: 0.12 !important;
  }

  .lg\:opacity-25 {
    opacity: 0.25 !important;
  }

  .lg\:opacity-38 {
    opacity: 0.38 !important;
  }

  .lg\:opacity-50 {
    opacity: 0.5 !important;
  }

  .lg\:opacity-54 {
    opacity: 0.54 !important;
  }

  .lg\:opacity-70 {
    opacity: 0.7 !important;
  }

  .lg\:opacity-75 {
    opacity: 0.75 !important;
  }

  .lg\:opacity-84 {
    opacity: 0.84 !important;
  }

  .lg\:opacity-100 {
    opacity: 1 !important;
  }

  .lg\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .lg\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .lg\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .lg\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .lg\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .lg\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .lg\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .lg\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .lg\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .lg\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .lg\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .lg\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .lg\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .lg\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .lg\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .lg\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .lg\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .lg\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .lg\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .lg\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .lg\:overflow-auto {
    overflow: auto !important;
  }

  .lg\:overflow-hidden {
    overflow: hidden !important;
  }

  .lg\:overflow-visible {
    overflow: visible !important;
  }

  .lg\:overflow-scroll {
    overflow: scroll !important;
  }

  .lg\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .lg\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .lg\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .lg\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .lg\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .lg\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .lg\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .lg\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .lg\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .lg\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .lg\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .lg\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .lg\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .lg\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .lg\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .lg\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .lg\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .lg\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .lg\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .lg\:p-0 {
    padding: 0 !important;
  }

  .lg\:p-1 {
    padding: 0.25rem !important;
  }

  .lg\:p-2 {
    padding: 0.5rem !important;
  }

  .lg\:p-3 {
    padding: 0.75rem !important;
  }

  .lg\:p-4 {
    padding: 1rem !important;
  }

  .lg\:p-5 {
    padding: 1.25rem !important;
  }

  .lg\:p-6 {
    padding: 1.5rem !important;
  }

  .lg\:p-7 {
    padding: 1.75rem !important;
  }

  .lg\:p-8 {
    padding: 2rem !important;
  }

  .lg\:p-9 {
    padding: 2.25rem !important;
  }

  .lg\:p-10 {
    padding: 2.5rem !important;
  }

  .lg\:p-11 {
    padding: 2.75rem !important;
  }

  .lg\:p-12 {
    padding: 3rem !important;
  }

  .lg\:p-13 {
    padding: 3.25rem !important;
  }

  .lg\:p-14 {
    padding: 3.5rem !important;
  }

  .lg\:p-15 {
    padding: 3.75rem !important;
  }

  .lg\:p-16 {
    padding: 4rem !important;
  }

  .lg\:p-18 {
    padding: 4.5rem !important;
  }

  .lg\:p-20 {
    padding: 5rem !important;
  }

  .lg\:p-22 {
    padding: 5.5rem !important;
  }

  .lg\:p-24 {
    padding: 6rem !important;
  }

  .lg\:p-26 {
    padding: 6.5rem !important;
  }

  .lg\:p-28 {
    padding: 7rem !important;
  }

  .lg\:p-30 {
    padding: 7.5rem !important;
  }

  .lg\:p-32 {
    padding: 8rem !important;
  }

  .lg\:p-36 {
    padding: 9rem !important;
  }

  .lg\:p-40 {
    padding: 10rem !important;
  }

  .lg\:p-44 {
    padding: 11rem !important;
  }

  .lg\:p-48 {
    padding: 12rem !important;
  }

  .lg\:p-50 {
    padding: 12.5rem !important;
  }

  .lg\:p-52 {
    padding: 13rem !important;
  }

  .lg\:p-56 {
    padding: 14rem !important;
  }

  .lg\:p-60 {
    padding: 15rem !important;
  }

  .lg\:p-64 {
    padding: 16rem !important;
  }

  .lg\:p-72 {
    padding: 18rem !important;
  }

  .lg\:p-80 {
    padding: 20rem !important;
  }

  .lg\:p-90 {
    padding: 24rem !important;
  }

  .lg\:p-96 {
    padding: 24rem !important;
  }

  .lg\:p-100 {
    padding: 25rem !important;
  }

  .lg\:p-120 {
    padding: 30rem !important;
  }

  .lg\:p-128 {
    padding: 32rem !important;
  }

  .lg\:p-140 {
    padding: 35rem !important;
  }

  .lg\:p-160 {
    padding: 40rem !important;
  }

  .lg\:p-180 {
    padding: 45rem !important;
  }

  .lg\:p-192 {
    padding: 48rem !important;
  }

  .lg\:p-200 {
    padding: 50rem !important;
  }

  .lg\:p-240 {
    padding: 60rem !important;
  }

  .lg\:p-256 {
    padding: 64rem !important;
  }

  .lg\:p-280 {
    padding: 70rem !important;
  }

  .lg\:p-320 {
    padding: 80rem !important;
  }

  .lg\:p-360 {
    padding: 90rem !important;
  }

  .lg\:p-400 {
    padding: 100rem !important;
  }

  .lg\:p-480 {
    padding: 120rem !important;
  }

  .lg\:p-px {
    padding: 1px !important;
  }

  .lg\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .lg\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .lg\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .lg\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .lg\:p-1\/2 {
    padding: 50% !important;
  }

  .lg\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .lg\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .lg\:p-1\/4 {
    padding: 25% !important;
  }

  .lg\:p-2\/4 {
    padding: 50% !important;
  }

  .lg\:p-3\/4 {
    padding: 75% !important;
  }

  .lg\:p-1\/5 {
    padding: 20% !important;
  }

  .lg\:p-2\/5 {
    padding: 40% !important;
  }

  .lg\:p-3\/5 {
    padding: 60% !important;
  }

  .lg\:p-4\/5 {
    padding: 80% !important;
  }

  .lg\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .lg\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .lg\:p-3\/6 {
    padding: 50% !important;
  }

  .lg\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .lg\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .lg\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .lg\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .lg\:p-3\/12 {
    padding: 25% !important;
  }

  .lg\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .lg\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .lg\:p-6\/12 {
    padding: 50% !important;
  }

  .lg\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .lg\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .lg\:p-9\/12 {
    padding: 75% !important;
  }

  .lg\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .lg\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .lg\:p-full {
    padding: 100% !important;
  }

  .lg\:p-2px {
    padding: 2px !important;
  }

  .lg\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .lg\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .lg\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .lg\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .lg\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .lg\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .lg\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .lg\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .lg\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .lg\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .lg\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .lg\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .lg\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .lg\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .lg\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .lg\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .lg\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lg\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .lg\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .lg\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .lg\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lg\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .lg\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .lg\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .lg\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lg\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .lg\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .lg\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .lg\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .lg\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .lg\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .lg\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .lg\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .lg\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .lg\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .lg\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .lg\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .lg\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .lg\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .lg\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .lg\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .lg\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .lg\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .lg\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .lg\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .lg\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .lg\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .lg\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .lg\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .lg\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .lg\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .lg\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .lg\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .lg\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .lg\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .lg\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .lg\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .lg\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .lg\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .lg\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .lg\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .lg\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .lg\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .lg\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .lg\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .lg\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .lg\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .lg\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .lg\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .lg\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .lg\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .lg\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .lg\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .lg\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .lg\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .lg\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .lg\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .lg\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .lg\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .lg\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .lg\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .lg\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .lg\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .lg\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .lg\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .lg\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .lg\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .lg\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .lg\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .lg\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .lg\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .lg\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .lg\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .lg\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .lg\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .lg\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .lg\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .lg\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .lg\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .lg\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .lg\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .lg\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .lg\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .lg\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .lg\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .lg\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .lg\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .lg\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .lg\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .lg\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .lg\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .lg\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .lg\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .lg\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .lg\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .lg\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .lg\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lg\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lg\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lg\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lg\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lg\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lg\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .lg\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .lg\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lg\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lg\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .lg\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .lg\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .lg\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .lg\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .lg\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .lg\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .lg\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .lg\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .lg\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .lg\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .lg\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .lg\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lg\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lg\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lg\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lg\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lg\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lg\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .lg\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .lg\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .lg\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .lg\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .lg\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .lg\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .lg\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .lg\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lg\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lg\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .lg\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .lg\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lg\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lg\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .lg\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .lg\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lg\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lg\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .lg\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .lg\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .lg\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .lg\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .lg\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .lg\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .lg\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .lg\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .lg\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .lg\:pt-0 {
    padding-top: 0 !important;
  }

  .lg\:pr-0 {
    padding-right: 0 !important;
  }

  .lg\:pb-0 {
    padding-bottom: 0 !important;
  }

  .lg\:pl-0 {
    padding-left: 0 !important;
  }

  .lg\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .lg\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .lg\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .lg\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .lg\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .lg\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .lg\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .lg\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .lg\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .lg\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .lg\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .lg\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .lg\:pt-4 {
    padding-top: 1rem !important;
  }

  .lg\:pr-4 {
    padding-right: 1rem !important;
  }

  .lg\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .lg\:pl-4 {
    padding-left: 1rem !important;
  }

  .lg\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .lg\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .lg\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .lg\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .lg\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .lg\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .lg\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .lg\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .lg\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .lg\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .lg\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .lg\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .lg\:pt-8 {
    padding-top: 2rem !important;
  }

  .lg\:pr-8 {
    padding-right: 2rem !important;
  }

  .lg\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .lg\:pl-8 {
    padding-left: 2rem !important;
  }

  .lg\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .lg\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .lg\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .lg\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .lg\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .lg\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .lg\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .lg\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .lg\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .lg\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .lg\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .lg\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .lg\:pt-12 {
    padding-top: 3rem !important;
  }

  .lg\:pr-12 {
    padding-right: 3rem !important;
  }

  .lg\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .lg\:pl-12 {
    padding-left: 3rem !important;
  }

  .lg\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .lg\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .lg\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .lg\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .lg\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .lg\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .lg\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .lg\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .lg\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .lg\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .lg\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .lg\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .lg\:pt-16 {
    padding-top: 4rem !important;
  }

  .lg\:pr-16 {
    padding-right: 4rem !important;
  }

  .lg\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .lg\:pl-16 {
    padding-left: 4rem !important;
  }

  .lg\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .lg\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .lg\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .lg\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .lg\:pt-20 {
    padding-top: 5rem !important;
  }

  .lg\:pr-20 {
    padding-right: 5rem !important;
  }

  .lg\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .lg\:pl-20 {
    padding-left: 5rem !important;
  }

  .lg\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .lg\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .lg\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .lg\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .lg\:pt-24 {
    padding-top: 6rem !important;
  }

  .lg\:pr-24 {
    padding-right: 6rem !important;
  }

  .lg\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .lg\:pl-24 {
    padding-left: 6rem !important;
  }

  .lg\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .lg\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .lg\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .lg\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .lg\:pt-28 {
    padding-top: 7rem !important;
  }

  .lg\:pr-28 {
    padding-right: 7rem !important;
  }

  .lg\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .lg\:pl-28 {
    padding-left: 7rem !important;
  }

  .lg\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .lg\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .lg\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .lg\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .lg\:pt-32 {
    padding-top: 8rem !important;
  }

  .lg\:pr-32 {
    padding-right: 8rem !important;
  }

  .lg\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .lg\:pl-32 {
    padding-left: 8rem !important;
  }

  .lg\:pt-36 {
    padding-top: 9rem !important;
  }

  .lg\:pr-36 {
    padding-right: 9rem !important;
  }

  .lg\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .lg\:pl-36 {
    padding-left: 9rem !important;
  }

  .lg\:pt-40 {
    padding-top: 10rem !important;
  }

  .lg\:pr-40 {
    padding-right: 10rem !important;
  }

  .lg\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .lg\:pl-40 {
    padding-left: 10rem !important;
  }

  .lg\:pt-44 {
    padding-top: 11rem !important;
  }

  .lg\:pr-44 {
    padding-right: 11rem !important;
  }

  .lg\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .lg\:pl-44 {
    padding-left: 11rem !important;
  }

  .lg\:pt-48 {
    padding-top: 12rem !important;
  }

  .lg\:pr-48 {
    padding-right: 12rem !important;
  }

  .lg\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .lg\:pl-48 {
    padding-left: 12rem !important;
  }

  .lg\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .lg\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .lg\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .lg\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .lg\:pt-52 {
    padding-top: 13rem !important;
  }

  .lg\:pr-52 {
    padding-right: 13rem !important;
  }

  .lg\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .lg\:pl-52 {
    padding-left: 13rem !important;
  }

  .lg\:pt-56 {
    padding-top: 14rem !important;
  }

  .lg\:pr-56 {
    padding-right: 14rem !important;
  }

  .lg\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .lg\:pl-56 {
    padding-left: 14rem !important;
  }

  .lg\:pt-60 {
    padding-top: 15rem !important;
  }

  .lg\:pr-60 {
    padding-right: 15rem !important;
  }

  .lg\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .lg\:pl-60 {
    padding-left: 15rem !important;
  }

  .lg\:pt-64 {
    padding-top: 16rem !important;
  }

  .lg\:pr-64 {
    padding-right: 16rem !important;
  }

  .lg\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .lg\:pl-64 {
    padding-left: 16rem !important;
  }

  .lg\:pt-72 {
    padding-top: 18rem !important;
  }

  .lg\:pr-72 {
    padding-right: 18rem !important;
  }

  .lg\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .lg\:pl-72 {
    padding-left: 18rem !important;
  }

  .lg\:pt-80 {
    padding-top: 20rem !important;
  }

  .lg\:pr-80 {
    padding-right: 20rem !important;
  }

  .lg\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .lg\:pl-80 {
    padding-left: 20rem !important;
  }

  .lg\:pt-90 {
    padding-top: 24rem !important;
  }

  .lg\:pr-90 {
    padding-right: 24rem !important;
  }

  .lg\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .lg\:pl-90 {
    padding-left: 24rem !important;
  }

  .lg\:pt-96 {
    padding-top: 24rem !important;
  }

  .lg\:pr-96 {
    padding-right: 24rem !important;
  }

  .lg\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .lg\:pl-96 {
    padding-left: 24rem !important;
  }

  .lg\:pt-100 {
    padding-top: 25rem !important;
  }

  .lg\:pr-100 {
    padding-right: 25rem !important;
  }

  .lg\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .lg\:pl-100 {
    padding-left: 25rem !important;
  }

  .lg\:pt-120 {
    padding-top: 30rem !important;
  }

  .lg\:pr-120 {
    padding-right: 30rem !important;
  }

  .lg\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .lg\:pl-120 {
    padding-left: 30rem !important;
  }

  .lg\:pt-128 {
    padding-top: 32rem !important;
  }

  .lg\:pr-128 {
    padding-right: 32rem !important;
  }

  .lg\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .lg\:pl-128 {
    padding-left: 32rem !important;
  }

  .lg\:pt-140 {
    padding-top: 35rem !important;
  }

  .lg\:pr-140 {
    padding-right: 35rem !important;
  }

  .lg\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .lg\:pl-140 {
    padding-left: 35rem !important;
  }

  .lg\:pt-160 {
    padding-top: 40rem !important;
  }

  .lg\:pr-160 {
    padding-right: 40rem !important;
  }

  .lg\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .lg\:pl-160 {
    padding-left: 40rem !important;
  }

  .lg\:pt-180 {
    padding-top: 45rem !important;
  }

  .lg\:pr-180 {
    padding-right: 45rem !important;
  }

  .lg\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .lg\:pl-180 {
    padding-left: 45rem !important;
  }

  .lg\:pt-192 {
    padding-top: 48rem !important;
  }

  .lg\:pr-192 {
    padding-right: 48rem !important;
  }

  .lg\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .lg\:pl-192 {
    padding-left: 48rem !important;
  }

  .lg\:pt-200 {
    padding-top: 50rem !important;
  }

  .lg\:pr-200 {
    padding-right: 50rem !important;
  }

  .lg\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .lg\:pl-200 {
    padding-left: 50rem !important;
  }

  .lg\:pt-240 {
    padding-top: 60rem !important;
  }

  .lg\:pr-240 {
    padding-right: 60rem !important;
  }

  .lg\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .lg\:pl-240 {
    padding-left: 60rem !important;
  }

  .lg\:pt-256 {
    padding-top: 64rem !important;
  }

  .lg\:pr-256 {
    padding-right: 64rem !important;
  }

  .lg\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .lg\:pl-256 {
    padding-left: 64rem !important;
  }

  .lg\:pt-280 {
    padding-top: 70rem !important;
  }

  .lg\:pr-280 {
    padding-right: 70rem !important;
  }

  .lg\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .lg\:pl-280 {
    padding-left: 70rem !important;
  }

  .lg\:pt-320 {
    padding-top: 80rem !important;
  }

  .lg\:pr-320 {
    padding-right: 80rem !important;
  }

  .lg\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .lg\:pl-320 {
    padding-left: 80rem !important;
  }

  .lg\:pt-360 {
    padding-top: 90rem !important;
  }

  .lg\:pr-360 {
    padding-right: 90rem !important;
  }

  .lg\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .lg\:pl-360 {
    padding-left: 90rem !important;
  }

  .lg\:pt-400 {
    padding-top: 100rem !important;
  }

  .lg\:pr-400 {
    padding-right: 100rem !important;
  }

  .lg\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .lg\:pl-400 {
    padding-left: 100rem !important;
  }

  .lg\:pt-480 {
    padding-top: 120rem !important;
  }

  .lg\:pr-480 {
    padding-right: 120rem !important;
  }

  .lg\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .lg\:pl-480 {
    padding-left: 120rem !important;
  }

  .lg\:pt-px {
    padding-top: 1px !important;
  }

  .lg\:pr-px {
    padding-right: 1px !important;
  }

  .lg\:pb-px {
    padding-bottom: 1px !important;
  }

  .lg\:pl-px {
    padding-left: 1px !important;
  }

  .lg\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .lg\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .lg\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .lg\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .lg\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .lg\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .lg\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .lg\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .lg\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .lg\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .lg\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .lg\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .lg\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .lg\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .lg\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .lg\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .lg\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .lg\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .lg\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .lg\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .lg\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .lg\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .lg\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .lg\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .lg\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .lg\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .lg\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .lg\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .lg\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .lg\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .lg\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .lg\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .lg\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .lg\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .lg\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .lg\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .lg\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .lg\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .lg\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .lg\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .lg\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .lg\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .lg\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .lg\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .lg\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .lg\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .lg\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .lg\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .lg\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .lg\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .lg\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .lg\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .lg\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .lg\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .lg\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .lg\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .lg\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .lg\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .lg\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .lg\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .lg\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .lg\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .lg\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .lg\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .lg\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .lg\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .lg\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .lg\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .lg\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .lg\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .lg\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .lg\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .lg\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .lg\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .lg\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .lg\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .lg\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .lg\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .lg\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .lg\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .lg\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .lg\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .lg\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .lg\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .lg\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .lg\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .lg\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .lg\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .lg\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .lg\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .lg\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .lg\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .lg\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .lg\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .lg\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .lg\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .lg\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .lg\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .lg\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .lg\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .lg\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .lg\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .lg\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .lg\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .lg\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .lg\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .lg\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .lg\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .lg\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .lg\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .lg\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .lg\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .lg\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .lg\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .lg\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .lg\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .lg\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .lg\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .lg\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .lg\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .lg\:pt-full {
    padding-top: 100% !important;
  }

  .lg\:pr-full {
    padding-right: 100% !important;
  }

  .lg\:pb-full {
    padding-bottom: 100% !important;
  }

  .lg\:pl-full {
    padding-left: 100% !important;
  }

  .lg\:pt-2px {
    padding-top: 2px !important;
  }

  .lg\:pr-2px {
    padding-right: 2px !important;
  }

  .lg\:pb-2px {
    padding-bottom: 2px !important;
  }

  .lg\:pl-2px {
    padding-left: 2px !important;
  }

  .lg\:static {
    position: static !important;
  }

  .lg\:fixed {
    position: fixed !important;
  }

  .lg\:absolute {
    position: absolute !important;
  }

  .lg\:relative {
    position: relative !important;
  }

  .lg\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .lg\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .lg\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .lg\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .lg\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .lg\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .lg\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .lg\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .lg\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .lg\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .lg\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .lg\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .lg\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .lg\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .lg\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .lg\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .lg\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .lg\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .lg\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .lg\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .lg\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .lg\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .lg\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .lg\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .lg\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .lg\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .lg\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .lg\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .lg\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .lg\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .lg\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .lg\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .lg\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .lg\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .lg\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .lg\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .lg\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .lg\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .lg\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .lg\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .lg\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .lg\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .lg\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .lg\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .lg\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .lg\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .lg\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .lg\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .lg\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .lg\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .lg\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .lg\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .lg\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .lg\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .lg\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .lg\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .lg\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .lg\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .lg\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .lg\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .lg\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lg\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lg\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lg\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .lg\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lg\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .lg\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .lg\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .lg\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .lg\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .lg\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lg\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lg\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lg\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lg\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lg\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .lg\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lg\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .lg\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lg\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .lg\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lg\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .lg\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lg\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .lg\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lg\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .lg\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .lg\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .lg\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .lg\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .lg\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .lg\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .lg\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .lg\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .lg\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .lg\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .lg\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .lg\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .lg\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .lg\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .lg\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .lg\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .lg\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .lg\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .lg\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .lg\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .lg\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .lg\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .lg\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .lg\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .lg\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .lg\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .lg\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .lg\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .lg\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .lg\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .lg\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .lg\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .lg\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .lg\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .lg\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .lg\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .lg\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .lg\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .lg\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .lg\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .lg\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .lg\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .lg\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .lg\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .lg\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .lg\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .lg\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .lg\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .lg\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .lg\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .lg\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .lg\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .lg\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .lg\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .lg\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .lg\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .lg\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .lg\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .lg\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .lg\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .lg\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .lg\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .lg\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .lg\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .lg\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .lg\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .lg\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .lg\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .lg\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .lg\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .lg\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .lg\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .lg\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .lg\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .lg\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .lg\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .lg\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .lg\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .lg\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .lg\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .lg\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .lg\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .lg\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .lg\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .lg\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .lg\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .lg\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .lg\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .lg\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .lg\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .lg\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .lg\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .lg\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .lg\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .lg\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .lg\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .lg\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .lg\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .lg\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .lg\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .lg\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .lg\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .lg\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .lg\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .lg\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .lg\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .lg\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .lg\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .lg\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .lg\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .lg\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .lg\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .lg\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .lg\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .lg\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .lg\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .lg\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .lg\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .lg\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .lg\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .lg\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lg\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .lg\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lg\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lg\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lg\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lg\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .lg\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .lg\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lg\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .lg\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .lg\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .lg\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .lg\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .lg\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .lg\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .lg\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .lg\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .lg\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .lg\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .lg\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .lg\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lg\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lg\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lg\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lg\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .lg\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lg\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lg\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .lg\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lg\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .lg\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .lg\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .lg\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lg\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .lg\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .lg\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lg\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lg\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .lg\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .lg\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lg\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .lg\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .lg\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .lg\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lg\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lg\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .lg\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .lg\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .lg\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lg\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .lg\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .lg\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .lg\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .lg\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .lg\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .lg\:top-0 {
    top: 0 !important;
  }

  .lg\:right-0 {
    right: 0 !important;
  }

  .lg\:bottom-0 {
    bottom: 0 !important;
  }

  .lg\:left-0 {
    left: 0 !important;
  }

  .lg\:top-1 {
    top: 0.25rem !important;
  }

  .lg\:right-1 {
    right: 0.25rem !important;
  }

  .lg\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .lg\:left-1 {
    left: 0.25rem !important;
  }

  .lg\:top-2 {
    top: 0.5rem !important;
  }

  .lg\:right-2 {
    right: 0.5rem !important;
  }

  .lg\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .lg\:left-2 {
    left: 0.5rem !important;
  }

  .lg\:top-3 {
    top: 0.75rem !important;
  }

  .lg\:right-3 {
    right: 0.75rem !important;
  }

  .lg\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .lg\:left-3 {
    left: 0.75rem !important;
  }

  .lg\:top-4 {
    top: 1rem !important;
  }

  .lg\:right-4 {
    right: 1rem !important;
  }

  .lg\:bottom-4 {
    bottom: 1rem !important;
  }

  .lg\:left-4 {
    left: 1rem !important;
  }

  .lg\:top-5 {
    top: 1.25rem !important;
  }

  .lg\:right-5 {
    right: 1.25rem !important;
  }

  .lg\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .lg\:left-5 {
    left: 1.25rem !important;
  }

  .lg\:top-6 {
    top: 1.5rem !important;
  }

  .lg\:right-6 {
    right: 1.5rem !important;
  }

  .lg\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .lg\:left-6 {
    left: 1.5rem !important;
  }

  .lg\:top-7 {
    top: 1.75rem !important;
  }

  .lg\:right-7 {
    right: 1.75rem !important;
  }

  .lg\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .lg\:left-7 {
    left: 1.75rem !important;
  }

  .lg\:top-8 {
    top: 2rem !important;
  }

  .lg\:right-8 {
    right: 2rem !important;
  }

  .lg\:bottom-8 {
    bottom: 2rem !important;
  }

  .lg\:left-8 {
    left: 2rem !important;
  }

  .lg\:top-9 {
    top: 2.25rem !important;
  }

  .lg\:right-9 {
    right: 2.25rem !important;
  }

  .lg\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .lg\:left-9 {
    left: 2.25rem !important;
  }

  .lg\:top-10 {
    top: 2.5rem !important;
  }

  .lg\:right-10 {
    right: 2.5rem !important;
  }

  .lg\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .lg\:left-10 {
    left: 2.5rem !important;
  }

  .lg\:top-11 {
    top: 2.75rem !important;
  }

  .lg\:right-11 {
    right: 2.75rem !important;
  }

  .lg\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .lg\:left-11 {
    left: 2.75rem !important;
  }

  .lg\:top-12 {
    top: 3rem !important;
  }

  .lg\:right-12 {
    right: 3rem !important;
  }

  .lg\:bottom-12 {
    bottom: 3rem !important;
  }

  .lg\:left-12 {
    left: 3rem !important;
  }

  .lg\:top-13 {
    top: 3.25rem !important;
  }

  .lg\:right-13 {
    right: 3.25rem !important;
  }

  .lg\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .lg\:left-13 {
    left: 3.25rem !important;
  }

  .lg\:top-14 {
    top: 3.5rem !important;
  }

  .lg\:right-14 {
    right: 3.5rem !important;
  }

  .lg\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .lg\:left-14 {
    left: 3.5rem !important;
  }

  .lg\:top-15 {
    top: 3.75rem !important;
  }

  .lg\:right-15 {
    right: 3.75rem !important;
  }

  .lg\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .lg\:left-15 {
    left: 3.75rem !important;
  }

  .lg\:top-16 {
    top: 4rem !important;
  }

  .lg\:right-16 {
    right: 4rem !important;
  }

  .lg\:bottom-16 {
    bottom: 4rem !important;
  }

  .lg\:left-16 {
    left: 4rem !important;
  }

  .lg\:top-18 {
    top: 4.5rem !important;
  }

  .lg\:right-18 {
    right: 4.5rem !important;
  }

  .lg\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .lg\:left-18 {
    left: 4.5rem !important;
  }

  .lg\:top-20 {
    top: 5rem !important;
  }

  .lg\:right-20 {
    right: 5rem !important;
  }

  .lg\:bottom-20 {
    bottom: 5rem !important;
  }

  .lg\:left-20 {
    left: 5rem !important;
  }

  .lg\:top-22 {
    top: 5.5rem !important;
  }

  .lg\:right-22 {
    right: 5.5rem !important;
  }

  .lg\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .lg\:left-22 {
    left: 5.5rem !important;
  }

  .lg\:top-24 {
    top: 6rem !important;
  }

  .lg\:right-24 {
    right: 6rem !important;
  }

  .lg\:bottom-24 {
    bottom: 6rem !important;
  }

  .lg\:left-24 {
    left: 6rem !important;
  }

  .lg\:top-26 {
    top: 6.5rem !important;
  }

  .lg\:right-26 {
    right: 6.5rem !important;
  }

  .lg\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .lg\:left-26 {
    left: 6.5rem !important;
  }

  .lg\:top-28 {
    top: 7rem !important;
  }

  .lg\:right-28 {
    right: 7rem !important;
  }

  .lg\:bottom-28 {
    bottom: 7rem !important;
  }

  .lg\:left-28 {
    left: 7rem !important;
  }

  .lg\:top-30 {
    top: 7.5rem !important;
  }

  .lg\:right-30 {
    right: 7.5rem !important;
  }

  .lg\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .lg\:left-30 {
    left: 7.5rem !important;
  }

  .lg\:top-32 {
    top: 8rem !important;
  }

  .lg\:right-32 {
    right: 8rem !important;
  }

  .lg\:bottom-32 {
    bottom: 8rem !important;
  }

  .lg\:left-32 {
    left: 8rem !important;
  }

  .lg\:top-36 {
    top: 9rem !important;
  }

  .lg\:right-36 {
    right: 9rem !important;
  }

  .lg\:bottom-36 {
    bottom: 9rem !important;
  }

  .lg\:left-36 {
    left: 9rem !important;
  }

  .lg\:top-40 {
    top: 10rem !important;
  }

  .lg\:right-40 {
    right: 10rem !important;
  }

  .lg\:bottom-40 {
    bottom: 10rem !important;
  }

  .lg\:left-40 {
    left: 10rem !important;
  }

  .lg\:top-44 {
    top: 11rem !important;
  }

  .lg\:right-44 {
    right: 11rem !important;
  }

  .lg\:bottom-44 {
    bottom: 11rem !important;
  }

  .lg\:left-44 {
    left: 11rem !important;
  }

  .lg\:top-48 {
    top: 12rem !important;
  }

  .lg\:right-48 {
    right: 12rem !important;
  }

  .lg\:bottom-48 {
    bottom: 12rem !important;
  }

  .lg\:left-48 {
    left: 12rem !important;
  }

  .lg\:top-50 {
    top: 12.5rem !important;
  }

  .lg\:right-50 {
    right: 12.5rem !important;
  }

  .lg\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .lg\:left-50 {
    left: 12.5rem !important;
  }

  .lg\:top-52 {
    top: 13rem !important;
  }

  .lg\:right-52 {
    right: 13rem !important;
  }

  .lg\:bottom-52 {
    bottom: 13rem !important;
  }

  .lg\:left-52 {
    left: 13rem !important;
  }

  .lg\:top-56 {
    top: 14rem !important;
  }

  .lg\:right-56 {
    right: 14rem !important;
  }

  .lg\:bottom-56 {
    bottom: 14rem !important;
  }

  .lg\:left-56 {
    left: 14rem !important;
  }

  .lg\:top-60 {
    top: 15rem !important;
  }

  .lg\:right-60 {
    right: 15rem !important;
  }

  .lg\:bottom-60 {
    bottom: 15rem !important;
  }

  .lg\:left-60 {
    left: 15rem !important;
  }

  .lg\:top-64 {
    top: 16rem !important;
  }

  .lg\:right-64 {
    right: 16rem !important;
  }

  .lg\:bottom-64 {
    bottom: 16rem !important;
  }

  .lg\:left-64 {
    left: 16rem !important;
  }

  .lg\:top-72 {
    top: 18rem !important;
  }

  .lg\:right-72 {
    right: 18rem !important;
  }

  .lg\:bottom-72 {
    bottom: 18rem !important;
  }

  .lg\:left-72 {
    left: 18rem !important;
  }

  .lg\:top-80 {
    top: 20rem !important;
  }

  .lg\:right-80 {
    right: 20rem !important;
  }

  .lg\:bottom-80 {
    bottom: 20rem !important;
  }

  .lg\:left-80 {
    left: 20rem !important;
  }

  .lg\:top-90 {
    top: 24rem !important;
  }

  .lg\:right-90 {
    right: 24rem !important;
  }

  .lg\:bottom-90 {
    bottom: 24rem !important;
  }

  .lg\:left-90 {
    left: 24rem !important;
  }

  .lg\:top-96 {
    top: 24rem !important;
  }

  .lg\:right-96 {
    right: 24rem !important;
  }

  .lg\:bottom-96 {
    bottom: 24rem !important;
  }

  .lg\:left-96 {
    left: 24rem !important;
  }

  .lg\:top-100 {
    top: 25rem !important;
  }

  .lg\:right-100 {
    right: 25rem !important;
  }

  .lg\:bottom-100 {
    bottom: 25rem !important;
  }

  .lg\:left-100 {
    left: 25rem !important;
  }

  .lg\:top-120 {
    top: 30rem !important;
  }

  .lg\:right-120 {
    right: 30rem !important;
  }

  .lg\:bottom-120 {
    bottom: 30rem !important;
  }

  .lg\:left-120 {
    left: 30rem !important;
  }

  .lg\:top-128 {
    top: 32rem !important;
  }

  .lg\:right-128 {
    right: 32rem !important;
  }

  .lg\:bottom-128 {
    bottom: 32rem !important;
  }

  .lg\:left-128 {
    left: 32rem !important;
  }

  .lg\:top-140 {
    top: 35rem !important;
  }

  .lg\:right-140 {
    right: 35rem !important;
  }

  .lg\:bottom-140 {
    bottom: 35rem !important;
  }

  .lg\:left-140 {
    left: 35rem !important;
  }

  .lg\:top-160 {
    top: 40rem !important;
  }

  .lg\:right-160 {
    right: 40rem !important;
  }

  .lg\:bottom-160 {
    bottom: 40rem !important;
  }

  .lg\:left-160 {
    left: 40rem !important;
  }

  .lg\:top-180 {
    top: 45rem !important;
  }

  .lg\:right-180 {
    right: 45rem !important;
  }

  .lg\:bottom-180 {
    bottom: 45rem !important;
  }

  .lg\:left-180 {
    left: 45rem !important;
  }

  .lg\:top-192 {
    top: 48rem !important;
  }

  .lg\:right-192 {
    right: 48rem !important;
  }

  .lg\:bottom-192 {
    bottom: 48rem !important;
  }

  .lg\:left-192 {
    left: 48rem !important;
  }

  .lg\:top-200 {
    top: 50rem !important;
  }

  .lg\:right-200 {
    right: 50rem !important;
  }

  .lg\:bottom-200 {
    bottom: 50rem !important;
  }

  .lg\:left-200 {
    left: 50rem !important;
  }

  .lg\:top-240 {
    top: 60rem !important;
  }

  .lg\:right-240 {
    right: 60rem !important;
  }

  .lg\:bottom-240 {
    bottom: 60rem !important;
  }

  .lg\:left-240 {
    left: 60rem !important;
  }

  .lg\:top-256 {
    top: 64rem !important;
  }

  .lg\:right-256 {
    right: 64rem !important;
  }

  .lg\:bottom-256 {
    bottom: 64rem !important;
  }

  .lg\:left-256 {
    left: 64rem !important;
  }

  .lg\:top-280 {
    top: 70rem !important;
  }

  .lg\:right-280 {
    right: 70rem !important;
  }

  .lg\:bottom-280 {
    bottom: 70rem !important;
  }

  .lg\:left-280 {
    left: 70rem !important;
  }

  .lg\:top-320 {
    top: 80rem !important;
  }

  .lg\:right-320 {
    right: 80rem !important;
  }

  .lg\:bottom-320 {
    bottom: 80rem !important;
  }

  .lg\:left-320 {
    left: 80rem !important;
  }

  .lg\:top-360 {
    top: 90rem !important;
  }

  .lg\:right-360 {
    right: 90rem !important;
  }

  .lg\:bottom-360 {
    bottom: 90rem !important;
  }

  .lg\:left-360 {
    left: 90rem !important;
  }

  .lg\:top-400 {
    top: 100rem !important;
  }

  .lg\:right-400 {
    right: 100rem !important;
  }

  .lg\:bottom-400 {
    bottom: 100rem !important;
  }

  .lg\:left-400 {
    left: 100rem !important;
  }

  .lg\:top-480 {
    top: 120rem !important;
  }

  .lg\:right-480 {
    right: 120rem !important;
  }

  .lg\:bottom-480 {
    bottom: 120rem !important;
  }

  .lg\:left-480 {
    left: 120rem !important;
  }

  .lg\:top-auto {
    top: auto !important;
  }

  .lg\:right-auto {
    right: auto !important;
  }

  .lg\:bottom-auto {
    bottom: auto !important;
  }

  .lg\:left-auto {
    left: auto !important;
  }

  .lg\:top-px {
    top: 1px !important;
  }

  .lg\:right-px {
    right: 1px !important;
  }

  .lg\:bottom-px {
    bottom: 1px !important;
  }

  .lg\:left-px {
    left: 1px !important;
  }

  .lg\:top-0\.5 {
    top: 0.125rem !important;
  }

  .lg\:right-0\.5 {
    right: 0.125rem !important;
  }

  .lg\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .lg\:left-0\.5 {
    left: 0.125rem !important;
  }

  .lg\:top-1\.5 {
    top: 0.375rem !important;
  }

  .lg\:right-1\.5 {
    right: 0.375rem !important;
  }

  .lg\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .lg\:left-1\.5 {
    left: 0.375rem !important;
  }

  .lg\:top-2\.5 {
    top: 0.625rem !important;
  }

  .lg\:right-2\.5 {
    right: 0.625rem !important;
  }

  .lg\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .lg\:left-2\.5 {
    left: 0.625rem !important;
  }

  .lg\:top-3\.5 {
    top: 0.875rem !important;
  }

  .lg\:right-3\.5 {
    right: 0.875rem !important;
  }

  .lg\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .lg\:left-3\.5 {
    left: 0.875rem !important;
  }

  .lg\:top-1\/2 {
    top: 50% !important;
  }

  .lg\:right-1\/2 {
    right: 50% !important;
  }

  .lg\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .lg\:left-1\/2 {
    left: 50% !important;
  }

  .lg\:top-1\/3 {
    top: 33.333333% !important;
  }

  .lg\:right-1\/3 {
    right: 33.333333% !important;
  }

  .lg\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .lg\:left-1\/3 {
    left: 33.333333% !important;
  }

  .lg\:top-2\/3 {
    top: 66.666667% !important;
  }

  .lg\:right-2\/3 {
    right: 66.666667% !important;
  }

  .lg\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .lg\:left-2\/3 {
    left: 66.666667% !important;
  }

  .lg\:top-1\/4 {
    top: 25% !important;
  }

  .lg\:right-1\/4 {
    right: 25% !important;
  }

  .lg\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .lg\:left-1\/4 {
    left: 25% !important;
  }

  .lg\:top-2\/4 {
    top: 50% !important;
  }

  .lg\:right-2\/4 {
    right: 50% !important;
  }

  .lg\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .lg\:left-2\/4 {
    left: 50% !important;
  }

  .lg\:top-3\/4 {
    top: 75% !important;
  }

  .lg\:right-3\/4 {
    right: 75% !important;
  }

  .lg\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .lg\:left-3\/4 {
    left: 75% !important;
  }

  .lg\:top-1\/5 {
    top: 20% !important;
  }

  .lg\:right-1\/5 {
    right: 20% !important;
  }

  .lg\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .lg\:left-1\/5 {
    left: 20% !important;
  }

  .lg\:top-2\/5 {
    top: 40% !important;
  }

  .lg\:right-2\/5 {
    right: 40% !important;
  }

  .lg\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .lg\:left-2\/5 {
    left: 40% !important;
  }

  .lg\:top-3\/5 {
    top: 60% !important;
  }

  .lg\:right-3\/5 {
    right: 60% !important;
  }

  .lg\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .lg\:left-3\/5 {
    left: 60% !important;
  }

  .lg\:top-4\/5 {
    top: 80% !important;
  }

  .lg\:right-4\/5 {
    right: 80% !important;
  }

  .lg\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .lg\:left-4\/5 {
    left: 80% !important;
  }

  .lg\:top-1\/6 {
    top: 16.666667% !important;
  }

  .lg\:right-1\/6 {
    right: 16.666667% !important;
  }

  .lg\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .lg\:left-1\/6 {
    left: 16.666667% !important;
  }

  .lg\:top-2\/6 {
    top: 33.333333% !important;
  }

  .lg\:right-2\/6 {
    right: 33.333333% !important;
  }

  .lg\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .lg\:left-2\/6 {
    left: 33.333333% !important;
  }

  .lg\:top-3\/6 {
    top: 50% !important;
  }

  .lg\:right-3\/6 {
    right: 50% !important;
  }

  .lg\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .lg\:left-3\/6 {
    left: 50% !important;
  }

  .lg\:top-4\/6 {
    top: 66.666667% !important;
  }

  .lg\:right-4\/6 {
    right: 66.666667% !important;
  }

  .lg\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .lg\:left-4\/6 {
    left: 66.666667% !important;
  }

  .lg\:top-5\/6 {
    top: 83.333333% !important;
  }

  .lg\:right-5\/6 {
    right: 83.333333% !important;
  }

  .lg\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .lg\:left-5\/6 {
    left: 83.333333% !important;
  }

  .lg\:top-1\/12 {
    top: 8.333333% !important;
  }

  .lg\:right-1\/12 {
    right: 8.333333% !important;
  }

  .lg\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .lg\:left-1\/12 {
    left: 8.333333% !important;
  }

  .lg\:top-2\/12 {
    top: 16.666667% !important;
  }

  .lg\:right-2\/12 {
    right: 16.666667% !important;
  }

  .lg\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .lg\:left-2\/12 {
    left: 16.666667% !important;
  }

  .lg\:top-3\/12 {
    top: 25% !important;
  }

  .lg\:right-3\/12 {
    right: 25% !important;
  }

  .lg\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .lg\:left-3\/12 {
    left: 25% !important;
  }

  .lg\:top-4\/12 {
    top: 33.333333% !important;
  }

  .lg\:right-4\/12 {
    right: 33.333333% !important;
  }

  .lg\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .lg\:left-4\/12 {
    left: 33.333333% !important;
  }

  .lg\:top-5\/12 {
    top: 41.666667% !important;
  }

  .lg\:right-5\/12 {
    right: 41.666667% !important;
  }

  .lg\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .lg\:left-5\/12 {
    left: 41.666667% !important;
  }

  .lg\:top-6\/12 {
    top: 50% !important;
  }

  .lg\:right-6\/12 {
    right: 50% !important;
  }

  .lg\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .lg\:left-6\/12 {
    left: 50% !important;
  }

  .lg\:top-7\/12 {
    top: 58.333333% !important;
  }

  .lg\:right-7\/12 {
    right: 58.333333% !important;
  }

  .lg\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .lg\:left-7\/12 {
    left: 58.333333% !important;
  }

  .lg\:top-8\/12 {
    top: 66.666667% !important;
  }

  .lg\:right-8\/12 {
    right: 66.666667% !important;
  }

  .lg\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .lg\:left-8\/12 {
    left: 66.666667% !important;
  }

  .lg\:top-9\/12 {
    top: 75% !important;
  }

  .lg\:right-9\/12 {
    right: 75% !important;
  }

  .lg\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .lg\:left-9\/12 {
    left: 75% !important;
  }

  .lg\:top-10\/12 {
    top: 83.333333% !important;
  }

  .lg\:right-10\/12 {
    right: 83.333333% !important;
  }

  .lg\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .lg\:left-10\/12 {
    left: 83.333333% !important;
  }

  .lg\:top-11\/12 {
    top: 91.666667% !important;
  }

  .lg\:right-11\/12 {
    right: 91.666667% !important;
  }

  .lg\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .lg\:left-11\/12 {
    left: 91.666667% !important;
  }

  .lg\:top-full {
    top: 100% !important;
  }

  .lg\:right-full {
    right: 100% !important;
  }

  .lg\:bottom-full {
    bottom: 100% !important;
  }

  .lg\:left-full {
    left: 100% !important;
  }

  .lg\:top-2px {
    top: 2px !important;
  }

  .lg\:right-2px {
    right: 2px !important;
  }

  .lg\:bottom-2px {
    bottom: 2px !important;
  }

  .lg\:left-2px {
    left: 2px !important;
  }

  .lg\:text-left {
    text-align: left !important;
  }

  .lg\:text-center {
    text-align: center !important;
  }

  .lg\:text-right {
    text-align: right !important;
  }

  .lg\:text-justify {
    text-align: justify !important;
  }

  .lg\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .lg\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .lg\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .lg\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .lg\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .lg\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .lg\:visible {
    visibility: visible !important;
  }

  .lg\:invisible {
    visibility: hidden !important;
  }

  .lg\:whitespace-normal {
    white-space: normal !important;
  }

  .lg\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .lg\:whitespace-pre {
    white-space: pre !important;
  }

  .lg\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .lg\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .lg\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .lg\:break-words {
    overflow-wrap: break-word !important;
  }

  .lg\:break-all {
    word-break: break-all !important;
  }

  .lg\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .lg\:w-0 {
    width: 0 !important;
  }

  .lg\:w-1 {
    width: 0.25rem !important;
  }

  .lg\:w-2 {
    width: 0.5rem !important;
  }

  .lg\:w-3 {
    width: 0.75rem !important;
  }

  .lg\:w-4 {
    width: 1rem !important;
  }

  .lg\:w-5 {
    width: 1.25rem !important;
  }

  .lg\:w-6 {
    width: 1.5rem !important;
  }

  .lg\:w-7 {
    width: 1.75rem !important;
  }

  .lg\:w-8 {
    width: 2rem !important;
  }

  .lg\:w-9 {
    width: 2.25rem !important;
  }

  .lg\:w-10 {
    width: 2.5rem !important;
  }

  .lg\:w-11 {
    width: 2.75rem !important;
  }

  .lg\:w-12 {
    width: 3rem !important;
  }

  .lg\:w-13 {
    width: 3.25rem !important;
  }

  .lg\:w-14 {
    width: 3.5rem !important;
  }

  .lg\:w-15 {
    width: 3.75rem !important;
  }

  .lg\:w-16 {
    width: 4rem !important;
  }

  .lg\:w-18 {
    width: 4.5rem !important;
  }

  .lg\:w-20 {
    width: 5rem !important;
  }

  .lg\:w-22 {
    width: 5.5rem !important;
  }

  .lg\:w-24 {
    width: 6rem !important;
  }

  .lg\:w-26 {
    width: 6.5rem !important;
  }

  .lg\:w-28 {
    width: 7rem !important;
  }

  .lg\:w-30 {
    width: 7.5rem !important;
  }

  .lg\:w-32 {
    width: 8rem !important;
  }

  .lg\:w-36 {
    width: 9rem !important;
  }

  .lg\:w-40 {
    width: 10rem !important;
  }

  .lg\:w-44 {
    width: 11rem !important;
  }

  .lg\:w-48 {
    width: 12rem !important;
  }

  .lg\:w-50 {
    width: 12.5rem !important;
  }

  .lg\:w-52 {
    width: 13rem !important;
  }

  .lg\:w-56 {
    width: 14rem !important;
  }

  .lg\:w-60 {
    width: 15rem !important;
  }

  .lg\:w-64 {
    width: 16rem !important;
  }

  .lg\:w-72 {
    width: 18rem !important;
  }

  .lg\:w-80 {
    width: 20rem !important;
  }

  .lg\:w-90 {
    width: 24rem !important;
  }

  .lg\:w-96 {
    width: 24rem !important;
  }

  .lg\:w-100 {
    width: 25rem !important;
  }

  .lg\:w-120 {
    width: 30rem !important;
  }

  .lg\:w-128 {
    width: 32rem !important;
  }

  .lg\:w-140 {
    width: 35rem !important;
  }

  .lg\:w-160 {
    width: 40rem !important;
  }

  .lg\:w-180 {
    width: 45rem !important;
  }

  .lg\:w-192 {
    width: 48rem !important;
  }

  .lg\:w-200 {
    width: 50rem !important;
  }

  .lg\:w-240 {
    width: 60rem !important;
  }

  .lg\:w-256 {
    width: 64rem !important;
  }

  .lg\:w-280 {
    width: 70rem !important;
  }

  .lg\:w-320 {
    width: 80rem !important;
  }

  .lg\:w-360 {
    width: 90rem !important;
  }

  .lg\:w-400 {
    width: 100rem !important;
  }

  .lg\:w-480 {
    width: 120rem !important;
  }

  .lg\:w-auto {
    width: auto !important;
  }

  .lg\:w-px {
    width: 1px !important;
  }

  .lg\:w-0\.5 {
    width: 0.125rem !important;
  }

  .lg\:w-1\.5 {
    width: 0.375rem !important;
  }

  .lg\:w-2\.5 {
    width: 0.625rem !important;
  }

  .lg\:w-3\.5 {
    width: 0.875rem !important;
  }

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

  .lg\:w-1\/3 {
    width: 33.333333% !important;
  }

  .lg\:w-2\/3 {
    width: 66.666667% !important;
  }

  .lg\:w-1\/4 {
    width: 25% !important;
  }

  .lg\:w-2\/4 {
    width: 50% !important;
  }

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

  .lg\:w-1\/5 {
    width: 20% !important;
  }

  .lg\:w-2\/5 {
    width: 40% !important;
  }

  .lg\:w-3\/5 {
    width: 60% !important;
  }

  .lg\:w-4\/5 {
    width: 80% !important;
  }

  .lg\:w-1\/6 {
    width: 16.666667% !important;
  }

  .lg\:w-2\/6 {
    width: 33.333333% !important;
  }

  .lg\:w-3\/6 {
    width: 50% !important;
  }

  .lg\:w-4\/6 {
    width: 66.666667% !important;
  }

  .lg\:w-5\/6 {
    width: 83.333333% !important;
  }

  .lg\:w-1\/12 {
    width: 8.333333% !important;
  }

  .lg\:w-2\/12 {
    width: 16.666667% !important;
  }

  .lg\:w-3\/12 {
    width: 25% !important;
  }

  .lg\:w-4\/12 {
    width: 33.333333% !important;
  }

  .lg\:w-5\/12 {
    width: 41.666667% !important;
  }

  .lg\:w-6\/12 {
    width: 50% !important;
  }

  .lg\:w-7\/12 {
    width: 58.333333% !important;
  }

  .lg\:w-8\/12 {
    width: 66.666667% !important;
  }

  .lg\:w-9\/12 {
    width: 75% !important;
  }

  .lg\:w-10\/12 {
    width: 83.333333% !important;
  }

  .lg\:w-11\/12 {
    width: 91.666667% !important;
  }

  .lg\:w-full {
    width: 100% !important;
  }

  .lg\:w-2px {
    width: 2px !important;
  }

  .lg\:w-screen {
    width: 100vw !important;
  }

  .lg\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .lg\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .lg\:z-0 {
    z-index: 0 !important;
  }

  .lg\:z-10 {
    z-index: 10 !important;
  }

  .lg\:z-20 {
    z-index: 20 !important;
  }

  .lg\:z-30 {
    z-index: 30 !important;
  }

  .lg\:z-40 {
    z-index: 40 !important;
  }

  .lg\:z-50 {
    z-index: 50 !important;
  }

  .lg\:z-60 {
    z-index: 60 !important;
  }

  .lg\:z-70 {
    z-index: 70 !important;
  }

  .lg\:z-80 {
    z-index: 80 !important;
  }

  .lg\:z-90 {
    z-index: 90 !important;
  }

  .lg\:z-99 {
    z-index: 99 !important;
  }

  .lg\:z-999 {
    z-index: 999 !important;
  }

  .lg\:z-9999 {
    z-index: 9999 !important;
  }

  .lg\:z-99999 {
    z-index: 99999 !important;
  }

  .lg\:z-auto {
    z-index: auto !important;
  }

  .lg\:-z-1 {
    z-index: -1 !important;
  }

  .lg\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .lg\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .lg\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .lg\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .lg\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .lg\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .lg\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .lg\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .lg\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .lg\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .lg\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .lg\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .lg\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .lg\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .lg\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .lg\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .lg\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .lg\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .lg\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .lg\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .lg\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .lg\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .lg\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .lg\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .lg\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .lg\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .lg\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .lg\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .lg\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .lg\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .lg\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .lg\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .lg\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .lg\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .lg\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .lg\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .lg\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .lg\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .lg\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .lg\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .lg\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .lg\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .lg\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .lg\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .lg\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .lg\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .lg\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .lg\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .lg\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .lg\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .lg\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .lg\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .lg\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .lg\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .lg\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .lg\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .lg\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .lg\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .lg\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lg\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lg\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lg\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .lg\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lg\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .lg\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .lg\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .lg\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .lg\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .lg\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .lg\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lg\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lg\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lg\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .lg\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .lg\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .lg\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .lg\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lg\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .lg\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lg\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .lg\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lg\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .lg\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .lg\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .lg\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .lg\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .lg\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .lg\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .lg\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .lg\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .lg\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .lg\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .lg\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .lg\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .lg\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .lg\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .lg\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .lg\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .lg\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .lg\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .lg\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .lg\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .lg\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .lg\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .lg\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .lg\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .lg\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .lg\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .lg\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .lg\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .lg\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .lg\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .lg\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .lg\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .lg\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .lg\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .lg\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .lg\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .lg\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .lg\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .lg\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .lg\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .lg\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .lg\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .lg\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .lg\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .lg\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .lg\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .lg\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .lg\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .lg\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .lg\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .lg\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .lg\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .lg\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .lg\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .lg\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .lg\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .lg\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .lg\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .lg\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .lg\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .lg\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .lg\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .lg\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lg\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lg\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lg\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .lg\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lg\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .lg\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .lg\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .lg\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .lg\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .lg\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .lg\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lg\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lg\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lg\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .lg\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .lg\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .lg\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .lg\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lg\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .lg\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lg\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .lg\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lg\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .lg\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .lg\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .lg\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .lg\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .lg\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .lg\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .lg\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .lg\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .lg\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .lg\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .lg\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .lg\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .lg\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .lg\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .lg\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .lg\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .lg\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .lg\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .lg\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .lg\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .lg\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .lg\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .lg\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .lg\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .lg\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .lg\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .lg\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .lg\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .lg\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .lg\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .lg\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .lg\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .lg\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .lg\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .lg\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .lg\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .lg\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .lg\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .lg\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .lg\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .lg\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .lg\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .lg\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .lg\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .lg\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .lg\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .lg\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .lg\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .lg\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .lg\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .lg\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .lg\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .lg\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .lg\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .lg\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .lg\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .lg\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .lg\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .lg\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .lg\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .lg\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .lg\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .lg\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lg\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lg\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lg\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .lg\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lg\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .lg\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .lg\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .lg\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .lg\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .lg\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .lg\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lg\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lg\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lg\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .lg\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .lg\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .lg\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .lg\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lg\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .lg\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lg\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .lg\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lg\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .lg\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .lg\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .lg\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .lg\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .lg\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .lg\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .lg\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .lg\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .lg\:col-auto {
    grid-column: auto !important;
  }

  .lg\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

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

  .lg\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .lg\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .lg\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .lg\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .lg\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .lg\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .lg\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .lg\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .lg\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .lg\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .lg\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .lg\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .lg\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .lg\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .lg\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .lg\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .lg\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .lg\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .lg\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .lg\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .lg\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .lg\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .lg\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .lg\:col-start-auto {
    grid-column-start: auto !important;
  }

  .lg\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .lg\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .lg\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .lg\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .lg\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .lg\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .lg\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .lg\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .lg\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .lg\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .lg\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .lg\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .lg\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .lg\:col-end-auto {
    grid-column-end: auto !important;
  }

  .lg\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .lg\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .lg\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .lg\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .lg\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .lg\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .lg\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .lg\:row-auto {
    grid-row: auto !important;
  }

  .lg\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .lg\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .lg\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .lg\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .lg\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .lg\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .lg\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .lg\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .lg\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .lg\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .lg\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .lg\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .lg\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .lg\:row-start-auto {
    grid-row-start: auto !important;
  }

  .lg\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .lg\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .lg\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .lg\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .lg\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .lg\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .lg\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .lg\:row-end-auto {
    grid-row-end: auto !important;
  }

  .lg\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .lg\:transform-none {
    transform: none !important;
  }

  .lg\:origin-center {
    transform-origin: center !important;
  }

  .lg\:origin-top {
    transform-origin: top !important;
  }

  .lg\:origin-top-right {
    transform-origin: top right !important;
  }

  .lg\:origin-right {
    transform-origin: right !important;
  }

  .lg\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .lg\:origin-bottom {
    transform-origin: bottom !important;
  }

  .lg\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .lg\:origin-left {
    transform-origin: left !important;
  }

  .lg\:origin-top-left {
    transform-origin: top left !important;
  }

  .lg\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .lg\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .lg\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .lg\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .lg\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .lg\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .lg\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .lg\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .lg\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .lg\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .lg\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .lg\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .lg\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .lg\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .lg\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .lg\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .lg\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .lg\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .lg\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .lg\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .lg\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .lg\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .lg\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .lg\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .lg\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .lg\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .lg\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .lg\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .lg\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .lg\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (min-width: 1440px) {
  .xl\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .xl\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .xl\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .xl\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .xl\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .xl\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .xl\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .xl\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .xl\:rounded-none {
    border-radius: 0 !important;
  }

  .xl\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .xl\:rounded {
    border-radius: 0.25rem !important;
  }

  .xl\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .xl\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .xl\:rounded-full {
    border-radius: 9999px !important;
  }

  .xl\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .xl\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .xl\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xl\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xl\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .xl\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .xl\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .xl\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .xl\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .xl\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .xl\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .xl\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .xl\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .xl\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .xl\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .xl\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .xl\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .xl\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .xl\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .xl\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .xl\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .xl\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .xl\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .xl\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .xl\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .xl\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .xl\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .xl\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .xl\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .xl\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .xl\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .xl\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .xl\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .xl\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .xl\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .xl\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .xl\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .xl\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .xl\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .xl\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .xl\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .xl\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .xl\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .xl\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .xl\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .xl\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:border-0 {
    border-width: 0 !important;
  }

  .xl\:border-2 {
    border-width: 2px !important;
  }

  .xl\:border-4 {
    border-width: 4px !important;
  }

  .xl\:border-8 {
    border-width: 8px !important;
  }

  .xl\:border {
    border-width: 1px !important;
  }

  .xl\:border-t-0 {
    border-top-width: 0 !important;
  }

  .xl\:border-r-0 {
    border-right-width: 0 !important;
  }

  .xl\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .xl\:border-l-0 {
    border-left-width: 0 !important;
  }

  .xl\:border-t-2 {
    border-top-width: 2px !important;
  }

  .xl\:border-r-2 {
    border-right-width: 2px !important;
  }

  .xl\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .xl\:border-l-2 {
    border-left-width: 2px !important;
  }

  .xl\:border-t-4 {
    border-top-width: 4px !important;
  }

  .xl\:border-r-4 {
    border-right-width: 4px !important;
  }

  .xl\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .xl\:border-l-4 {
    border-left-width: 4px !important;
  }

  .xl\:border-t-8 {
    border-top-width: 8px !important;
  }

  .xl\:border-r-8 {
    border-right-width: 8px !important;
  }

  .xl\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .xl\:border-l-8 {
    border-left-width: 8px !important;
  }

  .xl\:border-t {
    border-top-width: 1px !important;
  }

  .xl\:border-r {
    border-right-width: 1px !important;
  }

  .xl\:border-b {
    border-bottom-width: 1px !important;
  }

  .xl\:border-l {
    border-left-width: 1px !important;
  }

  .xl\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .xl\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .xl\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .xl\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .xl\:first\:border:first-child {
    border-width: 1px !important;
  }

  .xl\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .xl\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .xl\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .xl\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .xl\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .xl\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .xl\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .xl\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .xl\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .xl\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .xl\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .xl\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .xl\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .xl\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .xl\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .xl\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .xl\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .xl\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .xl\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .xl\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .xl\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .xl\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .xl\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .xl\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .xl\:last\:border:last-child {
    border-width: 1px !important;
  }

  .xl\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .xl\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .xl\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .xl\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .xl\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .xl\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .xl\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .xl\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .xl\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .xl\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .xl\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .xl\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .xl\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .xl\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .xl\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .xl\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .xl\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .xl\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .xl\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .xl\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .xl\:block {
    display: block !important;
  }

  .xl\:inline-block {
    display: inline-block !important;
  }

  .xl\:inline {
    display: inline !important;
  }

  .xl\:flex {
    display: flex !important;
  }

  .xl\:inline-flex {
    display: inline-flex !important;
  }

  .xl\:table {
    display: table !important;
  }

  .xl\:table-caption {
    display: table-caption !important;
  }

  .xl\:table-cell {
    display: table-cell !important;
  }

  .xl\:table-column {
    display: table-column !important;
  }

  .xl\:table-column-group {
    display: table-column-group !important;
  }

  .xl\:table-footer-group {
    display: table-footer-group !important;
  }

  .xl\:table-header-group {
    display: table-header-group !important;
  }

  .xl\:table-row-group {
    display: table-row-group !important;
  }

  .xl\:table-row {
    display: table-row !important;
  }

  .xl\:flow-root {
    display: flow-root !important;
  }

  .xl\:grid {
    display: grid !important;
  }

  .xl\:inline-grid {
    display: inline-grid !important;
  }

  .xl\:contents {
    display: contents !important;
  }

  .xl\:hidden {
    display: none !important;
  }

  .xl\:flex-row {
    flex-direction: row !important;
  }

  .xl\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .xl\:flex-col {
    flex-direction: column !important;
  }

  .xl\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .xl\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .xl\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .xl\:items-start {
    align-items: flex-start !important;
  }

  .xl\:items-end {
    align-items: flex-end !important;
  }

  .xl\:items-center {
    align-items: center !important;
  }

  .xl\:items-baseline {
    align-items: baseline !important;
  }

  .xl\:items-stretch {
    align-items: stretch !important;
  }

  .xl\:self-auto {
    align-self: auto !important;
  }

  .xl\:self-start {
    align-self: flex-start !important;
  }

  .xl\:self-end {
    align-self: flex-end !important;
  }

  .xl\:self-center {
    align-self: center !important;
  }

  .xl\:self-stretch {
    align-self: stretch !important;
  }

  .xl\:justify-start {
    justify-content: flex-start !important;
  }

  .xl\:justify-end {
    justify-content: flex-end !important;
  }

  .xl\:justify-center {
    justify-content: center !important;
  }

  .xl\:justify-between {
    justify-content: space-between !important;
  }

  .xl\:justify-around {
    justify-content: space-around !important;
  }

  .xl\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .xl\:content-center {
    align-content: center !important;
  }

  .xl\:content-start {
    align-content: flex-start !important;
  }

  .xl\:content-end {
    align-content: flex-end !important;
  }

  .xl\:content-between {
    align-content: space-between !important;
  }

  .xl\:content-around {
    align-content: space-around !important;
  }

  .xl\:flex-0 {
    flex: 0 0 auto !important;
  }

  .xl\:flex-1 {
    flex: 1 1 0% !important;
  }

  .xl\:flex-auto {
    flex: 1 1 auto !important;
  }

  .xl\:flex-initial {
    flex: 0 1 auto !important;
  }

  .xl\:flex-none {
    flex: none !important;
  }

  .xl\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .xl\:flex-grow {
    flex-grow: 1 !important;
  }

  .xl\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .xl\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .xl\:order-1 {
    order: 1 !important;
  }

  .xl\:order-2 {
    order: 2 !important;
  }

  .xl\:order-3 {
    order: 3 !important;
  }

  .xl\:order-4 {
    order: 4 !important;
  }

  .xl\:order-5 {
    order: 5 !important;
  }

  .xl\:order-6 {
    order: 6 !important;
  }

  .xl\:order-7 {
    order: 7 !important;
  }

  .xl\:order-8 {
    order: 8 !important;
  }

  .xl\:order-9 {
    order: 9 !important;
  }

  .xl\:order-10 {
    order: 10 !important;
  }

  .xl\:order-11 {
    order: 11 !important;
  }

  .xl\:order-12 {
    order: 12 !important;
  }

  .xl\:order-first {
    order: -9999 !important;
  }

  .xl\:order-last {
    order: 9999 !important;
  }

  .xl\:order-none {
    order: 0 !important;
  }

  .xl\:font-hairline {
    font-weight: 100 !important;
  }

  .xl\:font-thin {
    font-weight: 200 !important;
  }

  .xl\:font-light {
    font-weight: 300 !important;
  }

  .xl\:font-normal {
    font-weight: 400 !important;
  }

  .xl\:font-medium {
    font-weight: 500 !important;
  }

  .xl\:font-semibold {
    font-weight: 600 !important;
  }

  .xl\:font-bold {
    font-weight: 700 !important;
  }

  .xl\:font-extrabold {
    font-weight: 800 !important;
  }

  .xl\:font-black {
    font-weight: 900 !important;
  }

  .xl\:h-0 {
    height: 0 !important;
  }

  .xl\:h-1 {
    height: 0.25rem !important;
  }

  .xl\:h-2 {
    height: 0.5rem !important;
  }

  .xl\:h-3 {
    height: 0.75rem !important;
  }

  .xl\:h-4 {
    height: 1rem !important;
  }

  .xl\:h-5 {
    height: 1.25rem !important;
  }

  .xl\:h-6 {
    height: 1.5rem !important;
  }

  .xl\:h-7 {
    height: 1.75rem !important;
  }

  .xl\:h-8 {
    height: 2rem !important;
  }

  .xl\:h-9 {
    height: 2.25rem !important;
  }

  .xl\:h-10 {
    height: 2.5rem !important;
  }

  .xl\:h-11 {
    height: 2.75rem !important;
  }

  .xl\:h-12 {
    height: 3rem !important;
  }

  .xl\:h-13 {
    height: 3.25rem !important;
  }

  .xl\:h-14 {
    height: 3.5rem !important;
  }

  .xl\:h-15 {
    height: 3.75rem !important;
  }

  .xl\:h-16 {
    height: 4rem !important;
  }

  .xl\:h-18 {
    height: 4.5rem !important;
  }

  .xl\:h-20 {
    height: 5rem !important;
  }

  .xl\:h-22 {
    height: 5.5rem !important;
  }

  .xl\:h-24 {
    height: 6rem !important;
  }

  .xl\:h-26 {
    height: 6.5rem !important;
  }

  .xl\:h-28 {
    height: 7rem !important;
  }

  .xl\:h-30 {
    height: 7.5rem !important;
  }

  .xl\:h-32 {
    height: 8rem !important;
  }

  .xl\:h-36 {
    height: 9rem !important;
  }

  .xl\:h-40 {
    height: 10rem !important;
  }

  .xl\:h-44 {
    height: 11rem !important;
  }

  .xl\:h-48 {
    height: 12rem !important;
  }

  .xl\:h-50 {
    height: 12.5rem !important;
  }

  .xl\:h-52 {
    height: 13rem !important;
  }

  .xl\:h-56 {
    height: 14rem !important;
  }

  .xl\:h-60 {
    height: 15rem !important;
  }

  .xl\:h-64 {
    height: 16rem !important;
  }

  .xl\:h-72 {
    height: 18rem !important;
  }

  .xl\:h-80 {
    height: 20rem !important;
  }

  .xl\:h-90 {
    height: 24rem !important;
  }

  .xl\:h-96 {
    height: 24rem !important;
  }

  .xl\:h-100 {
    height: 25rem !important;
  }

  .xl\:h-120 {
    height: 30rem !important;
  }

  .xl\:h-128 {
    height: 32rem !important;
  }

  .xl\:h-140 {
    height: 35rem !important;
  }

  .xl\:h-160 {
    height: 40rem !important;
  }

  .xl\:h-180 {
    height: 45rem !important;
  }

  .xl\:h-192 {
    height: 48rem !important;
  }

  .xl\:h-200 {
    height: 50rem !important;
  }

  .xl\:h-240 {
    height: 60rem !important;
  }

  .xl\:h-256 {
    height: 64rem !important;
  }

  .xl\:h-280 {
    height: 70rem !important;
  }

  .xl\:h-320 {
    height: 80rem !important;
  }

  .xl\:h-360 {
    height: 90rem !important;
  }

  .xl\:h-400 {
    height: 100rem !important;
  }

  .xl\:h-480 {
    height: 120rem !important;
  }

  .xl\:h-auto {
    height: auto !important;
  }

  .xl\:h-px {
    height: 1px !important;
  }

  .xl\:h-0\.5 {
    height: 0.125rem !important;
  }

  .xl\:h-1\.5 {
    height: 0.375rem !important;
  }

  .xl\:h-2\.5 {
    height: 0.625rem !important;
  }

  .xl\:h-3\.5 {
    height: 0.875rem !important;
  }

  .xl\:h-1\/2 {
    height: 50% !important;
  }

  .xl\:h-1\/3 {
    height: 33.333333% !important;
  }

  .xl\:h-2\/3 {
    height: 66.666667% !important;
  }

  .xl\:h-1\/4 {
    height: 25% !important;
  }

  .xl\:h-2\/4 {
    height: 50% !important;
  }

  .xl\:h-3\/4 {
    height: 75% !important;
  }

  .xl\:h-1\/5 {
    height: 20% !important;
  }

  .xl\:h-2\/5 {
    height: 40% !important;
  }

  .xl\:h-3\/5 {
    height: 60% !important;
  }

  .xl\:h-4\/5 {
    height: 80% !important;
  }

  .xl\:h-1\/6 {
    height: 16.666667% !important;
  }

  .xl\:h-2\/6 {
    height: 33.333333% !important;
  }

  .xl\:h-3\/6 {
    height: 50% !important;
  }

  .xl\:h-4\/6 {
    height: 66.666667% !important;
  }

  .xl\:h-5\/6 {
    height: 83.333333% !important;
  }

  .xl\:h-1\/12 {
    height: 8.333333% !important;
  }

  .xl\:h-2\/12 {
    height: 16.666667% !important;
  }

  .xl\:h-3\/12 {
    height: 25% !important;
  }

  .xl\:h-4\/12 {
    height: 33.333333% !important;
  }

  .xl\:h-5\/12 {
    height: 41.666667% !important;
  }

  .xl\:h-6\/12 {
    height: 50% !important;
  }

  .xl\:h-7\/12 {
    height: 58.333333% !important;
  }

  .xl\:h-8\/12 {
    height: 66.666667% !important;
  }

  .xl\:h-9\/12 {
    height: 75% !important;
  }

  .xl\:h-10\/12 {
    height: 83.333333% !important;
  }

  .xl\:h-11\/12 {
    height: 91.666667% !important;
  }

  .xl\:h-full {
    height: 100% !important;
  }

  .xl\:h-2px {
    height: 2px !important;
  }

  .xl\:h-screen {
    height: 100vh !important;
  }

  .xl\:text-xs {
    font-size: 0.625rem !important;
  }

  .xl\:text-sm {
    font-size: 0.75rem !important;
  }

  .xl\:text-md {
    font-size: 0.8125rem !important;
  }

  .xl\:text-base {
    font-size: 0.875rem !important;
  }

  .xl\:text-lg {
    font-size: 1rem !important;
  }

  .xl\:text-xl {
    font-size: 1.125rem !important;
  }

  .xl\:text-2xl {
    font-size: 1.25rem !important;
  }

  .xl\:text-3xl {
    font-size: 1.5rem !important;
  }

  .xl\:text-4xl {
    font-size: 2rem !important;
  }

  .xl\:text-5xl {
    font-size: 2.25rem !important;
  }

  .xl\:text-6xl {
    font-size: 2.5rem !important;
  }

  .xl\:text-7xl {
    font-size: 3rem !important;
  }

  .xl\:text-8xl {
    font-size: 4rem !important;
  }

  .xl\:text-9xl {
    font-size: 6rem !important;
  }

  .xl\:text-10xl {
    font-size: 8rem !important;
  }

  .xl\:leading-3 {
    line-height: 0.75rem !important;
  }

  .xl\:leading-4 {
    line-height: 1rem !important;
  }

  .xl\:leading-5 {
    line-height: 1.25rem !important;
  }

  .xl\:leading-6 {
    line-height: 1.5rem !important;
  }

  .xl\:leading-7 {
    line-height: 1.75rem !important;
  }

  .xl\:leading-8 {
    line-height: 2rem !important;
  }

  .xl\:leading-9 {
    line-height: 2.25rem !important;
  }

  .xl\:leading-10 {
    line-height: 2.5rem !important;
  }

  .xl\:leading-none {
    line-height: 1 !important;
  }

  .xl\:leading-tight {
    line-height: 1.25 !important;
  }

  .xl\:leading-snug {
    line-height: 1.375 !important;
  }

  .xl\:leading-normal {
    line-height: 1.5 !important;
  }

  .xl\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .xl\:leading-loose {
    line-height: 2 !important;
  }

  .xl\:m-0 {
    margin: 0 !important;
  }

  .xl\:m-1 {
    margin: 0.25rem !important;
  }

  .xl\:m-2 {
    margin: 0.5rem !important;
  }

  .xl\:m-3 {
    margin: 0.75rem !important;
  }

  .xl\:m-4 {
    margin: 1rem !important;
  }

  .xl\:m-5 {
    margin: 1.25rem !important;
  }

  .xl\:m-6 {
    margin: 1.5rem !important;
  }

  .xl\:m-7 {
    margin: 1.75rem !important;
  }

  .xl\:m-8 {
    margin: 2rem !important;
  }

  .xl\:m-9 {
    margin: 2.25rem !important;
  }

  .xl\:m-10 {
    margin: 2.5rem !important;
  }

  .xl\:m-11 {
    margin: 2.75rem !important;
  }

  .xl\:m-12 {
    margin: 3rem !important;
  }

  .xl\:m-13 {
    margin: 3.25rem !important;
  }

  .xl\:m-14 {
    margin: 3.5rem !important;
  }

  .xl\:m-15 {
    margin: 3.75rem !important;
  }

  .xl\:m-16 {
    margin: 4rem !important;
  }

  .xl\:m-18 {
    margin: 4.5rem !important;
  }

  .xl\:m-20 {
    margin: 5rem !important;
  }

  .xl\:m-22 {
    margin: 5.5rem !important;
  }

  .xl\:m-24 {
    margin: 6rem !important;
  }

  .xl\:m-26 {
    margin: 6.5rem !important;
  }

  .xl\:m-28 {
    margin: 7rem !important;
  }

  .xl\:m-30 {
    margin: 7.5rem !important;
  }

  .xl\:m-32 {
    margin: 8rem !important;
  }

  .xl\:m-36 {
    margin: 9rem !important;
  }

  .xl\:m-40 {
    margin: 10rem !important;
  }

  .xl\:m-44 {
    margin: 11rem !important;
  }

  .xl\:m-48 {
    margin: 12rem !important;
  }

  .xl\:m-50 {
    margin: 12.5rem !important;
  }

  .xl\:m-52 {
    margin: 13rem !important;
  }

  .xl\:m-56 {
    margin: 14rem !important;
  }

  .xl\:m-60 {
    margin: 15rem !important;
  }

  .xl\:m-64 {
    margin: 16rem !important;
  }

  .xl\:m-72 {
    margin: 18rem !important;
  }

  .xl\:m-80 {
    margin: 20rem !important;
  }

  .xl\:m-90 {
    margin: 24rem !important;
  }

  .xl\:m-96 {
    margin: 24rem !important;
  }

  .xl\:m-100 {
    margin: 25rem !important;
  }

  .xl\:m-120 {
    margin: 30rem !important;
  }

  .xl\:m-128 {
    margin: 32rem !important;
  }

  .xl\:m-140 {
    margin: 35rem !important;
  }

  .xl\:m-160 {
    margin: 40rem !important;
  }

  .xl\:m-180 {
    margin: 45rem !important;
  }

  .xl\:m-192 {
    margin: 48rem !important;
  }

  .xl\:m-200 {
    margin: 50rem !important;
  }

  .xl\:m-240 {
    margin: 60rem !important;
  }

  .xl\:m-256 {
    margin: 64rem !important;
  }

  .xl\:m-280 {
    margin: 70rem !important;
  }

  .xl\:m-320 {
    margin: 80rem !important;
  }

  .xl\:m-360 {
    margin: 90rem !important;
  }

  .xl\:m-400 {
    margin: 100rem !important;
  }

  .xl\:m-480 {
    margin: 120rem !important;
  }

  .xl\:m-auto {
    margin: auto !important;
  }

  .xl\:m-px {
    margin: 1px !important;
  }

  .xl\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .xl\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .xl\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .xl\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .xl\:m-1\/2 {
    margin: 50% !important;
  }

  .xl\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .xl\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .xl\:m-1\/4 {
    margin: 25% !important;
  }

  .xl\:m-2\/4 {
    margin: 50% !important;
  }

  .xl\:m-3\/4 {
    margin: 75% !important;
  }

  .xl\:m-1\/5 {
    margin: 20% !important;
  }

  .xl\:m-2\/5 {
    margin: 40% !important;
  }

  .xl\:m-3\/5 {
    margin: 60% !important;
  }

  .xl\:m-4\/5 {
    margin: 80% !important;
  }

  .xl\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .xl\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .xl\:m-3\/6 {
    margin: 50% !important;
  }

  .xl\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .xl\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .xl\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .xl\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .xl\:m-3\/12 {
    margin: 25% !important;
  }

  .xl\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .xl\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .xl\:m-6\/12 {
    margin: 50% !important;
  }

  .xl\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .xl\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .xl\:m-9\/12 {
    margin: 75% !important;
  }

  .xl\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .xl\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .xl\:m-full {
    margin: 100% !important;
  }

  .xl\:m-2px {
    margin: 2px !important;
  }

  .xl\:-m-1 {
    margin: -0.25rem !important;
  }

  .xl\:-m-2 {
    margin: -0.5rem !important;
  }

  .xl\:-m-3 {
    margin: -0.75rem !important;
  }

  .xl\:-m-4 {
    margin: -1rem !important;
  }

  .xl\:-m-5 {
    margin: -1.25rem !important;
  }

  .xl\:-m-6 {
    margin: -1.5rem !important;
  }

  .xl\:-m-7 {
    margin: -1.75rem !important;
  }

  .xl\:-m-8 {
    margin: -2rem !important;
  }

  .xl\:-m-9 {
    margin: -2.25rem !important;
  }

  .xl\:-m-10 {
    margin: -2.5rem !important;
  }

  .xl\:-m-11 {
    margin: -2.75rem !important;
  }

  .xl\:-m-12 {
    margin: -3rem !important;
  }

  .xl\:-m-13 {
    margin: -3.25rem !important;
  }

  .xl\:-m-14 {
    margin: -3.5rem !important;
  }

  .xl\:-m-15 {
    margin: -3.75rem !important;
  }

  .xl\:-m-16 {
    margin: -4rem !important;
  }

  .xl\:-m-18 {
    margin: -4.5rem !important;
  }

  .xl\:-m-20 {
    margin: -5rem !important;
  }

  .xl\:-m-22 {
    margin: -5.5rem !important;
  }

  .xl\:-m-24 {
    margin: -6rem !important;
  }

  .xl\:-m-26 {
    margin: -6.5rem !important;
  }

  .xl\:-m-28 {
    margin: -7rem !important;
  }

  .xl\:-m-30 {
    margin: -7.5rem !important;
  }

  .xl\:-m-32 {
    margin: -8rem !important;
  }

  .xl\:-m-36 {
    margin: -9rem !important;
  }

  .xl\:-m-40 {
    margin: -10rem !important;
  }

  .xl\:-m-44 {
    margin: -11rem !important;
  }

  .xl\:-m-48 {
    margin: -12rem !important;
  }

  .xl\:-m-50 {
    margin: -12.5rem !important;
  }

  .xl\:-m-52 {
    margin: -13rem !important;
  }

  .xl\:-m-56 {
    margin: -14rem !important;
  }

  .xl\:-m-60 {
    margin: -15rem !important;
  }

  .xl\:-m-64 {
    margin: -16rem !important;
  }

  .xl\:-m-72 {
    margin: -18rem !important;
  }

  .xl\:-m-80 {
    margin: -20rem !important;
  }

  .xl\:-m-90 {
    margin: -24rem !important;
  }

  .xl\:-m-96 {
    margin: -24rem !important;
  }

  .xl\:-m-100 {
    margin: -25rem !important;
  }

  .xl\:-m-120 {
    margin: -30rem !important;
  }

  .xl\:-m-128 {
    margin: -32rem !important;
  }

  .xl\:-m-140 {
    margin: -35rem !important;
  }

  .xl\:-m-160 {
    margin: -40rem !important;
  }

  .xl\:-m-180 {
    margin: -45rem !important;
  }

  .xl\:-m-192 {
    margin: -48rem !important;
  }

  .xl\:-m-200 {
    margin: -50rem !important;
  }

  .xl\:-m-240 {
    margin: -60rem !important;
  }

  .xl\:-m-256 {
    margin: -64rem !important;
  }

  .xl\:-m-280 {
    margin: -70rem !important;
  }

  .xl\:-m-320 {
    margin: -80rem !important;
  }

  .xl\:-m-360 {
    margin: -90rem !important;
  }

  .xl\:-m-400 {
    margin: -100rem !important;
  }

  .xl\:-m-480 {
    margin: -120rem !important;
  }

  .xl\:-m-px {
    margin: -1px !important;
  }

  .xl\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .xl\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .xl\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .xl\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .xl\:-m-1\/2 {
    margin: -50% !important;
  }

  .xl\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .xl\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .xl\:-m-1\/4 {
    margin: -25% !important;
  }

  .xl\:-m-2\/4 {
    margin: -50% !important;
  }

  .xl\:-m-3\/4 {
    margin: -75% !important;
  }

  .xl\:-m-1\/5 {
    margin: -20% !important;
  }

  .xl\:-m-2\/5 {
    margin: -40% !important;
  }

  .xl\:-m-3\/5 {
    margin: -60% !important;
  }

  .xl\:-m-4\/5 {
    margin: -80% !important;
  }

  .xl\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .xl\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .xl\:-m-3\/6 {
    margin: -50% !important;
  }

  .xl\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .xl\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .xl\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .xl\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .xl\:-m-3\/12 {
    margin: -25% !important;
  }

  .xl\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .xl\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .xl\:-m-6\/12 {
    margin: -50% !important;
  }

  .xl\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .xl\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .xl\:-m-9\/12 {
    margin: -75% !important;
  }

  .xl\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .xl\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .xl\:-m-full {
    margin: -100% !important;
  }

  .xl\:-m-2px {
    margin: -2px !important;
  }

  .xl\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .xl\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .xl\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .xl\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .xl\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .xl\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .xl\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .xl\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .xl\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .xl\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .xl\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .xl\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .xl\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .xl\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .xl\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .xl\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .xl\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .xl\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .xl\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .xl\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .xl\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .xl\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .xl\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .xl\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .xl\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .xl\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .xl\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .xl\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .xl\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .xl\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .xl\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .xl\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .xl\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .xl\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .xl\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .xl\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .xl\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .xl\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .xl\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .xl\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .xl\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .xl\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .xl\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .xl\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .xl\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .xl\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .xl\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .xl\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .xl\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .xl\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .xl\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .xl\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .xl\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .xl\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .xl\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .xl\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .xl\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .xl\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .xl\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .xl\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .xl\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .xl\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .xl\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .xl\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .xl\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .xl\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .xl\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .xl\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .xl\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .xl\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .xl\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .xl\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .xl\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .xl\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .xl\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .xl\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .xl\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .xl\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .xl\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .xl\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .xl\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .xl\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .xl\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .xl\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .xl\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .xl\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .xl\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .xl\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .xl\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .xl\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .xl\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .xl\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .xl\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .xl\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .xl\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .xl\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .xl\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .xl\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .xl\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .xl\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .xl\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .xl\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .xl\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .xl\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .xl\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .xl\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .xl\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .xl\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .xl\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .xl\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .xl\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .xl\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .xl\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .xl\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .xl\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .xl\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .xl\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .xl\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .xl\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .xl\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .xl\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .xl\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .xl\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .xl\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .xl\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .xl\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .xl\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .xl\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .xl\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .xl\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .xl\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .xl\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .xl\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .xl\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .xl\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .xl\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .xl\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .xl\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .xl\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .xl\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .xl\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .xl\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .xl\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .xl\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .xl\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .xl\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .xl\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .xl\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .xl\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .xl\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .xl\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .xl\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .xl\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .xl\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .xl\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .xl\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .xl\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .xl\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .xl\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .xl\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .xl\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .xl\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .xl\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .xl\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .xl\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .xl\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .xl\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .xl\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .xl\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .xl\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .xl\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .xl\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .xl\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .xl\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .xl\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .xl\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .xl\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .xl\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .xl\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .xl\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .xl\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .xl\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .xl\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .xl\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .xl\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .xl\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .xl\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .xl\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .xl\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .xl\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .xl\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .xl\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .xl\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .xl\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .xl\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .xl\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .xl\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .xl\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .xl\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .xl\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .xl\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .xl\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .xl\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .xl\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .xl\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .xl\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .xl\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .xl\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .xl\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .xl\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .xl\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .xl\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .xl\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .xl\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .xl\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .xl\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .xl\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .xl\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .xl\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .xl\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .xl\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .xl\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .xl\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .xl\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .xl\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .xl\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .xl\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .xl\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .xl\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .xl\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .xl\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .xl\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .xl\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .xl\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .xl\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .xl\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .xl\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .xl\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .xl\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .xl\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .xl\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .xl\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .xl\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .xl\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .xl\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .xl\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .xl\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .xl\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .xl\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .xl\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .xl\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .xl\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .xl\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .xl\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .xl\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .xl\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .xl\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .xl\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .xl\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .xl\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .xl\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .xl\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .xl\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .xl\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .xl\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .xl\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .xl\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .xl\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .xl\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .xl\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .xl\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .xl\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .xl\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .xl\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .xl\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .xl\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .xl\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .xl\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .xl\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .xl\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .xl\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .xl\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .xl\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .xl\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .xl\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .xl\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .xl\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .xl\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .xl\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .xl\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .xl\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .xl\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .xl\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .xl\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .xl\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .xl\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .xl\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .xl\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .xl\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .xl\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .xl\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .xl\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .xl\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .xl\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .xl\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .xl\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .xl\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .xl\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .xl\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .xl\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .xl\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .xl\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .xl\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .xl\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .xl\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .xl\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .xl\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .xl\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .xl\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .xl\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .xl\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .xl\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .xl\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .xl\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .xl\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .xl\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .xl\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .xl\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .xl\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .xl\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .xl\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .xl\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .xl\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .xl\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .xl\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .xl\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .xl\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .xl\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .xl\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .xl\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .xl\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .xl\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .xl\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .xl\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .xl\:mt-0 {
    margin-top: 0 !important;
  }

  .xl\:mr-0 {
    margin-right: 0 !important;
  }

  .xl\:mb-0 {
    margin-bottom: 0 !important;
  }

  .xl\:ml-0 {
    margin-left: 0 !important;
  }

  .xl\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .xl\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .xl\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .xl\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .xl\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .xl\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .xl\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .xl\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .xl\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .xl\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .xl\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .xl\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .xl\:mt-4 {
    margin-top: 1rem !important;
  }

  .xl\:mr-4 {
    margin-right: 1rem !important;
  }

  .xl\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .xl\:ml-4 {
    margin-left: 1rem !important;
  }

  .xl\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .xl\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .xl\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .xl\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .xl\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .xl\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .xl\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .xl\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .xl\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .xl\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .xl\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .xl\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .xl\:mt-8 {
    margin-top: 2rem !important;
  }

  .xl\:mr-8 {
    margin-right: 2rem !important;
  }

  .xl\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .xl\:ml-8 {
    margin-left: 2rem !important;
  }

  .xl\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .xl\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .xl\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .xl\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .xl\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .xl\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .xl\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .xl\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .xl\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .xl\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .xl\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .xl\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .xl\:mt-12 {
    margin-top: 3rem !important;
  }

  .xl\:mr-12 {
    margin-right: 3rem !important;
  }

  .xl\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .xl\:ml-12 {
    margin-left: 3rem !important;
  }

  .xl\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .xl\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .xl\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .xl\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .xl\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .xl\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .xl\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .xl\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .xl\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .xl\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .xl\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .xl\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .xl\:mt-16 {
    margin-top: 4rem !important;
  }

  .xl\:mr-16 {
    margin-right: 4rem !important;
  }

  .xl\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .xl\:ml-16 {
    margin-left: 4rem !important;
  }

  .xl\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .xl\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .xl\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .xl\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .xl\:mt-20 {
    margin-top: 5rem !important;
  }

  .xl\:mr-20 {
    margin-right: 5rem !important;
  }

  .xl\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .xl\:ml-20 {
    margin-left: 5rem !important;
  }

  .xl\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .xl\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .xl\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .xl\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .xl\:mt-24 {
    margin-top: 6rem !important;
  }

  .xl\:mr-24 {
    margin-right: 6rem !important;
  }

  .xl\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .xl\:ml-24 {
    margin-left: 6rem !important;
  }

  .xl\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .xl\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .xl\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .xl\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .xl\:mt-28 {
    margin-top: 7rem !important;
  }

  .xl\:mr-28 {
    margin-right: 7rem !important;
  }

  .xl\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .xl\:ml-28 {
    margin-left: 7rem !important;
  }

  .xl\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .xl\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .xl\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .xl\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .xl\:mt-32 {
    margin-top: 8rem !important;
  }

  .xl\:mr-32 {
    margin-right: 8rem !important;
  }

  .xl\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .xl\:ml-32 {
    margin-left: 8rem !important;
  }

  .xl\:mt-36 {
    margin-top: 9rem !important;
  }

  .xl\:mr-36 {
    margin-right: 9rem !important;
  }

  .xl\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .xl\:ml-36 {
    margin-left: 9rem !important;
  }

  .xl\:mt-40 {
    margin-top: 10rem !important;
  }

  .xl\:mr-40 {
    margin-right: 10rem !important;
  }

  .xl\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .xl\:ml-40 {
    margin-left: 10rem !important;
  }

  .xl\:mt-44 {
    margin-top: 11rem !important;
  }

  .xl\:mr-44 {
    margin-right: 11rem !important;
  }

  .xl\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .xl\:ml-44 {
    margin-left: 11rem !important;
  }

  .xl\:mt-48 {
    margin-top: 12rem !important;
  }

  .xl\:mr-48 {
    margin-right: 12rem !important;
  }

  .xl\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .xl\:ml-48 {
    margin-left: 12rem !important;
  }

  .xl\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .xl\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .xl\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .xl\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .xl\:mt-52 {
    margin-top: 13rem !important;
  }

  .xl\:mr-52 {
    margin-right: 13rem !important;
  }

  .xl\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .xl\:ml-52 {
    margin-left: 13rem !important;
  }

  .xl\:mt-56 {
    margin-top: 14rem !important;
  }

  .xl\:mr-56 {
    margin-right: 14rem !important;
  }

  .xl\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .xl\:ml-56 {
    margin-left: 14rem !important;
  }

  .xl\:mt-60 {
    margin-top: 15rem !important;
  }

  .xl\:mr-60 {
    margin-right: 15rem !important;
  }

  .xl\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .xl\:ml-60 {
    margin-left: 15rem !important;
  }

  .xl\:mt-64 {
    margin-top: 16rem !important;
  }

  .xl\:mr-64 {
    margin-right: 16rem !important;
  }

  .xl\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .xl\:ml-64 {
    margin-left: 16rem !important;
  }

  .xl\:mt-72 {
    margin-top: 18rem !important;
  }

  .xl\:mr-72 {
    margin-right: 18rem !important;
  }

  .xl\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .xl\:ml-72 {
    margin-left: 18rem !important;
  }

  .xl\:mt-80 {
    margin-top: 20rem !important;
  }

  .xl\:mr-80 {
    margin-right: 20rem !important;
  }

  .xl\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .xl\:ml-80 {
    margin-left: 20rem !important;
  }

  .xl\:mt-90 {
    margin-top: 24rem !important;
  }

  .xl\:mr-90 {
    margin-right: 24rem !important;
  }

  .xl\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .xl\:ml-90 {
    margin-left: 24rem !important;
  }

  .xl\:mt-96 {
    margin-top: 24rem !important;
  }

  .xl\:mr-96 {
    margin-right: 24rem !important;
  }

  .xl\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .xl\:ml-96 {
    margin-left: 24rem !important;
  }

  .xl\:mt-100 {
    margin-top: 25rem !important;
  }

  .xl\:mr-100 {
    margin-right: 25rem !important;
  }

  .xl\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .xl\:ml-100 {
    margin-left: 25rem !important;
  }

  .xl\:mt-120 {
    margin-top: 30rem !important;
  }

  .xl\:mr-120 {
    margin-right: 30rem !important;
  }

  .xl\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .xl\:ml-120 {
    margin-left: 30rem !important;
  }

  .xl\:mt-128 {
    margin-top: 32rem !important;
  }

  .xl\:mr-128 {
    margin-right: 32rem !important;
  }

  .xl\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .xl\:ml-128 {
    margin-left: 32rem !important;
  }

  .xl\:mt-140 {
    margin-top: 35rem !important;
  }

  .xl\:mr-140 {
    margin-right: 35rem !important;
  }

  .xl\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .xl\:ml-140 {
    margin-left: 35rem !important;
  }

  .xl\:mt-160 {
    margin-top: 40rem !important;
  }

  .xl\:mr-160 {
    margin-right: 40rem !important;
  }

  .xl\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .xl\:ml-160 {
    margin-left: 40rem !important;
  }

  .xl\:mt-180 {
    margin-top: 45rem !important;
  }

  .xl\:mr-180 {
    margin-right: 45rem !important;
  }

  .xl\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .xl\:ml-180 {
    margin-left: 45rem !important;
  }

  .xl\:mt-192 {
    margin-top: 48rem !important;
  }

  .xl\:mr-192 {
    margin-right: 48rem !important;
  }

  .xl\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .xl\:ml-192 {
    margin-left: 48rem !important;
  }

  .xl\:mt-200 {
    margin-top: 50rem !important;
  }

  .xl\:mr-200 {
    margin-right: 50rem !important;
  }

  .xl\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .xl\:ml-200 {
    margin-left: 50rem !important;
  }

  .xl\:mt-240 {
    margin-top: 60rem !important;
  }

  .xl\:mr-240 {
    margin-right: 60rem !important;
  }

  .xl\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .xl\:ml-240 {
    margin-left: 60rem !important;
  }

  .xl\:mt-256 {
    margin-top: 64rem !important;
  }

  .xl\:mr-256 {
    margin-right: 64rem !important;
  }

  .xl\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .xl\:ml-256 {
    margin-left: 64rem !important;
  }

  .xl\:mt-280 {
    margin-top: 70rem !important;
  }

  .xl\:mr-280 {
    margin-right: 70rem !important;
  }

  .xl\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .xl\:ml-280 {
    margin-left: 70rem !important;
  }

  .xl\:mt-320 {
    margin-top: 80rem !important;
  }

  .xl\:mr-320 {
    margin-right: 80rem !important;
  }

  .xl\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .xl\:ml-320 {
    margin-left: 80rem !important;
  }

  .xl\:mt-360 {
    margin-top: 90rem !important;
  }

  .xl\:mr-360 {
    margin-right: 90rem !important;
  }

  .xl\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .xl\:ml-360 {
    margin-left: 90rem !important;
  }

  .xl\:mt-400 {
    margin-top: 100rem !important;
  }

  .xl\:mr-400 {
    margin-right: 100rem !important;
  }

  .xl\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .xl\:ml-400 {
    margin-left: 100rem !important;
  }

  .xl\:mt-480 {
    margin-top: 120rem !important;
  }

  .xl\:mr-480 {
    margin-right: 120rem !important;
  }

  .xl\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .xl\:ml-480 {
    margin-left: 120rem !important;
  }

  .xl\:mt-auto {
    margin-top: auto !important;
  }

  .xl\:mr-auto {
    margin-right: auto !important;
  }

  .xl\:mb-auto {
    margin-bottom: auto !important;
  }

  .xl\:ml-auto {
    margin-left: auto !important;
  }

  .xl\:mt-px {
    margin-top: 1px !important;
  }

  .xl\:mr-px {
    margin-right: 1px !important;
  }

  .xl\:mb-px {
    margin-bottom: 1px !important;
  }

  .xl\:ml-px {
    margin-left: 1px !important;
  }

  .xl\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .xl\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .xl\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .xl\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .xl\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .xl\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .xl\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .xl\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .xl\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .xl\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .xl\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .xl\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .xl\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .xl\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .xl\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .xl\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .xl\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .xl\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .xl\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .xl\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .xl\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .xl\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .xl\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .xl\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .xl\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .xl\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .xl\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .xl\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .xl\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .xl\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .xl\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .xl\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .xl\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .xl\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .xl\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .xl\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .xl\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .xl\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .xl\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .xl\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .xl\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .xl\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .xl\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .xl\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .xl\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .xl\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .xl\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .xl\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .xl\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .xl\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .xl\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .xl\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .xl\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .xl\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .xl\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .xl\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .xl\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .xl\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .xl\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .xl\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .xl\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .xl\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .xl\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .xl\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .xl\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .xl\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .xl\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .xl\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .xl\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .xl\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .xl\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .xl\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .xl\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .xl\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .xl\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .xl\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .xl\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .xl\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .xl\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .xl\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .xl\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .xl\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .xl\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .xl\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .xl\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .xl\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .xl\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .xl\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .xl\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .xl\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .xl\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .xl\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .xl\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .xl\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .xl\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .xl\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .xl\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .xl\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .xl\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .xl\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .xl\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .xl\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .xl\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .xl\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .xl\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .xl\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .xl\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .xl\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .xl\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .xl\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .xl\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .xl\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .xl\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .xl\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .xl\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .xl\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .xl\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .xl\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .xl\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .xl\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .xl\:mt-full {
    margin-top: 100% !important;
  }

  .xl\:mr-full {
    margin-right: 100% !important;
  }

  .xl\:mb-full {
    margin-bottom: 100% !important;
  }

  .xl\:ml-full {
    margin-left: 100% !important;
  }

  .xl\:mt-2px {
    margin-top: 2px !important;
  }

  .xl\:mr-2px {
    margin-right: 2px !important;
  }

  .xl\:mb-2px {
    margin-bottom: 2px !important;
  }

  .xl\:ml-2px {
    margin-left: 2px !important;
  }

  .xl\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .xl\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .xl\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .xl\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .xl\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .xl\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .xl\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .xl\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .xl\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .xl\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .xl\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .xl\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .xl\:-mt-4 {
    margin-top: -1rem !important;
  }

  .xl\:-mr-4 {
    margin-right: -1rem !important;
  }

  .xl\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .xl\:-ml-4 {
    margin-left: -1rem !important;
  }

  .xl\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .xl\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .xl\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .xl\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .xl\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .xl\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .xl\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .xl\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .xl\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .xl\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .xl\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .xl\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .xl\:-mt-8 {
    margin-top: -2rem !important;
  }

  .xl\:-mr-8 {
    margin-right: -2rem !important;
  }

  .xl\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .xl\:-ml-8 {
    margin-left: -2rem !important;
  }

  .xl\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .xl\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .xl\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .xl\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .xl\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .xl\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .xl\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .xl\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .xl\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .xl\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .xl\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .xl\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .xl\:-mt-12 {
    margin-top: -3rem !important;
  }

  .xl\:-mr-12 {
    margin-right: -3rem !important;
  }

  .xl\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .xl\:-ml-12 {
    margin-left: -3rem !important;
  }

  .xl\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .xl\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .xl\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .xl\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .xl\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .xl\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .xl\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .xl\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .xl\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .xl\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .xl\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .xl\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .xl\:-mt-16 {
    margin-top: -4rem !important;
  }

  .xl\:-mr-16 {
    margin-right: -4rem !important;
  }

  .xl\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .xl\:-ml-16 {
    margin-left: -4rem !important;
  }

  .xl\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .xl\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .xl\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .xl\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .xl\:-mt-20 {
    margin-top: -5rem !important;
  }

  .xl\:-mr-20 {
    margin-right: -5rem !important;
  }

  .xl\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .xl\:-ml-20 {
    margin-left: -5rem !important;
  }

  .xl\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .xl\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .xl\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .xl\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .xl\:-mt-24 {
    margin-top: -6rem !important;
  }

  .xl\:-mr-24 {
    margin-right: -6rem !important;
  }

  .xl\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .xl\:-ml-24 {
    margin-left: -6rem !important;
  }

  .xl\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .xl\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .xl\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .xl\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .xl\:-mt-28 {
    margin-top: -7rem !important;
  }

  .xl\:-mr-28 {
    margin-right: -7rem !important;
  }

  .xl\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .xl\:-ml-28 {
    margin-left: -7rem !important;
  }

  .xl\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .xl\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .xl\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .xl\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .xl\:-mt-32 {
    margin-top: -8rem !important;
  }

  .xl\:-mr-32 {
    margin-right: -8rem !important;
  }

  .xl\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .xl\:-ml-32 {
    margin-left: -8rem !important;
  }

  .xl\:-mt-36 {
    margin-top: -9rem !important;
  }

  .xl\:-mr-36 {
    margin-right: -9rem !important;
  }

  .xl\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .xl\:-ml-36 {
    margin-left: -9rem !important;
  }

  .xl\:-mt-40 {
    margin-top: -10rem !important;
  }

  .xl\:-mr-40 {
    margin-right: -10rem !important;
  }

  .xl\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .xl\:-ml-40 {
    margin-left: -10rem !important;
  }

  .xl\:-mt-44 {
    margin-top: -11rem !important;
  }

  .xl\:-mr-44 {
    margin-right: -11rem !important;
  }

  .xl\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .xl\:-ml-44 {
    margin-left: -11rem !important;
  }

  .xl\:-mt-48 {
    margin-top: -12rem !important;
  }

  .xl\:-mr-48 {
    margin-right: -12rem !important;
  }

  .xl\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .xl\:-ml-48 {
    margin-left: -12rem !important;
  }

  .xl\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .xl\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .xl\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .xl\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .xl\:-mt-52 {
    margin-top: -13rem !important;
  }

  .xl\:-mr-52 {
    margin-right: -13rem !important;
  }

  .xl\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .xl\:-ml-52 {
    margin-left: -13rem !important;
  }

  .xl\:-mt-56 {
    margin-top: -14rem !important;
  }

  .xl\:-mr-56 {
    margin-right: -14rem !important;
  }

  .xl\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .xl\:-ml-56 {
    margin-left: -14rem !important;
  }

  .xl\:-mt-60 {
    margin-top: -15rem !important;
  }

  .xl\:-mr-60 {
    margin-right: -15rem !important;
  }

  .xl\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .xl\:-ml-60 {
    margin-left: -15rem !important;
  }

  .xl\:-mt-64 {
    margin-top: -16rem !important;
  }

  .xl\:-mr-64 {
    margin-right: -16rem !important;
  }

  .xl\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .xl\:-ml-64 {
    margin-left: -16rem !important;
  }

  .xl\:-mt-72 {
    margin-top: -18rem !important;
  }

  .xl\:-mr-72 {
    margin-right: -18rem !important;
  }

  .xl\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .xl\:-ml-72 {
    margin-left: -18rem !important;
  }

  .xl\:-mt-80 {
    margin-top: -20rem !important;
  }

  .xl\:-mr-80 {
    margin-right: -20rem !important;
  }

  .xl\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .xl\:-ml-80 {
    margin-left: -20rem !important;
  }

  .xl\:-mt-90 {
    margin-top: -24rem !important;
  }

  .xl\:-mr-90 {
    margin-right: -24rem !important;
  }

  .xl\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .xl\:-ml-90 {
    margin-left: -24rem !important;
  }

  .xl\:-mt-96 {
    margin-top: -24rem !important;
  }

  .xl\:-mr-96 {
    margin-right: -24rem !important;
  }

  .xl\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .xl\:-ml-96 {
    margin-left: -24rem !important;
  }

  .xl\:-mt-100 {
    margin-top: -25rem !important;
  }

  .xl\:-mr-100 {
    margin-right: -25rem !important;
  }

  .xl\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .xl\:-ml-100 {
    margin-left: -25rem !important;
  }

  .xl\:-mt-120 {
    margin-top: -30rem !important;
  }

  .xl\:-mr-120 {
    margin-right: -30rem !important;
  }

  .xl\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .xl\:-ml-120 {
    margin-left: -30rem !important;
  }

  .xl\:-mt-128 {
    margin-top: -32rem !important;
  }

  .xl\:-mr-128 {
    margin-right: -32rem !important;
  }

  .xl\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .xl\:-ml-128 {
    margin-left: -32rem !important;
  }

  .xl\:-mt-140 {
    margin-top: -35rem !important;
  }

  .xl\:-mr-140 {
    margin-right: -35rem !important;
  }

  .xl\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .xl\:-ml-140 {
    margin-left: -35rem !important;
  }

  .xl\:-mt-160 {
    margin-top: -40rem !important;
  }

  .xl\:-mr-160 {
    margin-right: -40rem !important;
  }

  .xl\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .xl\:-ml-160 {
    margin-left: -40rem !important;
  }

  .xl\:-mt-180 {
    margin-top: -45rem !important;
  }

  .xl\:-mr-180 {
    margin-right: -45rem !important;
  }

  .xl\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .xl\:-ml-180 {
    margin-left: -45rem !important;
  }

  .xl\:-mt-192 {
    margin-top: -48rem !important;
  }

  .xl\:-mr-192 {
    margin-right: -48rem !important;
  }

  .xl\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .xl\:-ml-192 {
    margin-left: -48rem !important;
  }

  .xl\:-mt-200 {
    margin-top: -50rem !important;
  }

  .xl\:-mr-200 {
    margin-right: -50rem !important;
  }

  .xl\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .xl\:-ml-200 {
    margin-left: -50rem !important;
  }

  .xl\:-mt-240 {
    margin-top: -60rem !important;
  }

  .xl\:-mr-240 {
    margin-right: -60rem !important;
  }

  .xl\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .xl\:-ml-240 {
    margin-left: -60rem !important;
  }

  .xl\:-mt-256 {
    margin-top: -64rem !important;
  }

  .xl\:-mr-256 {
    margin-right: -64rem !important;
  }

  .xl\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .xl\:-ml-256 {
    margin-left: -64rem !important;
  }

  .xl\:-mt-280 {
    margin-top: -70rem !important;
  }

  .xl\:-mr-280 {
    margin-right: -70rem !important;
  }

  .xl\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .xl\:-ml-280 {
    margin-left: -70rem !important;
  }

  .xl\:-mt-320 {
    margin-top: -80rem !important;
  }

  .xl\:-mr-320 {
    margin-right: -80rem !important;
  }

  .xl\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .xl\:-ml-320 {
    margin-left: -80rem !important;
  }

  .xl\:-mt-360 {
    margin-top: -90rem !important;
  }

  .xl\:-mr-360 {
    margin-right: -90rem !important;
  }

  .xl\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .xl\:-ml-360 {
    margin-left: -90rem !important;
  }

  .xl\:-mt-400 {
    margin-top: -100rem !important;
  }

  .xl\:-mr-400 {
    margin-right: -100rem !important;
  }

  .xl\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .xl\:-ml-400 {
    margin-left: -100rem !important;
  }

  .xl\:-mt-480 {
    margin-top: -120rem !important;
  }

  .xl\:-mr-480 {
    margin-right: -120rem !important;
  }

  .xl\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .xl\:-ml-480 {
    margin-left: -120rem !important;
  }

  .xl\:-mt-px {
    margin-top: -1px !important;
  }

  .xl\:-mr-px {
    margin-right: -1px !important;
  }

  .xl\:-mb-px {
    margin-bottom: -1px !important;
  }

  .xl\:-ml-px {
    margin-left: -1px !important;
  }

  .xl\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .xl\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .xl\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .xl\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .xl\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .xl\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .xl\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .xl\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .xl\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .xl\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .xl\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .xl\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .xl\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .xl\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .xl\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .xl\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .xl\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .xl\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .xl\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .xl\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .xl\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .xl\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .xl\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .xl\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .xl\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .xl\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .xl\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .xl\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .xl\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .xl\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .xl\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .xl\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .xl\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .xl\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .xl\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .xl\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .xl\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .xl\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .xl\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .xl\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .xl\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .xl\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .xl\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .xl\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .xl\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .xl\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .xl\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .xl\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .xl\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .xl\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .xl\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .xl\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .xl\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .xl\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .xl\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .xl\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .xl\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .xl\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .xl\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .xl\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .xl\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .xl\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .xl\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .xl\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .xl\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .xl\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .xl\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .xl\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .xl\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .xl\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .xl\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .xl\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .xl\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .xl\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .xl\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .xl\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .xl\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .xl\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .xl\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .xl\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .xl\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .xl\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .xl\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .xl\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .xl\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .xl\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .xl\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .xl\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .xl\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .xl\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .xl\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .xl\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .xl\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .xl\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .xl\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .xl\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .xl\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .xl\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .xl\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .xl\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .xl\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .xl\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .xl\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .xl\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .xl\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .xl\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .xl\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .xl\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .xl\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .xl\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .xl\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .xl\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .xl\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .xl\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .xl\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .xl\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .xl\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .xl\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .xl\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .xl\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .xl\:-mt-full {
    margin-top: -100% !important;
  }

  .xl\:-mr-full {
    margin-right: -100% !important;
  }

  .xl\:-mb-full {
    margin-bottom: -100% !important;
  }

  .xl\:-ml-full {
    margin-left: -100% !important;
  }

  .xl\:-mt-2px {
    margin-top: -2px !important;
  }

  .xl\:-mr-2px {
    margin-right: -2px !important;
  }

  .xl\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .xl\:-ml-2px {
    margin-left: -2px !important;
  }

  .xl\:max-h-0 {
    max-height: 0 !important;
  }

  .xl\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .xl\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .xl\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .xl\:max-h-4 {
    max-height: 1rem !important;
  }

  .xl\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .xl\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .xl\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .xl\:max-h-8 {
    max-height: 2rem !important;
  }

  .xl\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .xl\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .xl\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .xl\:max-h-12 {
    max-height: 3rem !important;
  }

  .xl\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .xl\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .xl\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .xl\:max-h-16 {
    max-height: 4rem !important;
  }

  .xl\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .xl\:max-h-20 {
    max-height: 5rem !important;
  }

  .xl\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .xl\:max-h-24 {
    max-height: 6rem !important;
  }

  .xl\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .xl\:max-h-28 {
    max-height: 7rem !important;
  }

  .xl\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .xl\:max-h-32 {
    max-height: 8rem !important;
  }

  .xl\:max-h-36 {
    max-height: 9rem !important;
  }

  .xl\:max-h-40 {
    max-height: 10rem !important;
  }

  .xl\:max-h-44 {
    max-height: 11rem !important;
  }

  .xl\:max-h-48 {
    max-height: 12rem !important;
  }

  .xl\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .xl\:max-h-52 {
    max-height: 13rem !important;
  }

  .xl\:max-h-56 {
    max-height: 14rem !important;
  }

  .xl\:max-h-60 {
    max-height: 15rem !important;
  }

  .xl\:max-h-64 {
    max-height: 16rem !important;
  }

  .xl\:max-h-72 {
    max-height: 18rem !important;
  }

  .xl\:max-h-80 {
    max-height: 20rem !important;
  }

  .xl\:max-h-90 {
    max-height: 24rem !important;
  }

  .xl\:max-h-96 {
    max-height: 24rem !important;
  }

  .xl\:max-h-100 {
    max-height: 25rem !important;
  }

  .xl\:max-h-120 {
    max-height: 30rem !important;
  }

  .xl\:max-h-128 {
    max-height: 32rem !important;
  }

  .xl\:max-h-140 {
    max-height: 35rem !important;
  }

  .xl\:max-h-160 {
    max-height: 40rem !important;
  }

  .xl\:max-h-180 {
    max-height: 45rem !important;
  }

  .xl\:max-h-192 {
    max-height: 48rem !important;
  }

  .xl\:max-h-200 {
    max-height: 50rem !important;
  }

  .xl\:max-h-240 {
    max-height: 60rem !important;
  }

  .xl\:max-h-256 {
    max-height: 64rem !important;
  }

  .xl\:max-h-280 {
    max-height: 70rem !important;
  }

  .xl\:max-h-320 {
    max-height: 80rem !important;
  }

  .xl\:max-h-360 {
    max-height: 90rem !important;
  }

  .xl\:max-h-400 {
    max-height: 100rem !important;
  }

  .xl\:max-h-480 {
    max-height: 120rem !important;
  }

  .xl\:max-h-screen {
    max-height: 100vh !important;
  }

  .xl\:max-h-px {
    max-height: 1px !important;
  }

  .xl\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .xl\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .xl\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .xl\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .xl\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .xl\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .xl\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .xl\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .xl\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .xl\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .xl\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .xl\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .xl\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .xl\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .xl\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .xl\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .xl\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .xl\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .xl\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .xl\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .xl\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .xl\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .xl\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .xl\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .xl\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .xl\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .xl\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .xl\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .xl\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .xl\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .xl\:max-h-full {
    max-height: 100% !important;
  }

  .xl\:max-h-2px {
    max-height: 2px !important;
  }

  .xl\:max-h-none {
    max-height: none !important;
  }

  .xl\:max-w-0 {
    max-width: 0 !important;
  }

  .xl\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .xl\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .xl\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .xl\:max-w-4 {
    max-width: 1rem !important;
  }

  .xl\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .xl\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .xl\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .xl\:max-w-8 {
    max-width: 2rem !important;
  }

  .xl\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .xl\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .xl\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .xl\:max-w-12 {
    max-width: 3rem !important;
  }

  .xl\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .xl\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .xl\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .xl\:max-w-16 {
    max-width: 4rem !important;
  }

  .xl\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .xl\:max-w-20 {
    max-width: 5rem !important;
  }

  .xl\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .xl\:max-w-24 {
    max-width: 6rem !important;
  }

  .xl\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .xl\:max-w-28 {
    max-width: 7rem !important;
  }

  .xl\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .xl\:max-w-32 {
    max-width: 8rem !important;
  }

  .xl\:max-w-36 {
    max-width: 9rem !important;
  }

  .xl\:max-w-40 {
    max-width: 10rem !important;
  }

  .xl\:max-w-44 {
    max-width: 11rem !important;
  }

  .xl\:max-w-48 {
    max-width: 12rem !important;
  }

  .xl\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .xl\:max-w-52 {
    max-width: 13rem !important;
  }

  .xl\:max-w-56 {
    max-width: 14rem !important;
  }

  .xl\:max-w-60 {
    max-width: 15rem !important;
  }

  .xl\:max-w-64 {
    max-width: 16rem !important;
  }

  .xl\:max-w-72 {
    max-width: 18rem !important;
  }

  .xl\:max-w-80 {
    max-width: 20rem !important;
  }

  .xl\:max-w-90 {
    max-width: 24rem !important;
  }

  .xl\:max-w-96 {
    max-width: 24rem !important;
  }

  .xl\:max-w-100 {
    max-width: 25rem !important;
  }

  .xl\:max-w-120 {
    max-width: 30rem !important;
  }

  .xl\:max-w-128 {
    max-width: 32rem !important;
  }

  .xl\:max-w-140 {
    max-width: 35rem !important;
  }

  .xl\:max-w-160 {
    max-width: 40rem !important;
  }

  .xl\:max-w-180 {
    max-width: 45rem !important;
  }

  .xl\:max-w-192 {
    max-width: 48rem !important;
  }

  .xl\:max-w-200 {
    max-width: 50rem !important;
  }

  .xl\:max-w-240 {
    max-width: 60rem !important;
  }

  .xl\:max-w-256 {
    max-width: 64rem !important;
  }

  .xl\:max-w-280 {
    max-width: 70rem !important;
  }

  .xl\:max-w-320 {
    max-width: 80rem !important;
  }

  .xl\:max-w-360 {
    max-width: 90rem !important;
  }

  .xl\:max-w-400 {
    max-width: 100rem !important;
  }

  .xl\:max-w-480 {
    max-width: 120rem !important;
  }

  .xl\:max-w-none {
    max-width: none !important;
  }

  .xl\:max-w-xs {
    max-width: 20rem !important;
  }

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

  .xl\:max-w-md {
    max-width: 28rem !important;
  }

  .xl\:max-w-lg {
    max-width: 32rem !important;
  }

  .xl\:max-w-xl {
    max-width: 36rem !important;
  }

  .xl\:max-w-2xl {
    max-width: 42rem !important;
  }

  .xl\:max-w-3xl {
    max-width: 48rem !important;
  }

  .xl\:max-w-4xl {
    max-width: 56rem !important;
  }

  .xl\:max-w-5xl {
    max-width: 64rem !important;
  }

  .xl\:max-w-6xl {
    max-width: 72rem !important;
  }

  .xl\:max-w-7xl {
    max-width: 80rem !important;
  }

  .xl\:max-w-full {
    max-width: 100% !important;
  }

  .xl\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .xl\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .xl\:max-w-screen {
    max-width: 100vw !important;
  }

  .xl\:max-w-px {
    max-width: 1px !important;
  }

  .xl\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .xl\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .xl\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .xl\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .xl\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .xl\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .xl\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .xl\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .xl\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .xl\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .xl\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .xl\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .xl\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .xl\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .xl\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .xl\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .xl\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .xl\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .xl\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .xl\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .xl\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .xl\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .xl\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .xl\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .xl\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .xl\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .xl\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .xl\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .xl\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .xl\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .xl\:max-w-2px {
    max-width: 2px !important;
  }

  .xl\:min-h-0 {
    min-height: 0 !important;
  }

  .xl\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .xl\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .xl\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .xl\:min-h-4 {
    min-height: 1rem !important;
  }

  .xl\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .xl\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .xl\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .xl\:min-h-8 {
    min-height: 2rem !important;
  }

  .xl\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .xl\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .xl\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .xl\:min-h-12 {
    min-height: 3rem !important;
  }

  .xl\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .xl\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .xl\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .xl\:min-h-16 {
    min-height: 4rem !important;
  }

  .xl\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .xl\:min-h-20 {
    min-height: 5rem !important;
  }

  .xl\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .xl\:min-h-24 {
    min-height: 6rem !important;
  }

  .xl\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .xl\:min-h-28 {
    min-height: 7rem !important;
  }

  .xl\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .xl\:min-h-32 {
    min-height: 8rem !important;
  }

  .xl\:min-h-36 {
    min-height: 9rem !important;
  }

  .xl\:min-h-40 {
    min-height: 10rem !important;
  }

  .xl\:min-h-44 {
    min-height: 11rem !important;
  }

  .xl\:min-h-48 {
    min-height: 12rem !important;
  }

  .xl\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .xl\:min-h-52 {
    min-height: 13rem !important;
  }

  .xl\:min-h-56 {
    min-height: 14rem !important;
  }

  .xl\:min-h-60 {
    min-height: 15rem !important;
  }

  .xl\:min-h-64 {
    min-height: 16rem !important;
  }

  .xl\:min-h-72 {
    min-height: 18rem !important;
  }

  .xl\:min-h-80 {
    min-height: 20rem !important;
  }

  .xl\:min-h-90 {
    min-height: 24rem !important;
  }

  .xl\:min-h-96 {
    min-height: 24rem !important;
  }

  .xl\:min-h-100 {
    min-height: 25rem !important;
  }

  .xl\:min-h-120 {
    min-height: 30rem !important;
  }

  .xl\:min-h-128 {
    min-height: 32rem !important;
  }

  .xl\:min-h-140 {
    min-height: 35rem !important;
  }

  .xl\:min-h-160 {
    min-height: 40rem !important;
  }

  .xl\:min-h-180 {
    min-height: 45rem !important;
  }

  .xl\:min-h-192 {
    min-height: 48rem !important;
  }

  .xl\:min-h-200 {
    min-height: 50rem !important;
  }

  .xl\:min-h-240 {
    min-height: 60rem !important;
  }

  .xl\:min-h-256 {
    min-height: 64rem !important;
  }

  .xl\:min-h-280 {
    min-height: 70rem !important;
  }

  .xl\:min-h-320 {
    min-height: 80rem !important;
  }

  .xl\:min-h-360 {
    min-height: 90rem !important;
  }

  .xl\:min-h-400 {
    min-height: 100rem !important;
  }

  .xl\:min-h-480 {
    min-height: 120rem !important;
  }

  .xl\:min-h-full {
    min-height: 100% !important;
  }

  .xl\:min-h-screen {
    min-height: 100vh !important;
  }

  .xl\:min-h-px {
    min-height: 1px !important;
  }

  .xl\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .xl\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .xl\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .xl\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .xl\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .xl\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .xl\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .xl\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .xl\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .xl\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .xl\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .xl\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .xl\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .xl\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .xl\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .xl\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .xl\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .xl\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .xl\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .xl\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .xl\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .xl\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .xl\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .xl\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .xl\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .xl\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .xl\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .xl\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .xl\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .xl\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .xl\:min-h-2px {
    min-height: 2px !important;
  }

  .xl\:min-w-0 {
    min-width: 0 !important;
  }

  .xl\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .xl\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .xl\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .xl\:min-w-4 {
    min-width: 1rem !important;
  }

  .xl\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .xl\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .xl\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .xl\:min-w-8 {
    min-width: 2rem !important;
  }

  .xl\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .xl\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .xl\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .xl\:min-w-12 {
    min-width: 3rem !important;
  }

  .xl\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .xl\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .xl\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .xl\:min-w-16 {
    min-width: 4rem !important;
  }

  .xl\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .xl\:min-w-20 {
    min-width: 5rem !important;
  }

  .xl\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .xl\:min-w-24 {
    min-width: 6rem !important;
  }

  .xl\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .xl\:min-w-28 {
    min-width: 7rem !important;
  }

  .xl\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .xl\:min-w-32 {
    min-width: 8rem !important;
  }

  .xl\:min-w-36 {
    min-width: 9rem !important;
  }

  .xl\:min-w-40 {
    min-width: 10rem !important;
  }

  .xl\:min-w-44 {
    min-width: 11rem !important;
  }

  .xl\:min-w-48 {
    min-width: 12rem !important;
  }

  .xl\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .xl\:min-w-52 {
    min-width: 13rem !important;
  }

  .xl\:min-w-56 {
    min-width: 14rem !important;
  }

  .xl\:min-w-60 {
    min-width: 15rem !important;
  }

  .xl\:min-w-64 {
    min-width: 16rem !important;
  }

  .xl\:min-w-72 {
    min-width: 18rem !important;
  }

  .xl\:min-w-80 {
    min-width: 20rem !important;
  }

  .xl\:min-w-90 {
    min-width: 24rem !important;
  }

  .xl\:min-w-96 {
    min-width: 24rem !important;
  }

  .xl\:min-w-100 {
    min-width: 25rem !important;
  }

  .xl\:min-w-120 {
    min-width: 30rem !important;
  }

  .xl\:min-w-128 {
    min-width: 32rem !important;
  }

  .xl\:min-w-140 {
    min-width: 35rem !important;
  }

  .xl\:min-w-160 {
    min-width: 40rem !important;
  }

  .xl\:min-w-180 {
    min-width: 45rem !important;
  }

  .xl\:min-w-192 {
    min-width: 48rem !important;
  }

  .xl\:min-w-200 {
    min-width: 50rem !important;
  }

  .xl\:min-w-240 {
    min-width: 60rem !important;
  }

  .xl\:min-w-256 {
    min-width: 64rem !important;
  }

  .xl\:min-w-280 {
    min-width: 70rem !important;
  }

  .xl\:min-w-320 {
    min-width: 80rem !important;
  }

  .xl\:min-w-360 {
    min-width: 90rem !important;
  }

  .xl\:min-w-400 {
    min-width: 100rem !important;
  }

  .xl\:min-w-480 {
    min-width: 120rem !important;
  }

  .xl\:min-w-full {
    min-width: 100% !important;
  }

  .xl\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .xl\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .xl\:min-w-screen {
    min-width: 100vw !important;
  }

  .xl\:min-w-px {
    min-width: 1px !important;
  }

  .xl\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .xl\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .xl\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .xl\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .xl\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .xl\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .xl\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .xl\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .xl\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .xl\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .xl\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .xl\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .xl\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .xl\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .xl\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .xl\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .xl\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .xl\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .xl\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .xl\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .xl\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .xl\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .xl\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .xl\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .xl\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .xl\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .xl\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .xl\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .xl\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .xl\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .xl\:min-w-2px {
    min-width: 2px !important;
  }

  .xl\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .xl\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .xl\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .xl\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .xl\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .xl\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .xl\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .xl\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .xl\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .xl\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .xl\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .xl\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .xl\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .xl\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .xl\:opacity-0 {
    opacity: 0 !important;
  }

  .xl\:opacity-12 {
    opacity: 0.12 !important;
  }

  .xl\:opacity-25 {
    opacity: 0.25 !important;
  }

  .xl\:opacity-38 {
    opacity: 0.38 !important;
  }

  .xl\:opacity-50 {
    opacity: 0.5 !important;
  }

  .xl\:opacity-54 {
    opacity: 0.54 !important;
  }

  .xl\:opacity-70 {
    opacity: 0.7 !important;
  }

  .xl\:opacity-75 {
    opacity: 0.75 !important;
  }

  .xl\:opacity-84 {
    opacity: 0.84 !important;
  }

  .xl\:opacity-100 {
    opacity: 1 !important;
  }

  .xl\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .xl\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .xl\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .xl\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .xl\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .xl\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .xl\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .xl\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .xl\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .xl\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .xl\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .xl\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .xl\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .xl\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .xl\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .xl\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .xl\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .xl\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .xl\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .xl\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .xl\:overflow-auto {
    overflow: auto !important;
  }

  .xl\:overflow-hidden {
    overflow: hidden !important;
  }

  .xl\:overflow-visible {
    overflow: visible !important;
  }

  .xl\:overflow-scroll {
    overflow: scroll !important;
  }

  .xl\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .xl\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .xl\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .xl\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .xl\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .xl\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .xl\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .xl\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .xl\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .xl\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .xl\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .xl\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .xl\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .xl\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .xl\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .xl\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .xl\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .xl\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .xl\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .xl\:p-0 {
    padding: 0 !important;
  }

  .xl\:p-1 {
    padding: 0.25rem !important;
  }

  .xl\:p-2 {
    padding: 0.5rem !important;
  }

  .xl\:p-3 {
    padding: 0.75rem !important;
  }

  .xl\:p-4 {
    padding: 1rem !important;
  }

  .xl\:p-5 {
    padding: 1.25rem !important;
  }

  .xl\:p-6 {
    padding: 1.5rem !important;
  }

  .xl\:p-7 {
    padding: 1.75rem !important;
  }

  .xl\:p-8 {
    padding: 2rem !important;
  }

  .xl\:p-9 {
    padding: 2.25rem !important;
  }

  .xl\:p-10 {
    padding: 2.5rem !important;
  }

  .xl\:p-11 {
    padding: 2.75rem !important;
  }

  .xl\:p-12 {
    padding: 3rem !important;
  }

  .xl\:p-13 {
    padding: 3.25rem !important;
  }

  .xl\:p-14 {
    padding: 3.5rem !important;
  }

  .xl\:p-15 {
    padding: 3.75rem !important;
  }

  .xl\:p-16 {
    padding: 4rem !important;
  }

  .xl\:p-18 {
    padding: 4.5rem !important;
  }

  .xl\:p-20 {
    padding: 5rem !important;
  }

  .xl\:p-22 {
    padding: 5.5rem !important;
  }

  .xl\:p-24 {
    padding: 6rem !important;
  }

  .xl\:p-26 {
    padding: 6.5rem !important;
  }

  .xl\:p-28 {
    padding: 7rem !important;
  }

  .xl\:p-30 {
    padding: 7.5rem !important;
  }

  .xl\:p-32 {
    padding: 8rem !important;
  }

  .xl\:p-36 {
    padding: 9rem !important;
  }

  .xl\:p-40 {
    padding: 10rem !important;
  }

  .xl\:p-44 {
    padding: 11rem !important;
  }

  .xl\:p-48 {
    padding: 12rem !important;
  }

  .xl\:p-50 {
    padding: 12.5rem !important;
  }

  .xl\:p-52 {
    padding: 13rem !important;
  }

  .xl\:p-56 {
    padding: 14rem !important;
  }

  .xl\:p-60 {
    padding: 15rem !important;
  }

  .xl\:p-64 {
    padding: 16rem !important;
  }

  .xl\:p-72 {
    padding: 18rem !important;
  }

  .xl\:p-80 {
    padding: 20rem !important;
  }

  .xl\:p-90 {
    padding: 24rem !important;
  }

  .xl\:p-96 {
    padding: 24rem !important;
  }

  .xl\:p-100 {
    padding: 25rem !important;
  }

  .xl\:p-120 {
    padding: 30rem !important;
  }

  .xl\:p-128 {
    padding: 32rem !important;
  }

  .xl\:p-140 {
    padding: 35rem !important;
  }

  .xl\:p-160 {
    padding: 40rem !important;
  }

  .xl\:p-180 {
    padding: 45rem !important;
  }

  .xl\:p-192 {
    padding: 48rem !important;
  }

  .xl\:p-200 {
    padding: 50rem !important;
  }

  .xl\:p-240 {
    padding: 60rem !important;
  }

  .xl\:p-256 {
    padding: 64rem !important;
  }

  .xl\:p-280 {
    padding: 70rem !important;
  }

  .xl\:p-320 {
    padding: 80rem !important;
  }

  .xl\:p-360 {
    padding: 90rem !important;
  }

  .xl\:p-400 {
    padding: 100rem !important;
  }

  .xl\:p-480 {
    padding: 120rem !important;
  }

  .xl\:p-px {
    padding: 1px !important;
  }

  .xl\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .xl\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .xl\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .xl\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .xl\:p-1\/2 {
    padding: 50% !important;
  }

  .xl\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .xl\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .xl\:p-1\/4 {
    padding: 25% !important;
  }

  .xl\:p-2\/4 {
    padding: 50% !important;
  }

  .xl\:p-3\/4 {
    padding: 75% !important;
  }

  .xl\:p-1\/5 {
    padding: 20% !important;
  }

  .xl\:p-2\/5 {
    padding: 40% !important;
  }

  .xl\:p-3\/5 {
    padding: 60% !important;
  }

  .xl\:p-4\/5 {
    padding: 80% !important;
  }

  .xl\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .xl\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .xl\:p-3\/6 {
    padding: 50% !important;
  }

  .xl\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .xl\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .xl\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .xl\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .xl\:p-3\/12 {
    padding: 25% !important;
  }

  .xl\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .xl\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .xl\:p-6\/12 {
    padding: 50% !important;
  }

  .xl\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .xl\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .xl\:p-9\/12 {
    padding: 75% !important;
  }

  .xl\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .xl\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .xl\:p-full {
    padding: 100% !important;
  }

  .xl\:p-2px {
    padding: 2px !important;
  }

  .xl\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .xl\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .xl\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .xl\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .xl\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .xl\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .xl\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .xl\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .xl\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .xl\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .xl\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .xl\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .xl\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .xl\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .xl\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .xl\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .xl\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .xl\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .xl\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .xl\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .xl\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .xl\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .xl\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .xl\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .xl\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .xl\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .xl\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .xl\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .xl\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .xl\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .xl\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .xl\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .xl\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .xl\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .xl\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .xl\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .xl\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .xl\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .xl\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .xl\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .xl\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .xl\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .xl\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .xl\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .xl\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .xl\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .xl\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .xl\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .xl\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .xl\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .xl\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .xl\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .xl\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .xl\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .xl\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .xl\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .xl\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .xl\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .xl\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .xl\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .xl\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .xl\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .xl\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .xl\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .xl\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .xl\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .xl\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .xl\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .xl\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .xl\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .xl\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .xl\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .xl\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .xl\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .xl\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .xl\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .xl\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .xl\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .xl\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .xl\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .xl\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .xl\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .xl\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .xl\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .xl\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .xl\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .xl\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .xl\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .xl\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .xl\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .xl\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .xl\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .xl\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .xl\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .xl\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .xl\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .xl\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .xl\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .xl\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .xl\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .xl\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .xl\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .xl\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .xl\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .xl\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .xl\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .xl\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .xl\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .xl\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .xl\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .xl\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .xl\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .xl\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .xl\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .xl\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .xl\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .xl\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .xl\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .xl\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .xl\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .xl\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .xl\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .xl\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .xl\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .xl\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .xl\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .xl\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .xl\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .xl\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .xl\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .xl\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .xl\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .xl\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .xl\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .xl\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .xl\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .xl\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .xl\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .xl\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .xl\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .xl\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .xl\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .xl\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .xl\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .xl\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .xl\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .xl\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .xl\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .xl\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .xl\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .xl\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .xl\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .xl\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .xl\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .xl\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .xl\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .xl\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .xl\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .xl\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .xl\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .xl\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .xl\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .xl\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .xl\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .xl\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .xl\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .xl\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .xl\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .xl\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .xl\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .xl\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .xl\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .xl\:pt-0 {
    padding-top: 0 !important;
  }

  .xl\:pr-0 {
    padding-right: 0 !important;
  }

  .xl\:pb-0 {
    padding-bottom: 0 !important;
  }

  .xl\:pl-0 {
    padding-left: 0 !important;
  }

  .xl\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .xl\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .xl\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .xl\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .xl\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .xl\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .xl\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .xl\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .xl\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .xl\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .xl\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .xl\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .xl\:pt-4 {
    padding-top: 1rem !important;
  }

  .xl\:pr-4 {
    padding-right: 1rem !important;
  }

  .xl\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .xl\:pl-4 {
    padding-left: 1rem !important;
  }

  .xl\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .xl\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .xl\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .xl\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .xl\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .xl\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .xl\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .xl\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .xl\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .xl\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .xl\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .xl\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .xl\:pt-8 {
    padding-top: 2rem !important;
  }

  .xl\:pr-8 {
    padding-right: 2rem !important;
  }

  .xl\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .xl\:pl-8 {
    padding-left: 2rem !important;
  }

  .xl\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .xl\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .xl\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .xl\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .xl\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .xl\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .xl\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .xl\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .xl\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .xl\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .xl\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .xl\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .xl\:pt-12 {
    padding-top: 3rem !important;
  }

  .xl\:pr-12 {
    padding-right: 3rem !important;
  }

  .xl\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .xl\:pl-12 {
    padding-left: 3rem !important;
  }

  .xl\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .xl\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .xl\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .xl\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .xl\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .xl\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .xl\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .xl\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .xl\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .xl\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .xl\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .xl\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .xl\:pt-16 {
    padding-top: 4rem !important;
  }

  .xl\:pr-16 {
    padding-right: 4rem !important;
  }

  .xl\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .xl\:pl-16 {
    padding-left: 4rem !important;
  }

  .xl\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .xl\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .xl\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .xl\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .xl\:pt-20 {
    padding-top: 5rem !important;
  }

  .xl\:pr-20 {
    padding-right: 5rem !important;
  }

  .xl\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .xl\:pl-20 {
    padding-left: 5rem !important;
  }

  .xl\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .xl\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .xl\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .xl\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .xl\:pt-24 {
    padding-top: 6rem !important;
  }

  .xl\:pr-24 {
    padding-right: 6rem !important;
  }

  .xl\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .xl\:pl-24 {
    padding-left: 6rem !important;
  }

  .xl\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .xl\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .xl\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .xl\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .xl\:pt-28 {
    padding-top: 7rem !important;
  }

  .xl\:pr-28 {
    padding-right: 7rem !important;
  }

  .xl\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .xl\:pl-28 {
    padding-left: 7rem !important;
  }

  .xl\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .xl\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .xl\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .xl\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .xl\:pt-32 {
    padding-top: 8rem !important;
  }

  .xl\:pr-32 {
    padding-right: 8rem !important;
  }

  .xl\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .xl\:pl-32 {
    padding-left: 8rem !important;
  }

  .xl\:pt-36 {
    padding-top: 9rem !important;
  }

  .xl\:pr-36 {
    padding-right: 9rem !important;
  }

  .xl\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .xl\:pl-36 {
    padding-left: 9rem !important;
  }

  .xl\:pt-40 {
    padding-top: 10rem !important;
  }

  .xl\:pr-40 {
    padding-right: 10rem !important;
  }

  .xl\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .xl\:pl-40 {
    padding-left: 10rem !important;
  }

  .xl\:pt-44 {
    padding-top: 11rem !important;
  }

  .xl\:pr-44 {
    padding-right: 11rem !important;
  }

  .xl\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .xl\:pl-44 {
    padding-left: 11rem !important;
  }

  .xl\:pt-48 {
    padding-top: 12rem !important;
  }

  .xl\:pr-48 {
    padding-right: 12rem !important;
  }

  .xl\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .xl\:pl-48 {
    padding-left: 12rem !important;
  }

  .xl\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .xl\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .xl\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .xl\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .xl\:pt-52 {
    padding-top: 13rem !important;
  }

  .xl\:pr-52 {
    padding-right: 13rem !important;
  }

  .xl\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .xl\:pl-52 {
    padding-left: 13rem !important;
  }

  .xl\:pt-56 {
    padding-top: 14rem !important;
  }

  .xl\:pr-56 {
    padding-right: 14rem !important;
  }

  .xl\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .xl\:pl-56 {
    padding-left: 14rem !important;
  }

  .xl\:pt-60 {
    padding-top: 15rem !important;
  }

  .xl\:pr-60 {
    padding-right: 15rem !important;
  }

  .xl\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .xl\:pl-60 {
    padding-left: 15rem !important;
  }

  .xl\:pt-64 {
    padding-top: 16rem !important;
  }

  .xl\:pr-64 {
    padding-right: 16rem !important;
  }

  .xl\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .xl\:pl-64 {
    padding-left: 16rem !important;
  }

  .xl\:pt-72 {
    padding-top: 18rem !important;
  }

  .xl\:pr-72 {
    padding-right: 18rem !important;
  }

  .xl\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .xl\:pl-72 {
    padding-left: 18rem !important;
  }

  .xl\:pt-80 {
    padding-top: 20rem !important;
  }

  .xl\:pr-80 {
    padding-right: 20rem !important;
  }

  .xl\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .xl\:pl-80 {
    padding-left: 20rem !important;
  }

  .xl\:pt-90 {
    padding-top: 24rem !important;
  }

  .xl\:pr-90 {
    padding-right: 24rem !important;
  }

  .xl\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .xl\:pl-90 {
    padding-left: 24rem !important;
  }

  .xl\:pt-96 {
    padding-top: 24rem !important;
  }

  .xl\:pr-96 {
    padding-right: 24rem !important;
  }

  .xl\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .xl\:pl-96 {
    padding-left: 24rem !important;
  }

  .xl\:pt-100 {
    padding-top: 25rem !important;
  }

  .xl\:pr-100 {
    padding-right: 25rem !important;
  }

  .xl\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .xl\:pl-100 {
    padding-left: 25rem !important;
  }

  .xl\:pt-120 {
    padding-top: 30rem !important;
  }

  .xl\:pr-120 {
    padding-right: 30rem !important;
  }

  .xl\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .xl\:pl-120 {
    padding-left: 30rem !important;
  }

  .xl\:pt-128 {
    padding-top: 32rem !important;
  }

  .xl\:pr-128 {
    padding-right: 32rem !important;
  }

  .xl\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .xl\:pl-128 {
    padding-left: 32rem !important;
  }

  .xl\:pt-140 {
    padding-top: 35rem !important;
  }

  .xl\:pr-140 {
    padding-right: 35rem !important;
  }

  .xl\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .xl\:pl-140 {
    padding-left: 35rem !important;
  }

  .xl\:pt-160 {
    padding-top: 40rem !important;
  }

  .xl\:pr-160 {
    padding-right: 40rem !important;
  }

  .xl\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .xl\:pl-160 {
    padding-left: 40rem !important;
  }

  .xl\:pt-180 {
    padding-top: 45rem !important;
  }

  .xl\:pr-180 {
    padding-right: 45rem !important;
  }

  .xl\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .xl\:pl-180 {
    padding-left: 45rem !important;
  }

  .xl\:pt-192 {
    padding-top: 48rem !important;
  }

  .xl\:pr-192 {
    padding-right: 48rem !important;
  }

  .xl\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .xl\:pl-192 {
    padding-left: 48rem !important;
  }

  .xl\:pt-200 {
    padding-top: 50rem !important;
  }

  .xl\:pr-200 {
    padding-right: 50rem !important;
  }

  .xl\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .xl\:pl-200 {
    padding-left: 50rem !important;
  }

  .xl\:pt-240 {
    padding-top: 60rem !important;
  }

  .xl\:pr-240 {
    padding-right: 60rem !important;
  }

  .xl\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .xl\:pl-240 {
    padding-left: 60rem !important;
  }

  .xl\:pt-256 {
    padding-top: 64rem !important;
  }

  .xl\:pr-256 {
    padding-right: 64rem !important;
  }

  .xl\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .xl\:pl-256 {
    padding-left: 64rem !important;
  }

  .xl\:pt-280 {
    padding-top: 70rem !important;
  }

  .xl\:pr-280 {
    padding-right: 70rem !important;
  }

  .xl\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .xl\:pl-280 {
    padding-left: 70rem !important;
  }

  .xl\:pt-320 {
    padding-top: 80rem !important;
  }

  .xl\:pr-320 {
    padding-right: 80rem !important;
  }

  .xl\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .xl\:pl-320 {
    padding-left: 80rem !important;
  }

  .xl\:pt-360 {
    padding-top: 90rem !important;
  }

  .xl\:pr-360 {
    padding-right: 90rem !important;
  }

  .xl\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .xl\:pl-360 {
    padding-left: 90rem !important;
  }

  .xl\:pt-400 {
    padding-top: 100rem !important;
  }

  .xl\:pr-400 {
    padding-right: 100rem !important;
  }

  .xl\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .xl\:pl-400 {
    padding-left: 100rem !important;
  }

  .xl\:pt-480 {
    padding-top: 120rem !important;
  }

  .xl\:pr-480 {
    padding-right: 120rem !important;
  }

  .xl\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .xl\:pl-480 {
    padding-left: 120rem !important;
  }

  .xl\:pt-px {
    padding-top: 1px !important;
  }

  .xl\:pr-px {
    padding-right: 1px !important;
  }

  .xl\:pb-px {
    padding-bottom: 1px !important;
  }

  .xl\:pl-px {
    padding-left: 1px !important;
  }

  .xl\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .xl\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .xl\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .xl\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .xl\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .xl\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .xl\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .xl\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .xl\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .xl\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .xl\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .xl\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .xl\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .xl\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .xl\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .xl\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .xl\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .xl\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .xl\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .xl\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .xl\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .xl\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .xl\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .xl\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .xl\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .xl\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .xl\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .xl\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .xl\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .xl\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .xl\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .xl\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .xl\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .xl\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .xl\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .xl\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .xl\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .xl\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .xl\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .xl\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .xl\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .xl\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .xl\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .xl\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .xl\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .xl\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .xl\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .xl\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .xl\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .xl\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .xl\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .xl\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .xl\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .xl\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .xl\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .xl\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .xl\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .xl\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .xl\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .xl\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .xl\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .xl\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .xl\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .xl\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .xl\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .xl\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .xl\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .xl\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .xl\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .xl\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .xl\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .xl\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .xl\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .xl\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .xl\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .xl\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .xl\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .xl\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .xl\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .xl\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .xl\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .xl\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .xl\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .xl\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .xl\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .xl\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .xl\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .xl\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .xl\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .xl\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .xl\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .xl\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .xl\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .xl\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .xl\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .xl\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .xl\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .xl\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .xl\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .xl\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .xl\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .xl\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .xl\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .xl\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .xl\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .xl\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .xl\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .xl\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .xl\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .xl\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .xl\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .xl\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .xl\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .xl\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .xl\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .xl\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .xl\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .xl\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .xl\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .xl\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .xl\:pt-full {
    padding-top: 100% !important;
  }

  .xl\:pr-full {
    padding-right: 100% !important;
  }

  .xl\:pb-full {
    padding-bottom: 100% !important;
  }

  .xl\:pl-full {
    padding-left: 100% !important;
  }

  .xl\:pt-2px {
    padding-top: 2px !important;
  }

  .xl\:pr-2px {
    padding-right: 2px !important;
  }

  .xl\:pb-2px {
    padding-bottom: 2px !important;
  }

  .xl\:pl-2px {
    padding-left: 2px !important;
  }

  .xl\:static {
    position: static !important;
  }

  .xl\:fixed {
    position: fixed !important;
  }

  .xl\:absolute {
    position: absolute !important;
  }

  .xl\:relative {
    position: relative !important;
  }

  .xl\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .xl\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .xl\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .xl\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .xl\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .xl\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .xl\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .xl\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .xl\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .xl\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .xl\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .xl\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .xl\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .xl\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .xl\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .xl\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .xl\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .xl\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .xl\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .xl\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .xl\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .xl\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .xl\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .xl\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .xl\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .xl\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .xl\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .xl\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .xl\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .xl\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .xl\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .xl\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .xl\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .xl\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .xl\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .xl\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .xl\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .xl\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .xl\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .xl\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .xl\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .xl\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .xl\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .xl\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .xl\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .xl\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .xl\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .xl\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .xl\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .xl\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .xl\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .xl\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .xl\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .xl\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .xl\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .xl\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .xl\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .xl\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .xl\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .xl\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .xl\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xl\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xl\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xl\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .xl\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xl\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .xl\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .xl\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .xl\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .xl\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .xl\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .xl\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xl\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xl\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xl\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .xl\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .xl\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .xl\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .xl\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xl\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .xl\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xl\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .xl\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xl\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .xl\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .xl\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .xl\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .xl\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .xl\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .xl\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .xl\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .xl\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .xl\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .xl\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .xl\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .xl\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .xl\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .xl\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .xl\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .xl\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .xl\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .xl\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .xl\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .xl\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .xl\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .xl\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .xl\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .xl\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .xl\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .xl\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .xl\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .xl\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .xl\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .xl\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .xl\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .xl\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .xl\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .xl\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .xl\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .xl\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .xl\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .xl\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .xl\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .xl\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .xl\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .xl\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .xl\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .xl\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .xl\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .xl\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .xl\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .xl\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .xl\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .xl\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .xl\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .xl\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .xl\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .xl\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .xl\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .xl\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .xl\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .xl\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .xl\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .xl\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .xl\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .xl\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .xl\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .xl\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .xl\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .xl\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .xl\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .xl\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .xl\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .xl\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .xl\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .xl\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .xl\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .xl\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .xl\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .xl\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .xl\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .xl\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .xl\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .xl\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .xl\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .xl\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .xl\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .xl\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .xl\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .xl\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .xl\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .xl\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .xl\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .xl\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .xl\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .xl\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .xl\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .xl\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .xl\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .xl\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .xl\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .xl\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .xl\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .xl\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .xl\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .xl\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .xl\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .xl\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .xl\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .xl\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .xl\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .xl\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .xl\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .xl\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .xl\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .xl\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .xl\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .xl\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .xl\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .xl\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .xl\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .xl\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .xl\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .xl\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .xl\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .xl\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .xl\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .xl\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .xl\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .xl\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xl\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .xl\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xl\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .xl\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .xl\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .xl\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .xl\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .xl\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .xl\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .xl\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .xl\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .xl\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .xl\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .xl\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .xl\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .xl\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .xl\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .xl\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .xl\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .xl\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xl\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .xl\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .xl\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .xl\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xl\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .xl\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .xl\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .xl\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .xl\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .xl\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .xl\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .xl\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .xl\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .xl\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xl\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .xl\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .xl\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .xl\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .xl\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .xl\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .xl\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .xl\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xl\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .xl\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .xl\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .xl\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .xl\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .xl\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .xl\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .xl\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .xl\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .xl\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .xl\:top-0 {
    top: 0 !important;
  }

  .xl\:right-0 {
    right: 0 !important;
  }

  .xl\:bottom-0 {
    bottom: 0 !important;
  }

  .xl\:left-0 {
    left: 0 !important;
  }

  .xl\:top-1 {
    top: 0.25rem !important;
  }

  .xl\:right-1 {
    right: 0.25rem !important;
  }

  .xl\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .xl\:left-1 {
    left: 0.25rem !important;
  }

  .xl\:top-2 {
    top: 0.5rem !important;
  }

  .xl\:right-2 {
    right: 0.5rem !important;
  }

  .xl\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .xl\:left-2 {
    left: 0.5rem !important;
  }

  .xl\:top-3 {
    top: 0.75rem !important;
  }

  .xl\:right-3 {
    right: 0.75rem !important;
  }

  .xl\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .xl\:left-3 {
    left: 0.75rem !important;
  }

  .xl\:top-4 {
    top: 1rem !important;
  }

  .xl\:right-4 {
    right: 1rem !important;
  }

  .xl\:bottom-4 {
    bottom: 1rem !important;
  }

  .xl\:left-4 {
    left: 1rem !important;
  }

  .xl\:top-5 {
    top: 1.25rem !important;
  }

  .xl\:right-5 {
    right: 1.25rem !important;
  }

  .xl\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .xl\:left-5 {
    left: 1.25rem !important;
  }

  .xl\:top-6 {
    top: 1.5rem !important;
  }

  .xl\:right-6 {
    right: 1.5rem !important;
  }

  .xl\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .xl\:left-6 {
    left: 1.5rem !important;
  }

  .xl\:top-7 {
    top: 1.75rem !important;
  }

  .xl\:right-7 {
    right: 1.75rem !important;
  }

  .xl\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .xl\:left-7 {
    left: 1.75rem !important;
  }

  .xl\:top-8 {
    top: 2rem !important;
  }

  .xl\:right-8 {
    right: 2rem !important;
  }

  .xl\:bottom-8 {
    bottom: 2rem !important;
  }

  .xl\:left-8 {
    left: 2rem !important;
  }

  .xl\:top-9 {
    top: 2.25rem !important;
  }

  .xl\:right-9 {
    right: 2.25rem !important;
  }

  .xl\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .xl\:left-9 {
    left: 2.25rem !important;
  }

  .xl\:top-10 {
    top: 2.5rem !important;
  }

  .xl\:right-10 {
    right: 2.5rem !important;
  }

  .xl\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .xl\:left-10 {
    left: 2.5rem !important;
  }

  .xl\:top-11 {
    top: 2.75rem !important;
  }

  .xl\:right-11 {
    right: 2.75rem !important;
  }

  .xl\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .xl\:left-11 {
    left: 2.75rem !important;
  }

  .xl\:top-12 {
    top: 3rem !important;
  }

  .xl\:right-12 {
    right: 3rem !important;
  }

  .xl\:bottom-12 {
    bottom: 3rem !important;
  }

  .xl\:left-12 {
    left: 3rem !important;
  }

  .xl\:top-13 {
    top: 3.25rem !important;
  }

  .xl\:right-13 {
    right: 3.25rem !important;
  }

  .xl\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .xl\:left-13 {
    left: 3.25rem !important;
  }

  .xl\:top-14 {
    top: 3.5rem !important;
  }

  .xl\:right-14 {
    right: 3.5rem !important;
  }

  .xl\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .xl\:left-14 {
    left: 3.5rem !important;
  }

  .xl\:top-15 {
    top: 3.75rem !important;
  }

  .xl\:right-15 {
    right: 3.75rem !important;
  }

  .xl\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .xl\:left-15 {
    left: 3.75rem !important;
  }

  .xl\:top-16 {
    top: 4rem !important;
  }

  .xl\:right-16 {
    right: 4rem !important;
  }

  .xl\:bottom-16 {
    bottom: 4rem !important;
  }

  .xl\:left-16 {
    left: 4rem !important;
  }

  .xl\:top-18 {
    top: 4.5rem !important;
  }

  .xl\:right-18 {
    right: 4.5rem !important;
  }

  .xl\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .xl\:left-18 {
    left: 4.5rem !important;
  }

  .xl\:top-20 {
    top: 5rem !important;
  }

  .xl\:right-20 {
    right: 5rem !important;
  }

  .xl\:bottom-20 {
    bottom: 5rem !important;
  }

  .xl\:left-20 {
    left: 5rem !important;
  }

  .xl\:top-22 {
    top: 5.5rem !important;
  }

  .xl\:right-22 {
    right: 5.5rem !important;
  }

  .xl\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .xl\:left-22 {
    left: 5.5rem !important;
  }

  .xl\:top-24 {
    top: 6rem !important;
  }

  .xl\:right-24 {
    right: 6rem !important;
  }

  .xl\:bottom-24 {
    bottom: 6rem !important;
  }

  .xl\:left-24 {
    left: 6rem !important;
  }

  .xl\:top-26 {
    top: 6.5rem !important;
  }

  .xl\:right-26 {
    right: 6.5rem !important;
  }

  .xl\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .xl\:left-26 {
    left: 6.5rem !important;
  }

  .xl\:top-28 {
    top: 7rem !important;
  }

  .xl\:right-28 {
    right: 7rem !important;
  }

  .xl\:bottom-28 {
    bottom: 7rem !important;
  }

  .xl\:left-28 {
    left: 7rem !important;
  }

  .xl\:top-30 {
    top: 7.5rem !important;
  }

  .xl\:right-30 {
    right: 7.5rem !important;
  }

  .xl\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .xl\:left-30 {
    left: 7.5rem !important;
  }

  .xl\:top-32 {
    top: 8rem !important;
  }

  .xl\:right-32 {
    right: 8rem !important;
  }

  .xl\:bottom-32 {
    bottom: 8rem !important;
  }

  .xl\:left-32 {
    left: 8rem !important;
  }

  .xl\:top-36 {
    top: 9rem !important;
  }

  .xl\:right-36 {
    right: 9rem !important;
  }

  .xl\:bottom-36 {
    bottom: 9rem !important;
  }

  .xl\:left-36 {
    left: 9rem !important;
  }

  .xl\:top-40 {
    top: 10rem !important;
  }

  .xl\:right-40 {
    right: 10rem !important;
  }

  .xl\:bottom-40 {
    bottom: 10rem !important;
  }

  .xl\:left-40 {
    left: 10rem !important;
  }

  .xl\:top-44 {
    top: 11rem !important;
  }

  .xl\:right-44 {
    right: 11rem !important;
  }

  .xl\:bottom-44 {
    bottom: 11rem !important;
  }

  .xl\:left-44 {
    left: 11rem !important;
  }

  .xl\:top-48 {
    top: 12rem !important;
  }

  .xl\:right-48 {
    right: 12rem !important;
  }

  .xl\:bottom-48 {
    bottom: 12rem !important;
  }

  .xl\:left-48 {
    left: 12rem !important;
  }

  .xl\:top-50 {
    top: 12.5rem !important;
  }

  .xl\:right-50 {
    right: 12.5rem !important;
  }

  .xl\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .xl\:left-50 {
    left: 12.5rem !important;
  }

  .xl\:top-52 {
    top: 13rem !important;
  }

  .xl\:right-52 {
    right: 13rem !important;
  }

  .xl\:bottom-52 {
    bottom: 13rem !important;
  }

  .xl\:left-52 {
    left: 13rem !important;
  }

  .xl\:top-56 {
    top: 14rem !important;
  }

  .xl\:right-56 {
    right: 14rem !important;
  }

  .xl\:bottom-56 {
    bottom: 14rem !important;
  }

  .xl\:left-56 {
    left: 14rem !important;
  }

  .xl\:top-60 {
    top: 15rem !important;
  }

  .xl\:right-60 {
    right: 15rem !important;
  }

  .xl\:bottom-60 {
    bottom: 15rem !important;
  }

  .xl\:left-60 {
    left: 15rem !important;
  }

  .xl\:top-64 {
    top: 16rem !important;
  }

  .xl\:right-64 {
    right: 16rem !important;
  }

  .xl\:bottom-64 {
    bottom: 16rem !important;
  }

  .xl\:left-64 {
    left: 16rem !important;
  }

  .xl\:top-72 {
    top: 18rem !important;
  }

  .xl\:right-72 {
    right: 18rem !important;
  }

  .xl\:bottom-72 {
    bottom: 18rem !important;
  }

  .xl\:left-72 {
    left: 18rem !important;
  }

  .xl\:top-80 {
    top: 20rem !important;
  }

  .xl\:right-80 {
    right: 20rem !important;
  }

  .xl\:bottom-80 {
    bottom: 20rem !important;
  }

  .xl\:left-80 {
    left: 20rem !important;
  }

  .xl\:top-90 {
    top: 24rem !important;
  }

  .xl\:right-90 {
    right: 24rem !important;
  }

  .xl\:bottom-90 {
    bottom: 24rem !important;
  }

  .xl\:left-90 {
    left: 24rem !important;
  }

  .xl\:top-96 {
    top: 24rem !important;
  }

  .xl\:right-96 {
    right: 24rem !important;
  }

  .xl\:bottom-96 {
    bottom: 24rem !important;
  }

  .xl\:left-96 {
    left: 24rem !important;
  }

  .xl\:top-100 {
    top: 25rem !important;
  }

  .xl\:right-100 {
    right: 25rem !important;
  }

  .xl\:bottom-100 {
    bottom: 25rem !important;
  }

  .xl\:left-100 {
    left: 25rem !important;
  }

  .xl\:top-120 {
    top: 30rem !important;
  }

  .xl\:right-120 {
    right: 30rem !important;
  }

  .xl\:bottom-120 {
    bottom: 30rem !important;
  }

  .xl\:left-120 {
    left: 30rem !important;
  }

  .xl\:top-128 {
    top: 32rem !important;
  }

  .xl\:right-128 {
    right: 32rem !important;
  }

  .xl\:bottom-128 {
    bottom: 32rem !important;
  }

  .xl\:left-128 {
    left: 32rem !important;
  }

  .xl\:top-140 {
    top: 35rem !important;
  }

  .xl\:right-140 {
    right: 35rem !important;
  }

  .xl\:bottom-140 {
    bottom: 35rem !important;
  }

  .xl\:left-140 {
    left: 35rem !important;
  }

  .xl\:top-160 {
    top: 40rem !important;
  }

  .xl\:right-160 {
    right: 40rem !important;
  }

  .xl\:bottom-160 {
    bottom: 40rem !important;
  }

  .xl\:left-160 {
    left: 40rem !important;
  }

  .xl\:top-180 {
    top: 45rem !important;
  }

  .xl\:right-180 {
    right: 45rem !important;
  }

  .xl\:bottom-180 {
    bottom: 45rem !important;
  }

  .xl\:left-180 {
    left: 45rem !important;
  }

  .xl\:top-192 {
    top: 48rem !important;
  }

  .xl\:right-192 {
    right: 48rem !important;
  }

  .xl\:bottom-192 {
    bottom: 48rem !important;
  }

  .xl\:left-192 {
    left: 48rem !important;
  }

  .xl\:top-200 {
    top: 50rem !important;
  }

  .xl\:right-200 {
    right: 50rem !important;
  }

  .xl\:bottom-200 {
    bottom: 50rem !important;
  }

  .xl\:left-200 {
    left: 50rem !important;
  }

  .xl\:top-240 {
    top: 60rem !important;
  }

  .xl\:right-240 {
    right: 60rem !important;
  }

  .xl\:bottom-240 {
    bottom: 60rem !important;
  }

  .xl\:left-240 {
    left: 60rem !important;
  }

  .xl\:top-256 {
    top: 64rem !important;
  }

  .xl\:right-256 {
    right: 64rem !important;
  }

  .xl\:bottom-256 {
    bottom: 64rem !important;
  }

  .xl\:left-256 {
    left: 64rem !important;
  }

  .xl\:top-280 {
    top: 70rem !important;
  }

  .xl\:right-280 {
    right: 70rem !important;
  }

  .xl\:bottom-280 {
    bottom: 70rem !important;
  }

  .xl\:left-280 {
    left: 70rem !important;
  }

  .xl\:top-320 {
    top: 80rem !important;
  }

  .xl\:right-320 {
    right: 80rem !important;
  }

  .xl\:bottom-320 {
    bottom: 80rem !important;
  }

  .xl\:left-320 {
    left: 80rem !important;
  }

  .xl\:top-360 {
    top: 90rem !important;
  }

  .xl\:right-360 {
    right: 90rem !important;
  }

  .xl\:bottom-360 {
    bottom: 90rem !important;
  }

  .xl\:left-360 {
    left: 90rem !important;
  }

  .xl\:top-400 {
    top: 100rem !important;
  }

  .xl\:right-400 {
    right: 100rem !important;
  }

  .xl\:bottom-400 {
    bottom: 100rem !important;
  }

  .xl\:left-400 {
    left: 100rem !important;
  }

  .xl\:top-480 {
    top: 120rem !important;
  }

  .xl\:right-480 {
    right: 120rem !important;
  }

  .xl\:bottom-480 {
    bottom: 120rem !important;
  }

  .xl\:left-480 {
    left: 120rem !important;
  }

  .xl\:top-auto {
    top: auto !important;
  }

  .xl\:right-auto {
    right: auto !important;
  }

  .xl\:bottom-auto {
    bottom: auto !important;
  }

  .xl\:left-auto {
    left: auto !important;
  }

  .xl\:top-px {
    top: 1px !important;
  }

  .xl\:right-px {
    right: 1px !important;
  }

  .xl\:bottom-px {
    bottom: 1px !important;
  }

  .xl\:left-px {
    left: 1px !important;
  }

  .xl\:top-0\.5 {
    top: 0.125rem !important;
  }

  .xl\:right-0\.5 {
    right: 0.125rem !important;
  }

  .xl\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .xl\:left-0\.5 {
    left: 0.125rem !important;
  }

  .xl\:top-1\.5 {
    top: 0.375rem !important;
  }

  .xl\:right-1\.5 {
    right: 0.375rem !important;
  }

  .xl\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .xl\:left-1\.5 {
    left: 0.375rem !important;
  }

  .xl\:top-2\.5 {
    top: 0.625rem !important;
  }

  .xl\:right-2\.5 {
    right: 0.625rem !important;
  }

  .xl\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .xl\:left-2\.5 {
    left: 0.625rem !important;
  }

  .xl\:top-3\.5 {
    top: 0.875rem !important;
  }

  .xl\:right-3\.5 {
    right: 0.875rem !important;
  }

  .xl\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .xl\:left-3\.5 {
    left: 0.875rem !important;
  }

  .xl\:top-1\/2 {
    top: 50% !important;
  }

  .xl\:right-1\/2 {
    right: 50% !important;
  }

  .xl\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .xl\:left-1\/2 {
    left: 50% !important;
  }

  .xl\:top-1\/3 {
    top: 33.333333% !important;
  }

  .xl\:right-1\/3 {
    right: 33.333333% !important;
  }

  .xl\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .xl\:left-1\/3 {
    left: 33.333333% !important;
  }

  .xl\:top-2\/3 {
    top: 66.666667% !important;
  }

  .xl\:right-2\/3 {
    right: 66.666667% !important;
  }

  .xl\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .xl\:left-2\/3 {
    left: 66.666667% !important;
  }

  .xl\:top-1\/4 {
    top: 25% !important;
  }

  .xl\:right-1\/4 {
    right: 25% !important;
  }

  .xl\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .xl\:left-1\/4 {
    left: 25% !important;
  }

  .xl\:top-2\/4 {
    top: 50% !important;
  }

  .xl\:right-2\/4 {
    right: 50% !important;
  }

  .xl\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .xl\:left-2\/4 {
    left: 50% !important;
  }

  .xl\:top-3\/4 {
    top: 75% !important;
  }

  .xl\:right-3\/4 {
    right: 75% !important;
  }

  .xl\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .xl\:left-3\/4 {
    left: 75% !important;
  }

  .xl\:top-1\/5 {
    top: 20% !important;
  }

  .xl\:right-1\/5 {
    right: 20% !important;
  }

  .xl\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .xl\:left-1\/5 {
    left: 20% !important;
  }

  .xl\:top-2\/5 {
    top: 40% !important;
  }

  .xl\:right-2\/5 {
    right: 40% !important;
  }

  .xl\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .xl\:left-2\/5 {
    left: 40% !important;
  }

  .xl\:top-3\/5 {
    top: 60% !important;
  }

  .xl\:right-3\/5 {
    right: 60% !important;
  }

  .xl\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .xl\:left-3\/5 {
    left: 60% !important;
  }

  .xl\:top-4\/5 {
    top: 80% !important;
  }

  .xl\:right-4\/5 {
    right: 80% !important;
  }

  .xl\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .xl\:left-4\/5 {
    left: 80% !important;
  }

  .xl\:top-1\/6 {
    top: 16.666667% !important;
  }

  .xl\:right-1\/6 {
    right: 16.666667% !important;
  }

  .xl\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .xl\:left-1\/6 {
    left: 16.666667% !important;
  }

  .xl\:top-2\/6 {
    top: 33.333333% !important;
  }

  .xl\:right-2\/6 {
    right: 33.333333% !important;
  }

  .xl\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .xl\:left-2\/6 {
    left: 33.333333% !important;
  }

  .xl\:top-3\/6 {
    top: 50% !important;
  }

  .xl\:right-3\/6 {
    right: 50% !important;
  }

  .xl\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .xl\:left-3\/6 {
    left: 50% !important;
  }

  .xl\:top-4\/6 {
    top: 66.666667% !important;
  }

  .xl\:right-4\/6 {
    right: 66.666667% !important;
  }

  .xl\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .xl\:left-4\/6 {
    left: 66.666667% !important;
  }

  .xl\:top-5\/6 {
    top: 83.333333% !important;
  }

  .xl\:right-5\/6 {
    right: 83.333333% !important;
  }

  .xl\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .xl\:left-5\/6 {
    left: 83.333333% !important;
  }

  .xl\:top-1\/12 {
    top: 8.333333% !important;
  }

  .xl\:right-1\/12 {
    right: 8.333333% !important;
  }

  .xl\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .xl\:left-1\/12 {
    left: 8.333333% !important;
  }

  .xl\:top-2\/12 {
    top: 16.666667% !important;
  }

  .xl\:right-2\/12 {
    right: 16.666667% !important;
  }

  .xl\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .xl\:left-2\/12 {
    left: 16.666667% !important;
  }

  .xl\:top-3\/12 {
    top: 25% !important;
  }

  .xl\:right-3\/12 {
    right: 25% !important;
  }

  .xl\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .xl\:left-3\/12 {
    left: 25% !important;
  }

  .xl\:top-4\/12 {
    top: 33.333333% !important;
  }

  .xl\:right-4\/12 {
    right: 33.333333% !important;
  }

  .xl\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .xl\:left-4\/12 {
    left: 33.333333% !important;
  }

  .xl\:top-5\/12 {
    top: 41.666667% !important;
  }

  .xl\:right-5\/12 {
    right: 41.666667% !important;
  }

  .xl\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .xl\:left-5\/12 {
    left: 41.666667% !important;
  }

  .xl\:top-6\/12 {
    top: 50% !important;
  }

  .xl\:right-6\/12 {
    right: 50% !important;
  }

  .xl\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .xl\:left-6\/12 {
    left: 50% !important;
  }

  .xl\:top-7\/12 {
    top: 58.333333% !important;
  }

  .xl\:right-7\/12 {
    right: 58.333333% !important;
  }

  .xl\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .xl\:left-7\/12 {
    left: 58.333333% !important;
  }

  .xl\:top-8\/12 {
    top: 66.666667% !important;
  }

  .xl\:right-8\/12 {
    right: 66.666667% !important;
  }

  .xl\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .xl\:left-8\/12 {
    left: 66.666667% !important;
  }

  .xl\:top-9\/12 {
    top: 75% !important;
  }

  .xl\:right-9\/12 {
    right: 75% !important;
  }

  .xl\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .xl\:left-9\/12 {
    left: 75% !important;
  }

  .xl\:top-10\/12 {
    top: 83.333333% !important;
  }

  .xl\:right-10\/12 {
    right: 83.333333% !important;
  }

  .xl\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .xl\:left-10\/12 {
    left: 83.333333% !important;
  }

  .xl\:top-11\/12 {
    top: 91.666667% !important;
  }

  .xl\:right-11\/12 {
    right: 91.666667% !important;
  }

  .xl\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .xl\:left-11\/12 {
    left: 91.666667% !important;
  }

  .xl\:top-full {
    top: 100% !important;
  }

  .xl\:right-full {
    right: 100% !important;
  }

  .xl\:bottom-full {
    bottom: 100% !important;
  }

  .xl\:left-full {
    left: 100% !important;
  }

  .xl\:top-2px {
    top: 2px !important;
  }

  .xl\:right-2px {
    right: 2px !important;
  }

  .xl\:bottom-2px {
    bottom: 2px !important;
  }

  .xl\:left-2px {
    left: 2px !important;
  }

  .xl\:text-left {
    text-align: left !important;
  }

  .xl\:text-center {
    text-align: center !important;
  }

  .xl\:text-right {
    text-align: right !important;
  }

  .xl\:text-justify {
    text-align: justify !important;
  }

  .xl\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .xl\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .xl\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .xl\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .xl\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .xl\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .xl\:visible {
    visibility: visible !important;
  }

  .xl\:invisible {
    visibility: hidden !important;
  }

  .xl\:whitespace-normal {
    white-space: normal !important;
  }

  .xl\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .xl\:whitespace-pre {
    white-space: pre !important;
  }

  .xl\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .xl\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .xl\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .xl\:break-words {
    overflow-wrap: break-word !important;
  }

  .xl\:break-all {
    word-break: break-all !important;
  }

  .xl\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .xl\:w-0 {
    width: 0 !important;
  }

  .xl\:w-1 {
    width: 0.25rem !important;
  }

  .xl\:w-2 {
    width: 0.5rem !important;
  }

  .xl\:w-3 {
    width: 0.75rem !important;
  }

  .xl\:w-4 {
    width: 1rem !important;
  }

  .xl\:w-5 {
    width: 1.25rem !important;
  }

  .xl\:w-6 {
    width: 1.5rem !important;
  }

  .xl\:w-7 {
    width: 1.75rem !important;
  }

  .xl\:w-8 {
    width: 2rem !important;
  }

  .xl\:w-9 {
    width: 2.25rem !important;
  }

  .xl\:w-10 {
    width: 2.5rem !important;
  }

  .xl\:w-11 {
    width: 2.75rem !important;
  }

  .xl\:w-12 {
    width: 3rem !important;
  }

  .xl\:w-13 {
    width: 3.25rem !important;
  }

  .xl\:w-14 {
    width: 3.5rem !important;
  }

  .xl\:w-15 {
    width: 3.75rem !important;
  }

  .xl\:w-16 {
    width: 4rem !important;
  }

  .xl\:w-18 {
    width: 4.5rem !important;
  }

  .xl\:w-20 {
    width: 5rem !important;
  }

  .xl\:w-22 {
    width: 5.5rem !important;
  }

  .xl\:w-24 {
    width: 6rem !important;
  }

  .xl\:w-26 {
    width: 6.5rem !important;
  }

  .xl\:w-28 {
    width: 7rem !important;
  }

  .xl\:w-30 {
    width: 7.5rem !important;
  }

  .xl\:w-32 {
    width: 8rem !important;
  }

  .xl\:w-36 {
    width: 9rem !important;
  }

  .xl\:w-40 {
    width: 10rem !important;
  }

  .xl\:w-44 {
    width: 11rem !important;
  }

  .xl\:w-48 {
    width: 12rem !important;
  }

  .xl\:w-50 {
    width: 12.5rem !important;
  }

  .xl\:w-52 {
    width: 13rem !important;
  }

  .xl\:w-56 {
    width: 14rem !important;
  }

  .xl\:w-60 {
    width: 15rem !important;
  }

  .xl\:w-64 {
    width: 16rem !important;
  }

  .xl\:w-72 {
    width: 18rem !important;
  }

  .xl\:w-80 {
    width: 20rem !important;
  }

  .xl\:w-90 {
    width: 24rem !important;
  }

  .xl\:w-96 {
    width: 24rem !important;
  }

  .xl\:w-100 {
    width: 25rem !important;
  }

  .xl\:w-120 {
    width: 30rem !important;
  }

  .xl\:w-128 {
    width: 32rem !important;
  }

  .xl\:w-140 {
    width: 35rem !important;
  }

  .xl\:w-160 {
    width: 40rem !important;
  }

  .xl\:w-180 {
    width: 45rem !important;
  }

  .xl\:w-192 {
    width: 48rem !important;
  }

  .xl\:w-200 {
    width: 50rem !important;
  }

  .xl\:w-240 {
    width: 60rem !important;
  }

  .xl\:w-256 {
    width: 64rem !important;
  }

  .xl\:w-280 {
    width: 70rem !important;
  }

  .xl\:w-320 {
    width: 80rem !important;
  }

  .xl\:w-360 {
    width: 90rem !important;
  }

  .xl\:w-400 {
    width: 100rem !important;
  }

  .xl\:w-480 {
    width: 120rem !important;
  }

  .xl\:w-auto {
    width: auto !important;
  }

  .xl\:w-px {
    width: 1px !important;
  }

  .xl\:w-0\.5 {
    width: 0.125rem !important;
  }

  .xl\:w-1\.5 {
    width: 0.375rem !important;
  }

  .xl\:w-2\.5 {
    width: 0.625rem !important;
  }

  .xl\:w-3\.5 {
    width: 0.875rem !important;
  }

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

  .xl\:w-1\/3 {
    width: 33.333333% !important;
  }

  .xl\:w-2\/3 {
    width: 66.666667% !important;
  }

  .xl\:w-1\/4 {
    width: 25% !important;
  }

  .xl\:w-2\/4 {
    width: 50% !important;
  }

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

  .xl\:w-1\/5 {
    width: 20% !important;
  }

  .xl\:w-2\/5 {
    width: 40% !important;
  }

  .xl\:w-3\/5 {
    width: 60% !important;
  }

  .xl\:w-4\/5 {
    width: 80% !important;
  }

  .xl\:w-1\/6 {
    width: 16.666667% !important;
  }

  .xl\:w-2\/6 {
    width: 33.333333% !important;
  }

  .xl\:w-3\/6 {
    width: 50% !important;
  }

  .xl\:w-4\/6 {
    width: 66.666667% !important;
  }

  .xl\:w-5\/6 {
    width: 83.333333% !important;
  }

  .xl\:w-1\/12 {
    width: 8.333333% !important;
  }

  .xl\:w-2\/12 {
    width: 16.666667% !important;
  }

  .xl\:w-3\/12 {
    width: 25% !important;
  }

  .xl\:w-4\/12 {
    width: 33.333333% !important;
  }

  .xl\:w-5\/12 {
    width: 41.666667% !important;
  }

  .xl\:w-6\/12 {
    width: 50% !important;
  }

  .xl\:w-7\/12 {
    width: 58.333333% !important;
  }

  .xl\:w-8\/12 {
    width: 66.666667% !important;
  }

  .xl\:w-9\/12 {
    width: 75% !important;
  }

  .xl\:w-10\/12 {
    width: 83.333333% !important;
  }

  .xl\:w-11\/12 {
    width: 91.666667% !important;
  }

  .xl\:w-full {
    width: 100% !important;
  }

  .xl\:w-2px {
    width: 2px !important;
  }

  .xl\:w-screen {
    width: 100vw !important;
  }

  .xl\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .xl\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .xl\:z-0 {
    z-index: 0 !important;
  }

  .xl\:z-10 {
    z-index: 10 !important;
  }

  .xl\:z-20 {
    z-index: 20 !important;
  }

  .xl\:z-30 {
    z-index: 30 !important;
  }

  .xl\:z-40 {
    z-index: 40 !important;
  }

  .xl\:z-50 {
    z-index: 50 !important;
  }

  .xl\:z-60 {
    z-index: 60 !important;
  }

  .xl\:z-70 {
    z-index: 70 !important;
  }

  .xl\:z-80 {
    z-index: 80 !important;
  }

  .xl\:z-90 {
    z-index: 90 !important;
  }

  .xl\:z-99 {
    z-index: 99 !important;
  }

  .xl\:z-999 {
    z-index: 999 !important;
  }

  .xl\:z-9999 {
    z-index: 9999 !important;
  }

  .xl\:z-99999 {
    z-index: 99999 !important;
  }

  .xl\:z-auto {
    z-index: auto !important;
  }

  .xl\:-z-1 {
    z-index: -1 !important;
  }

  .xl\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .xl\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .xl\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .xl\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .xl\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .xl\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .xl\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .xl\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .xl\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .xl\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .xl\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .xl\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .xl\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .xl\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .xl\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .xl\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .xl\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .xl\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .xl\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .xl\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .xl\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .xl\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .xl\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .xl\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .xl\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .xl\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .xl\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .xl\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .xl\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .xl\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .xl\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .xl\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .xl\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .xl\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .xl\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .xl\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .xl\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .xl\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .xl\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .xl\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .xl\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .xl\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .xl\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .xl\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .xl\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .xl\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .xl\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .xl\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .xl\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .xl\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .xl\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .xl\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .xl\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .xl\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .xl\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .xl\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .xl\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .xl\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .xl\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .xl\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .xl\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .xl\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .xl\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .xl\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .xl\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .xl\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .xl\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .xl\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .xl\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .xl\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .xl\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .xl\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .xl\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .xl\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .xl\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .xl\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .xl\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .xl\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .xl\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .xl\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .xl\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .xl\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .xl\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .xl\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .xl\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .xl\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .xl\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .xl\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .xl\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .xl\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .xl\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .xl\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .xl\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .xl\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .xl\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .xl\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .xl\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .xl\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .xl\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .xl\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .xl\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .xl\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .xl\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .xl\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .xl\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .xl\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .xl\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .xl\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .xl\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .xl\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .xl\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .xl\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .xl\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .xl\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .xl\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .xl\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .xl\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .xl\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .xl\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .xl\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .xl\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .xl\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .xl\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .xl\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .xl\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .xl\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .xl\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .xl\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .xl\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .xl\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .xl\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .xl\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .xl\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .xl\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .xl\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .xl\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .xl\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .xl\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .xl\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .xl\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .xl\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .xl\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .xl\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .xl\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .xl\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .xl\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .xl\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .xl\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .xl\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .xl\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .xl\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .xl\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .xl\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .xl\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .xl\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .xl\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .xl\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .xl\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .xl\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .xl\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .xl\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .xl\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .xl\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .xl\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .xl\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .xl\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .xl\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .xl\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .xl\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .xl\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .xl\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .xl\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .xl\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .xl\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .xl\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .xl\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .xl\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .xl\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .xl\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .xl\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .xl\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .xl\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .xl\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .xl\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .xl\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .xl\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .xl\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .xl\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .xl\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .xl\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .xl\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .xl\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .xl\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .xl\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .xl\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .xl\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .xl\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .xl\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .xl\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .xl\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .xl\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .xl\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .xl\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .xl\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .xl\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .xl\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .xl\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .xl\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .xl\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .xl\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .xl\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .xl\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .xl\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .xl\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .xl\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .xl\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .xl\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .xl\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .xl\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .xl\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .xl\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .xl\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .xl\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .xl\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .xl\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .xl\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .xl\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .xl\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .xl\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .xl\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .xl\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .xl\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .xl\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .xl\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .xl\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .xl\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .xl\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .xl\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .xl\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .xl\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .xl\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .xl\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .xl\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .xl\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .xl\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .xl\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .xl\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .xl\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .xl\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .xl\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .xl\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .xl\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .xl\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .xl\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .xl\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .xl\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .xl\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .xl\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .xl\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .xl\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .xl\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .xl\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

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

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

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

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

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

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

  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

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

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

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

  .xl\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .xl\:col-auto {
    grid-column: auto !important;
  }

  .xl\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

  .xl\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }

  .xl\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .xl\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .xl\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .xl\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .xl\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .xl\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .xl\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .xl\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .xl\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .xl\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .xl\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .xl\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .xl\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .xl\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .xl\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .xl\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .xl\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .xl\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .xl\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .xl\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .xl\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .xl\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .xl\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .xl\:col-start-auto {
    grid-column-start: auto !important;
  }

  .xl\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .xl\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .xl\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .xl\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .xl\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .xl\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .xl\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .xl\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .xl\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .xl\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .xl\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .xl\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .xl\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .xl\:col-end-auto {
    grid-column-end: auto !important;
  }

  .xl\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .xl\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .xl\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .xl\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .xl\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .xl\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .xl\:row-auto {
    grid-row: auto !important;
  }

  .xl\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .xl\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .xl\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .xl\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .xl\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .xl\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .xl\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .xl\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .xl\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .xl\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .xl\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .xl\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .xl\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .xl\:row-start-auto {
    grid-row-start: auto !important;
  }

  .xl\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .xl\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .xl\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .xl\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .xl\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .xl\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .xl\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .xl\:row-end-auto {
    grid-row-end: auto !important;
  }

  .xl\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .xl\:transform-none {
    transform: none !important;
  }

  .xl\:origin-center {
    transform-origin: center !important;
  }

  .xl\:origin-top {
    transform-origin: top !important;
  }

  .xl\:origin-top-right {
    transform-origin: top right !important;
  }

  .xl\:origin-right {
    transform-origin: right !important;
  }

  .xl\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .xl\:origin-bottom {
    transform-origin: bottom !important;
  }

  .xl\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .xl\:origin-left {
    transform-origin: left !important;
  }

  .xl\:origin-top-left {
    transform-origin: top left !important;
  }

  .xl\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .xl\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .xl\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .xl\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .xl\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .xl\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .xl\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .xl\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .xl\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .xl\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .xl\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .xl\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .xl\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .xl\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .xl\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .xl\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .xl\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .xl\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .xl\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .xl\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .xl\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .xl\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .xl\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .xl\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .xl\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .xl\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .xl\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .xl\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .xl\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .xl\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (max-width: 959px) {
  .lt-md\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .lt-md\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .lt-md\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-md\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .lt-md\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .lt-md\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lt-md\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lt-md\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lt-md\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lt-md\:rounded-none {
    border-radius: 0 !important;
  }

  .lt-md\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .lt-md\:rounded {
    border-radius: 0.25rem !important;
  }

  .lt-md\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .lt-md\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .lt-md\:rounded-full {
    border-radius: 9999px !important;
  }

  .lt-md\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .lt-md\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .lt-md\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lt-md\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lt-md\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .lt-md\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .lt-md\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lt-md\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lt-md\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .lt-md\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .lt-md\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lt-md\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lt-md\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .lt-md\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .lt-md\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lt-md\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lt-md\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .lt-md\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .lt-md\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lt-md\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lt-md\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .lt-md\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .lt-md\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lt-md\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lt-md\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .lt-md\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .lt-md\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .lt-md\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .lt-md\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .lt-md\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .lt-md\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .lt-md\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .lt-md\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .lt-md\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .lt-md\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .lt-md\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .lt-md\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .lt-md\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .lt-md\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .lt-md\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .lt-md\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .lt-md\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .lt-md\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .lt-md\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .lt-md\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .lt-md\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .lt-md\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .lt-md\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .lt-md\:border-0 {
    border-width: 0 !important;
  }

  .lt-md\:border-2 {
    border-width: 2px !important;
  }

  .lt-md\:border-4 {
    border-width: 4px !important;
  }

  .lt-md\:border-8 {
    border-width: 8px !important;
  }

  .lt-md\:border {
    border-width: 1px !important;
  }

  .lt-md\:border-t-0 {
    border-top-width: 0 !important;
  }

  .lt-md\:border-r-0 {
    border-right-width: 0 !important;
  }

  .lt-md\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .lt-md\:border-l-0 {
    border-left-width: 0 !important;
  }

  .lt-md\:border-t-2 {
    border-top-width: 2px !important;
  }

  .lt-md\:border-r-2 {
    border-right-width: 2px !important;
  }

  .lt-md\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .lt-md\:border-l-2 {
    border-left-width: 2px !important;
  }

  .lt-md\:border-t-4 {
    border-top-width: 4px !important;
  }

  .lt-md\:border-r-4 {
    border-right-width: 4px !important;
  }

  .lt-md\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .lt-md\:border-l-4 {
    border-left-width: 4px !important;
  }

  .lt-md\:border-t-8 {
    border-top-width: 8px !important;
  }

  .lt-md\:border-r-8 {
    border-right-width: 8px !important;
  }

  .lt-md\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .lt-md\:border-l-8 {
    border-left-width: 8px !important;
  }

  .lt-md\:border-t {
    border-top-width: 1px !important;
  }

  .lt-md\:border-r {
    border-right-width: 1px !important;
  }

  .lt-md\:border-b {
    border-bottom-width: 1px !important;
  }

  .lt-md\:border-l {
    border-left-width: 1px !important;
  }

  .lt-md\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .lt-md\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .lt-md\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .lt-md\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .lt-md\:first\:border:first-child {
    border-width: 1px !important;
  }

  .lt-md\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .lt-md\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .lt-md\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .lt-md\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .lt-md\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .lt-md\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .lt-md\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .lt-md\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .lt-md\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .lt-md\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .lt-md\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .lt-md\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .lt-md\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .lt-md\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .lt-md\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .lt-md\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .lt-md\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .lt-md\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .lt-md\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .lt-md\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .lt-md\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .lt-md\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .lt-md\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .lt-md\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .lt-md\:last\:border:last-child {
    border-width: 1px !important;
  }

  .lt-md\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .lt-md\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .lt-md\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .lt-md\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .lt-md\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .lt-md\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .lt-md\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .lt-md\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .lt-md\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .lt-md\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .lt-md\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .lt-md\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .lt-md\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .lt-md\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .lt-md\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .lt-md\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .lt-md\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .lt-md\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .lt-md\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .lt-md\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .lt-md\:block {
    display: block !important;
  }

  .lt-md\:inline-block {
    display: inline-block !important;
  }

  .lt-md\:inline {
    display: inline !important;
  }

  .lt-md\:flex {
    display: flex !important;
  }

  .lt-md\:inline-flex {
    display: inline-flex !important;
  }

  .lt-md\:table {
    display: table !important;
  }

  .lt-md\:table-caption {
    display: table-caption !important;
  }

  .lt-md\:table-cell {
    display: table-cell !important;
  }

  .lt-md\:table-column {
    display: table-column !important;
  }

  .lt-md\:table-column-group {
    display: table-column-group !important;
  }

  .lt-md\:table-footer-group {
    display: table-footer-group !important;
  }

  .lt-md\:table-header-group {
    display: table-header-group !important;
  }

  .lt-md\:table-row-group {
    display: table-row-group !important;
  }

  .lt-md\:table-row {
    display: table-row !important;
  }

  .lt-md\:flow-root {
    display: flow-root !important;
  }

  .lt-md\:grid {
    display: grid !important;
  }

  .lt-md\:inline-grid {
    display: inline-grid !important;
  }

  .lt-md\:contents {
    display: contents !important;
  }

  .lt-md\:hidden {
    display: none !important;
  }

  .lt-md\:flex-row {
    flex-direction: row !important;
  }

  .lt-md\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .lt-md\:flex-col {
    flex-direction: column !important;
  }

  .lt-md\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .lt-md\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .lt-md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .lt-md\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .lt-md\:items-start {
    align-items: flex-start !important;
  }

  .lt-md\:items-end {
    align-items: flex-end !important;
  }

  .lt-md\:items-center {
    align-items: center !important;
  }

  .lt-md\:items-baseline {
    align-items: baseline !important;
  }

  .lt-md\:items-stretch {
    align-items: stretch !important;
  }

  .lt-md\:self-auto {
    align-self: auto !important;
  }

  .lt-md\:self-start {
    align-self: flex-start !important;
  }

  .lt-md\:self-end {
    align-self: flex-end !important;
  }

  .lt-md\:self-center {
    align-self: center !important;
  }

  .lt-md\:self-stretch {
    align-self: stretch !important;
  }

  .lt-md\:justify-start {
    justify-content: flex-start !important;
  }

  .lt-md\:justify-end {
    justify-content: flex-end !important;
  }

  .lt-md\:justify-center {
    justify-content: center !important;
  }

  .lt-md\:justify-between {
    justify-content: space-between !important;
  }

  .lt-md\:justify-around {
    justify-content: space-around !important;
  }

  .lt-md\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .lt-md\:content-center {
    align-content: center !important;
  }

  .lt-md\:content-start {
    align-content: flex-start !important;
  }

  .lt-md\:content-end {
    align-content: flex-end !important;
  }

  .lt-md\:content-between {
    align-content: space-between !important;
  }

  .lt-md\:content-around {
    align-content: space-around !important;
  }

  .lt-md\:flex-0 {
    flex: 0 0 auto !important;
  }

  .lt-md\:flex-1 {
    flex: 1 1 0% !important;
  }

  .lt-md\:flex-auto {
    flex: 1 1 auto !important;
  }

  .lt-md\:flex-initial {
    flex: 0 1 auto !important;
  }

  .lt-md\:flex-none {
    flex: none !important;
  }

  .lt-md\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .lt-md\:flex-grow {
    flex-grow: 1 !important;
  }

  .lt-md\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .lt-md\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .lt-md\:order-1 {
    order: 1 !important;
  }

  .lt-md\:order-2 {
    order: 2 !important;
  }

  .lt-md\:order-3 {
    order: 3 !important;
  }

  .lt-md\:order-4 {
    order: 4 !important;
  }

  .lt-md\:order-5 {
    order: 5 !important;
  }

  .lt-md\:order-6 {
    order: 6 !important;
  }

  .lt-md\:order-7 {
    order: 7 !important;
  }

  .lt-md\:order-8 {
    order: 8 !important;
  }

  .lt-md\:order-9 {
    order: 9 !important;
  }

  .lt-md\:order-10 {
    order: 10 !important;
  }

  .lt-md\:order-11 {
    order: 11 !important;
  }

  .lt-md\:order-12 {
    order: 12 !important;
  }

  .lt-md\:order-first {
    order: -9999 !important;
  }

  .lt-md\:order-last {
    order: 9999 !important;
  }

  .lt-md\:order-none {
    order: 0 !important;
  }

  .lt-md\:font-hairline {
    font-weight: 100 !important;
  }

  .lt-md\:font-thin {
    font-weight: 200 !important;
  }

  .lt-md\:font-light {
    font-weight: 300 !important;
  }

  .lt-md\:font-normal {
    font-weight: 400 !important;
  }

  .lt-md\:font-medium {
    font-weight: 500 !important;
  }

  .lt-md\:font-semibold {
    font-weight: 600 !important;
  }

  .lt-md\:font-bold {
    font-weight: 700 !important;
  }

  .lt-md\:font-extrabold {
    font-weight: 800 !important;
  }

  .lt-md\:font-black {
    font-weight: 900 !important;
  }

  .lt-md\:h-0 {
    height: 0 !important;
  }

  .lt-md\:h-1 {
    height: 0.25rem !important;
  }

  .lt-md\:h-2 {
    height: 0.5rem !important;
  }

  .lt-md\:h-3 {
    height: 0.75rem !important;
  }

  .lt-md\:h-4 {
    height: 1rem !important;
  }

  .lt-md\:h-5 {
    height: 1.25rem !important;
  }

  .lt-md\:h-6 {
    height: 1.5rem !important;
  }

  .lt-md\:h-7 {
    height: 1.75rem !important;
  }

  .lt-md\:h-8 {
    height: 2rem !important;
  }

  .lt-md\:h-9 {
    height: 2.25rem !important;
  }

  .lt-md\:h-10 {
    height: 2.5rem !important;
  }

  .lt-md\:h-11 {
    height: 2.75rem !important;
  }

  .lt-md\:h-12 {
    height: 3rem !important;
  }

  .lt-md\:h-13 {
    height: 3.25rem !important;
  }

  .lt-md\:h-14 {
    height: 3.5rem !important;
  }

  .lt-md\:h-15 {
    height: 3.75rem !important;
  }

  .lt-md\:h-16 {
    height: 4rem !important;
  }

  .lt-md\:h-18 {
    height: 4.5rem !important;
  }

  .lt-md\:h-20 {
    height: 5rem !important;
  }

  .lt-md\:h-22 {
    height: 5.5rem !important;
  }

  .lt-md\:h-24 {
    height: 6rem !important;
  }

  .lt-md\:h-26 {
    height: 6.5rem !important;
  }

  .lt-md\:h-28 {
    height: 7rem !important;
  }

  .lt-md\:h-30 {
    height: 7.5rem !important;
  }

  .lt-md\:h-32 {
    height: 8rem !important;
  }

  .lt-md\:h-36 {
    height: 9rem !important;
  }

  .lt-md\:h-40 {
    height: 10rem !important;
  }

  .lt-md\:h-44 {
    height: 11rem !important;
  }

  .lt-md\:h-48 {
    height: 12rem !important;
  }

  .lt-md\:h-50 {
    height: 12.5rem !important;
  }

  .lt-md\:h-52 {
    height: 13rem !important;
  }

  .lt-md\:h-56 {
    height: 14rem !important;
  }

  .lt-md\:h-60 {
    height: 15rem !important;
  }

  .lt-md\:h-64 {
    height: 16rem !important;
  }

  .lt-md\:h-72 {
    height: 18rem !important;
  }

  .lt-md\:h-80 {
    height: 20rem !important;
  }

  .lt-md\:h-90 {
    height: 24rem !important;
  }

  .lt-md\:h-96 {
    height: 24rem !important;
  }

  .lt-md\:h-100 {
    height: 25rem !important;
  }

  .lt-md\:h-120 {
    height: 30rem !important;
  }

  .lt-md\:h-128 {
    height: 32rem !important;
  }

  .lt-md\:h-140 {
    height: 35rem !important;
  }

  .lt-md\:h-160 {
    height: 40rem !important;
  }

  .lt-md\:h-180 {
    height: 45rem !important;
  }

  .lt-md\:h-192 {
    height: 48rem !important;
  }

  .lt-md\:h-200 {
    height: 50rem !important;
  }

  .lt-md\:h-240 {
    height: 60rem !important;
  }

  .lt-md\:h-256 {
    height: 64rem !important;
  }

  .lt-md\:h-280 {
    height: 70rem !important;
  }

  .lt-md\:h-320 {
    height: 80rem !important;
  }

  .lt-md\:h-360 {
    height: 90rem !important;
  }

  .lt-md\:h-400 {
    height: 100rem !important;
  }

  .lt-md\:h-480 {
    height: 120rem !important;
  }

  .lt-md\:h-auto {
    height: auto !important;
  }

  .lt-md\:h-px {
    height: 1px !important;
  }

  .lt-md\:h-0\.5 {
    height: 0.125rem !important;
  }

  .lt-md\:h-1\.5 {
    height: 0.375rem !important;
  }

  .lt-md\:h-2\.5 {
    height: 0.625rem !important;
  }

  .lt-md\:h-3\.5 {
    height: 0.875rem !important;
  }

  .lt-md\:h-1\/2 {
    height: 50% !important;
  }

  .lt-md\:h-1\/3 {
    height: 33.333333% !important;
  }

  .lt-md\:h-2\/3 {
    height: 66.666667% !important;
  }

  .lt-md\:h-1\/4 {
    height: 25% !important;
  }

  .lt-md\:h-2\/4 {
    height: 50% !important;
  }

  .lt-md\:h-3\/4 {
    height: 75% !important;
  }

  .lt-md\:h-1\/5 {
    height: 20% !important;
  }

  .lt-md\:h-2\/5 {
    height: 40% !important;
  }

  .lt-md\:h-3\/5 {
    height: 60% !important;
  }

  .lt-md\:h-4\/5 {
    height: 80% !important;
  }

  .lt-md\:h-1\/6 {
    height: 16.666667% !important;
  }

  .lt-md\:h-2\/6 {
    height: 33.333333% !important;
  }

  .lt-md\:h-3\/6 {
    height: 50% !important;
  }

  .lt-md\:h-4\/6 {
    height: 66.666667% !important;
  }

  .lt-md\:h-5\/6 {
    height: 83.333333% !important;
  }

  .lt-md\:h-1\/12 {
    height: 8.333333% !important;
  }

  .lt-md\:h-2\/12 {
    height: 16.666667% !important;
  }

  .lt-md\:h-3\/12 {
    height: 25% !important;
  }

  .lt-md\:h-4\/12 {
    height: 33.333333% !important;
  }

  .lt-md\:h-5\/12 {
    height: 41.666667% !important;
  }

  .lt-md\:h-6\/12 {
    height: 50% !important;
  }

  .lt-md\:h-7\/12 {
    height: 58.333333% !important;
  }

  .lt-md\:h-8\/12 {
    height: 66.666667% !important;
  }

  .lt-md\:h-9\/12 {
    height: 75% !important;
  }

  .lt-md\:h-10\/12 {
    height: 83.333333% !important;
  }

  .lt-md\:h-11\/12 {
    height: 91.666667% !important;
  }

  .lt-md\:h-full {
    height: 100% !important;
  }

  .lt-md\:h-2px {
    height: 2px !important;
  }

  .lt-md\:h-screen {
    height: 100vh !important;
  }

  .lt-md\:text-xs {
    font-size: 0.625rem !important;
  }

  .lt-md\:text-sm {
    font-size: 0.75rem !important;
  }

  .lt-md\:text-md {
    font-size: 0.8125rem !important;
  }

  .lt-md\:text-base {
    font-size: 0.875rem !important;
  }

  .lt-md\:text-lg {
    font-size: 1rem !important;
  }

  .lt-md\:text-xl {
    font-size: 1.125rem !important;
  }

  .lt-md\:text-2xl {
    font-size: 1.25rem !important;
  }

  .lt-md\:text-3xl {
    font-size: 1.5rem !important;
  }

  .lt-md\:text-4xl {
    font-size: 2rem !important;
  }

  .lt-md\:text-5xl {
    font-size: 2.25rem !important;
  }

  .lt-md\:text-6xl {
    font-size: 2.5rem !important;
  }

  .lt-md\:text-7xl {
    font-size: 3rem !important;
  }

  .lt-md\:text-8xl {
    font-size: 4rem !important;
  }

  .lt-md\:text-9xl {
    font-size: 6rem !important;
  }

  .lt-md\:text-10xl {
    font-size: 8rem !important;
  }

  .lt-md\:leading-3 {
    line-height: 0.75rem !important;
  }

  .lt-md\:leading-4 {
    line-height: 1rem !important;
  }

  .lt-md\:leading-5 {
    line-height: 1.25rem !important;
  }

  .lt-md\:leading-6 {
    line-height: 1.5rem !important;
  }

  .lt-md\:leading-7 {
    line-height: 1.75rem !important;
  }

  .lt-md\:leading-8 {
    line-height: 2rem !important;
  }

  .lt-md\:leading-9 {
    line-height: 2.25rem !important;
  }

  .lt-md\:leading-10 {
    line-height: 2.5rem !important;
  }

  .lt-md\:leading-none {
    line-height: 1 !important;
  }

  .lt-md\:leading-tight {
    line-height: 1.25 !important;
  }

  .lt-md\:leading-snug {
    line-height: 1.375 !important;
  }

  .lt-md\:leading-normal {
    line-height: 1.5 !important;
  }

  .lt-md\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .lt-md\:leading-loose {
    line-height: 2 !important;
  }

  .lt-md\:m-0 {
    margin: 0 !important;
  }

  .lt-md\:m-1 {
    margin: 0.25rem !important;
  }

  .lt-md\:m-2 {
    margin: 0.5rem !important;
  }

  .lt-md\:m-3 {
    margin: 0.75rem !important;
  }

  .lt-md\:m-4 {
    margin: 1rem !important;
  }

  .lt-md\:m-5 {
    margin: 1.25rem !important;
  }

  .lt-md\:m-6 {
    margin: 1.5rem !important;
  }

  .lt-md\:m-7 {
    margin: 1.75rem !important;
  }

  .lt-md\:m-8 {
    margin: 2rem !important;
  }

  .lt-md\:m-9 {
    margin: 2.25rem !important;
  }

  .lt-md\:m-10 {
    margin: 2.5rem !important;
  }

  .lt-md\:m-11 {
    margin: 2.75rem !important;
  }

  .lt-md\:m-12 {
    margin: 3rem !important;
  }

  .lt-md\:m-13 {
    margin: 3.25rem !important;
  }

  .lt-md\:m-14 {
    margin: 3.5rem !important;
  }

  .lt-md\:m-15 {
    margin: 3.75rem !important;
  }

  .lt-md\:m-16 {
    margin: 4rem !important;
  }

  .lt-md\:m-18 {
    margin: 4.5rem !important;
  }

  .lt-md\:m-20 {
    margin: 5rem !important;
  }

  .lt-md\:m-22 {
    margin: 5.5rem !important;
  }

  .lt-md\:m-24 {
    margin: 6rem !important;
  }

  .lt-md\:m-26 {
    margin: 6.5rem !important;
  }

  .lt-md\:m-28 {
    margin: 7rem !important;
  }

  .lt-md\:m-30 {
    margin: 7.5rem !important;
  }

  .lt-md\:m-32 {
    margin: 8rem !important;
  }

  .lt-md\:m-36 {
    margin: 9rem !important;
  }

  .lt-md\:m-40 {
    margin: 10rem !important;
  }

  .lt-md\:m-44 {
    margin: 11rem !important;
  }

  .lt-md\:m-48 {
    margin: 12rem !important;
  }

  .lt-md\:m-50 {
    margin: 12.5rem !important;
  }

  .lt-md\:m-52 {
    margin: 13rem !important;
  }

  .lt-md\:m-56 {
    margin: 14rem !important;
  }

  .lt-md\:m-60 {
    margin: 15rem !important;
  }

  .lt-md\:m-64 {
    margin: 16rem !important;
  }

  .lt-md\:m-72 {
    margin: 18rem !important;
  }

  .lt-md\:m-80 {
    margin: 20rem !important;
  }

  .lt-md\:m-90 {
    margin: 24rem !important;
  }

  .lt-md\:m-96 {
    margin: 24rem !important;
  }

  .lt-md\:m-100 {
    margin: 25rem !important;
  }

  .lt-md\:m-120 {
    margin: 30rem !important;
  }

  .lt-md\:m-128 {
    margin: 32rem !important;
  }

  .lt-md\:m-140 {
    margin: 35rem !important;
  }

  .lt-md\:m-160 {
    margin: 40rem !important;
  }

  .lt-md\:m-180 {
    margin: 45rem !important;
  }

  .lt-md\:m-192 {
    margin: 48rem !important;
  }

  .lt-md\:m-200 {
    margin: 50rem !important;
  }

  .lt-md\:m-240 {
    margin: 60rem !important;
  }

  .lt-md\:m-256 {
    margin: 64rem !important;
  }

  .lt-md\:m-280 {
    margin: 70rem !important;
  }

  .lt-md\:m-320 {
    margin: 80rem !important;
  }

  .lt-md\:m-360 {
    margin: 90rem !important;
  }

  .lt-md\:m-400 {
    margin: 100rem !important;
  }

  .lt-md\:m-480 {
    margin: 120rem !important;
  }

  .lt-md\:m-auto {
    margin: auto !important;
  }

  .lt-md\:m-px {
    margin: 1px !important;
  }

  .lt-md\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .lt-md\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .lt-md\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .lt-md\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .lt-md\:m-1\/2 {
    margin: 50% !important;
  }

  .lt-md\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .lt-md\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .lt-md\:m-1\/4 {
    margin: 25% !important;
  }

  .lt-md\:m-2\/4 {
    margin: 50% !important;
  }

  .lt-md\:m-3\/4 {
    margin: 75% !important;
  }

  .lt-md\:m-1\/5 {
    margin: 20% !important;
  }

  .lt-md\:m-2\/5 {
    margin: 40% !important;
  }

  .lt-md\:m-3\/5 {
    margin: 60% !important;
  }

  .lt-md\:m-4\/5 {
    margin: 80% !important;
  }

  .lt-md\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .lt-md\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .lt-md\:m-3\/6 {
    margin: 50% !important;
  }

  .lt-md\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .lt-md\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .lt-md\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .lt-md\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .lt-md\:m-3\/12 {
    margin: 25% !important;
  }

  .lt-md\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .lt-md\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .lt-md\:m-6\/12 {
    margin: 50% !important;
  }

  .lt-md\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .lt-md\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .lt-md\:m-9\/12 {
    margin: 75% !important;
  }

  .lt-md\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .lt-md\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .lt-md\:m-full {
    margin: 100% !important;
  }

  .lt-md\:m-2px {
    margin: 2px !important;
  }

  .lt-md\:-m-1 {
    margin: -0.25rem !important;
  }

  .lt-md\:-m-2 {
    margin: -0.5rem !important;
  }

  .lt-md\:-m-3 {
    margin: -0.75rem !important;
  }

  .lt-md\:-m-4 {
    margin: -1rem !important;
  }

  .lt-md\:-m-5 {
    margin: -1.25rem !important;
  }

  .lt-md\:-m-6 {
    margin: -1.5rem !important;
  }

  .lt-md\:-m-7 {
    margin: -1.75rem !important;
  }

  .lt-md\:-m-8 {
    margin: -2rem !important;
  }

  .lt-md\:-m-9 {
    margin: -2.25rem !important;
  }

  .lt-md\:-m-10 {
    margin: -2.5rem !important;
  }

  .lt-md\:-m-11 {
    margin: -2.75rem !important;
  }

  .lt-md\:-m-12 {
    margin: -3rem !important;
  }

  .lt-md\:-m-13 {
    margin: -3.25rem !important;
  }

  .lt-md\:-m-14 {
    margin: -3.5rem !important;
  }

  .lt-md\:-m-15 {
    margin: -3.75rem !important;
  }

  .lt-md\:-m-16 {
    margin: -4rem !important;
  }

  .lt-md\:-m-18 {
    margin: -4.5rem !important;
  }

  .lt-md\:-m-20 {
    margin: -5rem !important;
  }

  .lt-md\:-m-22 {
    margin: -5.5rem !important;
  }

  .lt-md\:-m-24 {
    margin: -6rem !important;
  }

  .lt-md\:-m-26 {
    margin: -6.5rem !important;
  }

  .lt-md\:-m-28 {
    margin: -7rem !important;
  }

  .lt-md\:-m-30 {
    margin: -7.5rem !important;
  }

  .lt-md\:-m-32 {
    margin: -8rem !important;
  }

  .lt-md\:-m-36 {
    margin: -9rem !important;
  }

  .lt-md\:-m-40 {
    margin: -10rem !important;
  }

  .lt-md\:-m-44 {
    margin: -11rem !important;
  }

  .lt-md\:-m-48 {
    margin: -12rem !important;
  }

  .lt-md\:-m-50 {
    margin: -12.5rem !important;
  }

  .lt-md\:-m-52 {
    margin: -13rem !important;
  }

  .lt-md\:-m-56 {
    margin: -14rem !important;
  }

  .lt-md\:-m-60 {
    margin: -15rem !important;
  }

  .lt-md\:-m-64 {
    margin: -16rem !important;
  }

  .lt-md\:-m-72 {
    margin: -18rem !important;
  }

  .lt-md\:-m-80 {
    margin: -20rem !important;
  }

  .lt-md\:-m-90 {
    margin: -24rem !important;
  }

  .lt-md\:-m-96 {
    margin: -24rem !important;
  }

  .lt-md\:-m-100 {
    margin: -25rem !important;
  }

  .lt-md\:-m-120 {
    margin: -30rem !important;
  }

  .lt-md\:-m-128 {
    margin: -32rem !important;
  }

  .lt-md\:-m-140 {
    margin: -35rem !important;
  }

  .lt-md\:-m-160 {
    margin: -40rem !important;
  }

  .lt-md\:-m-180 {
    margin: -45rem !important;
  }

  .lt-md\:-m-192 {
    margin: -48rem !important;
  }

  .lt-md\:-m-200 {
    margin: -50rem !important;
  }

  .lt-md\:-m-240 {
    margin: -60rem !important;
  }

  .lt-md\:-m-256 {
    margin: -64rem !important;
  }

  .lt-md\:-m-280 {
    margin: -70rem !important;
  }

  .lt-md\:-m-320 {
    margin: -80rem !important;
  }

  .lt-md\:-m-360 {
    margin: -90rem !important;
  }

  .lt-md\:-m-400 {
    margin: -100rem !important;
  }

  .lt-md\:-m-480 {
    margin: -120rem !important;
  }

  .lt-md\:-m-px {
    margin: -1px !important;
  }

  .lt-md\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .lt-md\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .lt-md\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .lt-md\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .lt-md\:-m-1\/2 {
    margin: -50% !important;
  }

  .lt-md\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .lt-md\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .lt-md\:-m-1\/4 {
    margin: -25% !important;
  }

  .lt-md\:-m-2\/4 {
    margin: -50% !important;
  }

  .lt-md\:-m-3\/4 {
    margin: -75% !important;
  }

  .lt-md\:-m-1\/5 {
    margin: -20% !important;
  }

  .lt-md\:-m-2\/5 {
    margin: -40% !important;
  }

  .lt-md\:-m-3\/5 {
    margin: -60% !important;
  }

  .lt-md\:-m-4\/5 {
    margin: -80% !important;
  }

  .lt-md\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .lt-md\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .lt-md\:-m-3\/6 {
    margin: -50% !important;
  }

  .lt-md\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .lt-md\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .lt-md\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .lt-md\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .lt-md\:-m-3\/12 {
    margin: -25% !important;
  }

  .lt-md\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .lt-md\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .lt-md\:-m-6\/12 {
    margin: -50% !important;
  }

  .lt-md\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .lt-md\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .lt-md\:-m-9\/12 {
    margin: -75% !important;
  }

  .lt-md\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .lt-md\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .lt-md\:-m-full {
    margin: -100% !important;
  }

  .lt-md\:-m-2px {
    margin: -2px !important;
  }

  .lt-md\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .lt-md\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .lt-md\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .lt-md\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .lt-md\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .lt-md\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .lt-md\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .lt-md\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .lt-md\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .lt-md\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .lt-md\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .lt-md\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .lt-md\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .lt-md\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .lt-md\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .lt-md\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .lt-md\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lt-md\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .lt-md\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .lt-md\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .lt-md\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .lt-md\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .lt-md\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .lt-md\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .lt-md\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .lt-md\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .lt-md\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .lt-md\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .lt-md\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .lt-md\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .lt-md\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .lt-md\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .lt-md\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .lt-md\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .lt-md\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .lt-md\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .lt-md\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .lt-md\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .lt-md\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .lt-md\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .lt-md\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .lt-md\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .lt-md\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .lt-md\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .lt-md\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .lt-md\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .lt-md\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .lt-md\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .lt-md\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .lt-md\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .lt-md\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .lt-md\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .lt-md\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .lt-md\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .lt-md\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .lt-md\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .lt-md\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .lt-md\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .lt-md\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .lt-md\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .lt-md\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .lt-md\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .lt-md\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .lt-md\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .lt-md\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .lt-md\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .lt-md\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .lt-md\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .lt-md\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .lt-md\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .lt-md\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .lt-md\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .lt-md\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .lt-md\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .lt-md\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .lt-md\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .lt-md\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .lt-md\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .lt-md\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .lt-md\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .lt-md\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .lt-md\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .lt-md\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .lt-md\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .lt-md\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .lt-md\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .lt-md\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .lt-md\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .lt-md\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .lt-md\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .lt-md\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .lt-md\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .lt-md\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .lt-md\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .lt-md\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .lt-md\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .lt-md\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .lt-md\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .lt-md\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .lt-md\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .lt-md\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .lt-md\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .lt-md\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .lt-md\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .lt-md\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .lt-md\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .lt-md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .lt-md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lt-md\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .lt-md\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .lt-md\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .lt-md\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .lt-md\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .lt-md\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .lt-md\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .lt-md\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .lt-md\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .lt-md\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .lt-md\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-md\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-md\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lt-md\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lt-md\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lt-md\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lt-md\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .lt-md\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .lt-md\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-md\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-md\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .lt-md\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .lt-md\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .lt-md\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .lt-md\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .lt-md\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .lt-md\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .lt-md\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .lt-md\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .lt-md\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .lt-md\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .lt-md\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .lt-md\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lt-md\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lt-md\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-md\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-md\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lt-md\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lt-md\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .lt-md\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .lt-md\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .lt-md\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .lt-md\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .lt-md\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .lt-md\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .lt-md\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .lt-md\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lt-md\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lt-md\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .lt-md\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .lt-md\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-md\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-md\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .lt-md\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .lt-md\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lt-md\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lt-md\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .lt-md\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .lt-md\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .lt-md\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .lt-md\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .lt-md\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .lt-md\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .lt-md\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .lt-md\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .lt-md\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .lt-md\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .lt-md\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .lt-md\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .lt-md\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .lt-md\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .lt-md\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .lt-md\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .lt-md\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .lt-md\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .lt-md\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .lt-md\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .lt-md\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .lt-md\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .lt-md\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .lt-md\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .lt-md\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .lt-md\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .lt-md\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .lt-md\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .lt-md\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .lt-md\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .lt-md\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .lt-md\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .lt-md\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .lt-md\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .lt-md\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .lt-md\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .lt-md\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .lt-md\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .lt-md\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .lt-md\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .lt-md\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .lt-md\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .lt-md\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .lt-md\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .lt-md\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .lt-md\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .lt-md\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .lt-md\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .lt-md\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .lt-md\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .lt-md\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .lt-md\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .lt-md\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .lt-md\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .lt-md\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .lt-md\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .lt-md\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .lt-md\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .lt-md\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .lt-md\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .lt-md\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .lt-md\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .lt-md\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .lt-md\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .lt-md\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .lt-md\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .lt-md\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .lt-md\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .lt-md\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .lt-md\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .lt-md\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .lt-md\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .lt-md\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .lt-md\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .lt-md\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .lt-md\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .lt-md\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .lt-md\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .lt-md\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .lt-md\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .lt-md\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .lt-md\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .lt-md\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .lt-md\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .lt-md\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .lt-md\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .lt-md\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .lt-md\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .lt-md\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .lt-md\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .lt-md\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .lt-md\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .lt-md\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .lt-md\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .lt-md\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .lt-md\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .lt-md\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .lt-md\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .lt-md\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .lt-md\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .lt-md\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .lt-md\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .lt-md\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .lt-md\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .lt-md\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .lt-md\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .lt-md\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .lt-md\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .lt-md\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .lt-md\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .lt-md\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .lt-md\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .lt-md\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .lt-md\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .lt-md\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .lt-md\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .lt-md\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .lt-md\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .lt-md\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .lt-md\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .lt-md\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .lt-md\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .lt-md\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .lt-md\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-md\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-md\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lt-md\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lt-md\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lt-md\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lt-md\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .lt-md\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .lt-md\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-md\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-md\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .lt-md\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .lt-md\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .lt-md\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .lt-md\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .lt-md\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .lt-md\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .lt-md\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .lt-md\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .lt-md\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .lt-md\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .lt-md\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .lt-md\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lt-md\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lt-md\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-md\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-md\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lt-md\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lt-md\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .lt-md\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .lt-md\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .lt-md\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .lt-md\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .lt-md\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .lt-md\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .lt-md\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .lt-md\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lt-md\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lt-md\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .lt-md\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .lt-md\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-md\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-md\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .lt-md\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .lt-md\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lt-md\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lt-md\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .lt-md\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .lt-md\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .lt-md\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .lt-md\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .lt-md\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .lt-md\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .lt-md\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .lt-md\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .lt-md\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .lt-md\:mt-0 {
    margin-top: 0 !important;
  }

  .lt-md\:mr-0 {
    margin-right: 0 !important;
  }

  .lt-md\:mb-0 {
    margin-bottom: 0 !important;
  }

  .lt-md\:ml-0 {
    margin-left: 0 !important;
  }

  .lt-md\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .lt-md\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .lt-md\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .lt-md\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .lt-md\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .lt-md\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .lt-md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .lt-md\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .lt-md\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .lt-md\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .lt-md\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .lt-md\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .lt-md\:mt-4 {
    margin-top: 1rem !important;
  }

  .lt-md\:mr-4 {
    margin-right: 1rem !important;
  }

  .lt-md\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .lt-md\:ml-4 {
    margin-left: 1rem !important;
  }

  .lt-md\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .lt-md\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .lt-md\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .lt-md\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .lt-md\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .lt-md\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .lt-md\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .lt-md\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .lt-md\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .lt-md\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .lt-md\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .lt-md\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .lt-md\:mt-8 {
    margin-top: 2rem !important;
  }

  .lt-md\:mr-8 {
    margin-right: 2rem !important;
  }

  .lt-md\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .lt-md\:ml-8 {
    margin-left: 2rem !important;
  }

  .lt-md\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .lt-md\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .lt-md\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .lt-md\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .lt-md\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .lt-md\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .lt-md\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .lt-md\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .lt-md\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .lt-md\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .lt-md\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .lt-md\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .lt-md\:mt-12 {
    margin-top: 3rem !important;
  }

  .lt-md\:mr-12 {
    margin-right: 3rem !important;
  }

  .lt-md\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .lt-md\:ml-12 {
    margin-left: 3rem !important;
  }

  .lt-md\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .lt-md\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .lt-md\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .lt-md\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .lt-md\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .lt-md\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .lt-md\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .lt-md\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .lt-md\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .lt-md\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .lt-md\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .lt-md\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .lt-md\:mt-16 {
    margin-top: 4rem !important;
  }

  .lt-md\:mr-16 {
    margin-right: 4rem !important;
  }

  .lt-md\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .lt-md\:ml-16 {
    margin-left: 4rem !important;
  }

  .lt-md\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .lt-md\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .lt-md\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .lt-md\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .lt-md\:mt-20 {
    margin-top: 5rem !important;
  }

  .lt-md\:mr-20 {
    margin-right: 5rem !important;
  }

  .lt-md\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .lt-md\:ml-20 {
    margin-left: 5rem !important;
  }

  .lt-md\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .lt-md\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .lt-md\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .lt-md\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .lt-md\:mt-24 {
    margin-top: 6rem !important;
  }

  .lt-md\:mr-24 {
    margin-right: 6rem !important;
  }

  .lt-md\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .lt-md\:ml-24 {
    margin-left: 6rem !important;
  }

  .lt-md\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .lt-md\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .lt-md\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .lt-md\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .lt-md\:mt-28 {
    margin-top: 7rem !important;
  }

  .lt-md\:mr-28 {
    margin-right: 7rem !important;
  }

  .lt-md\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .lt-md\:ml-28 {
    margin-left: 7rem !important;
  }

  .lt-md\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .lt-md\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .lt-md\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .lt-md\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .lt-md\:mt-32 {
    margin-top: 8rem !important;
  }

  .lt-md\:mr-32 {
    margin-right: 8rem !important;
  }

  .lt-md\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .lt-md\:ml-32 {
    margin-left: 8rem !important;
  }

  .lt-md\:mt-36 {
    margin-top: 9rem !important;
  }

  .lt-md\:mr-36 {
    margin-right: 9rem !important;
  }

  .lt-md\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .lt-md\:ml-36 {
    margin-left: 9rem !important;
  }

  .lt-md\:mt-40 {
    margin-top: 10rem !important;
  }

  .lt-md\:mr-40 {
    margin-right: 10rem !important;
  }

  .lt-md\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .lt-md\:ml-40 {
    margin-left: 10rem !important;
  }

  .lt-md\:mt-44 {
    margin-top: 11rem !important;
  }

  .lt-md\:mr-44 {
    margin-right: 11rem !important;
  }

  .lt-md\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .lt-md\:ml-44 {
    margin-left: 11rem !important;
  }

  .lt-md\:mt-48 {
    margin-top: 12rem !important;
  }

  .lt-md\:mr-48 {
    margin-right: 12rem !important;
  }

  .lt-md\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .lt-md\:ml-48 {
    margin-left: 12rem !important;
  }

  .lt-md\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .lt-md\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .lt-md\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .lt-md\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .lt-md\:mt-52 {
    margin-top: 13rem !important;
  }

  .lt-md\:mr-52 {
    margin-right: 13rem !important;
  }

  .lt-md\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .lt-md\:ml-52 {
    margin-left: 13rem !important;
  }

  .lt-md\:mt-56 {
    margin-top: 14rem !important;
  }

  .lt-md\:mr-56 {
    margin-right: 14rem !important;
  }

  .lt-md\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .lt-md\:ml-56 {
    margin-left: 14rem !important;
  }

  .lt-md\:mt-60 {
    margin-top: 15rem !important;
  }

  .lt-md\:mr-60 {
    margin-right: 15rem !important;
  }

  .lt-md\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .lt-md\:ml-60 {
    margin-left: 15rem !important;
  }

  .lt-md\:mt-64 {
    margin-top: 16rem !important;
  }

  .lt-md\:mr-64 {
    margin-right: 16rem !important;
  }

  .lt-md\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .lt-md\:ml-64 {
    margin-left: 16rem !important;
  }

  .lt-md\:mt-72 {
    margin-top: 18rem !important;
  }

  .lt-md\:mr-72 {
    margin-right: 18rem !important;
  }

  .lt-md\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .lt-md\:ml-72 {
    margin-left: 18rem !important;
  }

  .lt-md\:mt-80 {
    margin-top: 20rem !important;
  }

  .lt-md\:mr-80 {
    margin-right: 20rem !important;
  }

  .lt-md\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .lt-md\:ml-80 {
    margin-left: 20rem !important;
  }

  .lt-md\:mt-90 {
    margin-top: 24rem !important;
  }

  .lt-md\:mr-90 {
    margin-right: 24rem !important;
  }

  .lt-md\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .lt-md\:ml-90 {
    margin-left: 24rem !important;
  }

  .lt-md\:mt-96 {
    margin-top: 24rem !important;
  }

  .lt-md\:mr-96 {
    margin-right: 24rem !important;
  }

  .lt-md\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .lt-md\:ml-96 {
    margin-left: 24rem !important;
  }

  .lt-md\:mt-100 {
    margin-top: 25rem !important;
  }

  .lt-md\:mr-100 {
    margin-right: 25rem !important;
  }

  .lt-md\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .lt-md\:ml-100 {
    margin-left: 25rem !important;
  }

  .lt-md\:mt-120 {
    margin-top: 30rem !important;
  }

  .lt-md\:mr-120 {
    margin-right: 30rem !important;
  }

  .lt-md\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .lt-md\:ml-120 {
    margin-left: 30rem !important;
  }

  .lt-md\:mt-128 {
    margin-top: 32rem !important;
  }

  .lt-md\:mr-128 {
    margin-right: 32rem !important;
  }

  .lt-md\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .lt-md\:ml-128 {
    margin-left: 32rem !important;
  }

  .lt-md\:mt-140 {
    margin-top: 35rem !important;
  }

  .lt-md\:mr-140 {
    margin-right: 35rem !important;
  }

  .lt-md\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .lt-md\:ml-140 {
    margin-left: 35rem !important;
  }

  .lt-md\:mt-160 {
    margin-top: 40rem !important;
  }

  .lt-md\:mr-160 {
    margin-right: 40rem !important;
  }

  .lt-md\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .lt-md\:ml-160 {
    margin-left: 40rem !important;
  }

  .lt-md\:mt-180 {
    margin-top: 45rem !important;
  }

  .lt-md\:mr-180 {
    margin-right: 45rem !important;
  }

  .lt-md\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .lt-md\:ml-180 {
    margin-left: 45rem !important;
  }

  .lt-md\:mt-192 {
    margin-top: 48rem !important;
  }

  .lt-md\:mr-192 {
    margin-right: 48rem !important;
  }

  .lt-md\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .lt-md\:ml-192 {
    margin-left: 48rem !important;
  }

  .lt-md\:mt-200 {
    margin-top: 50rem !important;
  }

  .lt-md\:mr-200 {
    margin-right: 50rem !important;
  }

  .lt-md\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .lt-md\:ml-200 {
    margin-left: 50rem !important;
  }

  .lt-md\:mt-240 {
    margin-top: 60rem !important;
  }

  .lt-md\:mr-240 {
    margin-right: 60rem !important;
  }

  .lt-md\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .lt-md\:ml-240 {
    margin-left: 60rem !important;
  }

  .lt-md\:mt-256 {
    margin-top: 64rem !important;
  }

  .lt-md\:mr-256 {
    margin-right: 64rem !important;
  }

  .lt-md\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .lt-md\:ml-256 {
    margin-left: 64rem !important;
  }

  .lt-md\:mt-280 {
    margin-top: 70rem !important;
  }

  .lt-md\:mr-280 {
    margin-right: 70rem !important;
  }

  .lt-md\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .lt-md\:ml-280 {
    margin-left: 70rem !important;
  }

  .lt-md\:mt-320 {
    margin-top: 80rem !important;
  }

  .lt-md\:mr-320 {
    margin-right: 80rem !important;
  }

  .lt-md\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .lt-md\:ml-320 {
    margin-left: 80rem !important;
  }

  .lt-md\:mt-360 {
    margin-top: 90rem !important;
  }

  .lt-md\:mr-360 {
    margin-right: 90rem !important;
  }

  .lt-md\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .lt-md\:ml-360 {
    margin-left: 90rem !important;
  }

  .lt-md\:mt-400 {
    margin-top: 100rem !important;
  }

  .lt-md\:mr-400 {
    margin-right: 100rem !important;
  }

  .lt-md\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .lt-md\:ml-400 {
    margin-left: 100rem !important;
  }

  .lt-md\:mt-480 {
    margin-top: 120rem !important;
  }

  .lt-md\:mr-480 {
    margin-right: 120rem !important;
  }

  .lt-md\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .lt-md\:ml-480 {
    margin-left: 120rem !important;
  }

  .lt-md\:mt-auto {
    margin-top: auto !important;
  }

  .lt-md\:mr-auto {
    margin-right: auto !important;
  }

  .lt-md\:mb-auto {
    margin-bottom: auto !important;
  }

  .lt-md\:ml-auto {
    margin-left: auto !important;
  }

  .lt-md\:mt-px {
    margin-top: 1px !important;
  }

  .lt-md\:mr-px {
    margin-right: 1px !important;
  }

  .lt-md\:mb-px {
    margin-bottom: 1px !important;
  }

  .lt-md\:ml-px {
    margin-left: 1px !important;
  }

  .lt-md\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .lt-md\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .lt-md\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .lt-md\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .lt-md\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .lt-md\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .lt-md\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .lt-md\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .lt-md\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .lt-md\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .lt-md\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .lt-md\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .lt-md\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .lt-md\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .lt-md\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .lt-md\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .lt-md\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .lt-md\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .lt-md\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .lt-md\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .lt-md\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .lt-md\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .lt-md\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .lt-md\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .lt-md\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .lt-md\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .lt-md\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .lt-md\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .lt-md\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .lt-md\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .lt-md\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .lt-md\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .lt-md\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .lt-md\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .lt-md\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .lt-md\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .lt-md\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .lt-md\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .lt-md\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .lt-md\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .lt-md\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .lt-md\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .lt-md\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .lt-md\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .lt-md\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .lt-md\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .lt-md\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .lt-md\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .lt-md\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .lt-md\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .lt-md\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .lt-md\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .lt-md\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .lt-md\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .lt-md\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .lt-md\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .lt-md\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .lt-md\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .lt-md\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .lt-md\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .lt-md\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .lt-md\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .lt-md\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .lt-md\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .lt-md\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .lt-md\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .lt-md\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .lt-md\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .lt-md\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .lt-md\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .lt-md\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .lt-md\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .lt-md\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .lt-md\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .lt-md\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .lt-md\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .lt-md\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .lt-md\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .lt-md\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .lt-md\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .lt-md\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .lt-md\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .lt-md\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .lt-md\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .lt-md\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .lt-md\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .lt-md\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .lt-md\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .lt-md\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .lt-md\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .lt-md\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .lt-md\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .lt-md\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .lt-md\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .lt-md\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .lt-md\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .lt-md\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .lt-md\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .lt-md\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .lt-md\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .lt-md\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .lt-md\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .lt-md\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .lt-md\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .lt-md\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .lt-md\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .lt-md\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .lt-md\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .lt-md\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .lt-md\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .lt-md\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .lt-md\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .lt-md\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .lt-md\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .lt-md\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .lt-md\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .lt-md\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .lt-md\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .lt-md\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .lt-md\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .lt-md\:mt-full {
    margin-top: 100% !important;
  }

  .lt-md\:mr-full {
    margin-right: 100% !important;
  }

  .lt-md\:mb-full {
    margin-bottom: 100% !important;
  }

  .lt-md\:ml-full {
    margin-left: 100% !important;
  }

  .lt-md\:mt-2px {
    margin-top: 2px !important;
  }

  .lt-md\:mr-2px {
    margin-right: 2px !important;
  }

  .lt-md\:mb-2px {
    margin-bottom: 2px !important;
  }

  .lt-md\:ml-2px {
    margin-left: 2px !important;
  }

  .lt-md\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .lt-md\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .lt-md\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .lt-md\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .lt-md\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .lt-md\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .lt-md\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .lt-md\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .lt-md\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .lt-md\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .lt-md\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .lt-md\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .lt-md\:-mt-4 {
    margin-top: -1rem !important;
  }

  .lt-md\:-mr-4 {
    margin-right: -1rem !important;
  }

  .lt-md\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .lt-md\:-ml-4 {
    margin-left: -1rem !important;
  }

  .lt-md\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .lt-md\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .lt-md\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .lt-md\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .lt-md\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .lt-md\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .lt-md\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .lt-md\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .lt-md\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .lt-md\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .lt-md\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .lt-md\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .lt-md\:-mt-8 {
    margin-top: -2rem !important;
  }

  .lt-md\:-mr-8 {
    margin-right: -2rem !important;
  }

  .lt-md\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .lt-md\:-ml-8 {
    margin-left: -2rem !important;
  }

  .lt-md\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .lt-md\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .lt-md\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .lt-md\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .lt-md\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .lt-md\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .lt-md\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .lt-md\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .lt-md\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .lt-md\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .lt-md\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .lt-md\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .lt-md\:-mt-12 {
    margin-top: -3rem !important;
  }

  .lt-md\:-mr-12 {
    margin-right: -3rem !important;
  }

  .lt-md\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .lt-md\:-ml-12 {
    margin-left: -3rem !important;
  }

  .lt-md\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .lt-md\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .lt-md\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .lt-md\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .lt-md\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .lt-md\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .lt-md\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .lt-md\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .lt-md\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .lt-md\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .lt-md\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .lt-md\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .lt-md\:-mt-16 {
    margin-top: -4rem !important;
  }

  .lt-md\:-mr-16 {
    margin-right: -4rem !important;
  }

  .lt-md\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .lt-md\:-ml-16 {
    margin-left: -4rem !important;
  }

  .lt-md\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .lt-md\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .lt-md\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .lt-md\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .lt-md\:-mt-20 {
    margin-top: -5rem !important;
  }

  .lt-md\:-mr-20 {
    margin-right: -5rem !important;
  }

  .lt-md\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .lt-md\:-ml-20 {
    margin-left: -5rem !important;
  }

  .lt-md\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .lt-md\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .lt-md\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .lt-md\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .lt-md\:-mt-24 {
    margin-top: -6rem !important;
  }

  .lt-md\:-mr-24 {
    margin-right: -6rem !important;
  }

  .lt-md\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .lt-md\:-ml-24 {
    margin-left: -6rem !important;
  }

  .lt-md\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .lt-md\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .lt-md\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .lt-md\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .lt-md\:-mt-28 {
    margin-top: -7rem !important;
  }

  .lt-md\:-mr-28 {
    margin-right: -7rem !important;
  }

  .lt-md\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .lt-md\:-ml-28 {
    margin-left: -7rem !important;
  }

  .lt-md\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .lt-md\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .lt-md\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .lt-md\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .lt-md\:-mt-32 {
    margin-top: -8rem !important;
  }

  .lt-md\:-mr-32 {
    margin-right: -8rem !important;
  }

  .lt-md\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .lt-md\:-ml-32 {
    margin-left: -8rem !important;
  }

  .lt-md\:-mt-36 {
    margin-top: -9rem !important;
  }

  .lt-md\:-mr-36 {
    margin-right: -9rem !important;
  }

  .lt-md\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .lt-md\:-ml-36 {
    margin-left: -9rem !important;
  }

  .lt-md\:-mt-40 {
    margin-top: -10rem !important;
  }

  .lt-md\:-mr-40 {
    margin-right: -10rem !important;
  }

  .lt-md\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .lt-md\:-ml-40 {
    margin-left: -10rem !important;
  }

  .lt-md\:-mt-44 {
    margin-top: -11rem !important;
  }

  .lt-md\:-mr-44 {
    margin-right: -11rem !important;
  }

  .lt-md\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .lt-md\:-ml-44 {
    margin-left: -11rem !important;
  }

  .lt-md\:-mt-48 {
    margin-top: -12rem !important;
  }

  .lt-md\:-mr-48 {
    margin-right: -12rem !important;
  }

  .lt-md\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .lt-md\:-ml-48 {
    margin-left: -12rem !important;
  }

  .lt-md\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .lt-md\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .lt-md\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .lt-md\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .lt-md\:-mt-52 {
    margin-top: -13rem !important;
  }

  .lt-md\:-mr-52 {
    margin-right: -13rem !important;
  }

  .lt-md\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .lt-md\:-ml-52 {
    margin-left: -13rem !important;
  }

  .lt-md\:-mt-56 {
    margin-top: -14rem !important;
  }

  .lt-md\:-mr-56 {
    margin-right: -14rem !important;
  }

  .lt-md\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .lt-md\:-ml-56 {
    margin-left: -14rem !important;
  }

  .lt-md\:-mt-60 {
    margin-top: -15rem !important;
  }

  .lt-md\:-mr-60 {
    margin-right: -15rem !important;
  }

  .lt-md\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .lt-md\:-ml-60 {
    margin-left: -15rem !important;
  }

  .lt-md\:-mt-64 {
    margin-top: -16rem !important;
  }

  .lt-md\:-mr-64 {
    margin-right: -16rem !important;
  }

  .lt-md\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .lt-md\:-ml-64 {
    margin-left: -16rem !important;
  }

  .lt-md\:-mt-72 {
    margin-top: -18rem !important;
  }

  .lt-md\:-mr-72 {
    margin-right: -18rem !important;
  }

  .lt-md\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .lt-md\:-ml-72 {
    margin-left: -18rem !important;
  }

  .lt-md\:-mt-80 {
    margin-top: -20rem !important;
  }

  .lt-md\:-mr-80 {
    margin-right: -20rem !important;
  }

  .lt-md\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .lt-md\:-ml-80 {
    margin-left: -20rem !important;
  }

  .lt-md\:-mt-90 {
    margin-top: -24rem !important;
  }

  .lt-md\:-mr-90 {
    margin-right: -24rem !important;
  }

  .lt-md\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .lt-md\:-ml-90 {
    margin-left: -24rem !important;
  }

  .lt-md\:-mt-96 {
    margin-top: -24rem !important;
  }

  .lt-md\:-mr-96 {
    margin-right: -24rem !important;
  }

  .lt-md\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .lt-md\:-ml-96 {
    margin-left: -24rem !important;
  }

  .lt-md\:-mt-100 {
    margin-top: -25rem !important;
  }

  .lt-md\:-mr-100 {
    margin-right: -25rem !important;
  }

  .lt-md\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .lt-md\:-ml-100 {
    margin-left: -25rem !important;
  }

  .lt-md\:-mt-120 {
    margin-top: -30rem !important;
  }

  .lt-md\:-mr-120 {
    margin-right: -30rem !important;
  }

  .lt-md\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .lt-md\:-ml-120 {
    margin-left: -30rem !important;
  }

  .lt-md\:-mt-128 {
    margin-top: -32rem !important;
  }

  .lt-md\:-mr-128 {
    margin-right: -32rem !important;
  }

  .lt-md\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .lt-md\:-ml-128 {
    margin-left: -32rem !important;
  }

  .lt-md\:-mt-140 {
    margin-top: -35rem !important;
  }

  .lt-md\:-mr-140 {
    margin-right: -35rem !important;
  }

  .lt-md\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .lt-md\:-ml-140 {
    margin-left: -35rem !important;
  }

  .lt-md\:-mt-160 {
    margin-top: -40rem !important;
  }

  .lt-md\:-mr-160 {
    margin-right: -40rem !important;
  }

  .lt-md\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .lt-md\:-ml-160 {
    margin-left: -40rem !important;
  }

  .lt-md\:-mt-180 {
    margin-top: -45rem !important;
  }

  .lt-md\:-mr-180 {
    margin-right: -45rem !important;
  }

  .lt-md\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .lt-md\:-ml-180 {
    margin-left: -45rem !important;
  }

  .lt-md\:-mt-192 {
    margin-top: -48rem !important;
  }

  .lt-md\:-mr-192 {
    margin-right: -48rem !important;
  }

  .lt-md\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .lt-md\:-ml-192 {
    margin-left: -48rem !important;
  }

  .lt-md\:-mt-200 {
    margin-top: -50rem !important;
  }

  .lt-md\:-mr-200 {
    margin-right: -50rem !important;
  }

  .lt-md\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .lt-md\:-ml-200 {
    margin-left: -50rem !important;
  }

  .lt-md\:-mt-240 {
    margin-top: -60rem !important;
  }

  .lt-md\:-mr-240 {
    margin-right: -60rem !important;
  }

  .lt-md\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .lt-md\:-ml-240 {
    margin-left: -60rem !important;
  }

  .lt-md\:-mt-256 {
    margin-top: -64rem !important;
  }

  .lt-md\:-mr-256 {
    margin-right: -64rem !important;
  }

  .lt-md\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .lt-md\:-ml-256 {
    margin-left: -64rem !important;
  }

  .lt-md\:-mt-280 {
    margin-top: -70rem !important;
  }

  .lt-md\:-mr-280 {
    margin-right: -70rem !important;
  }

  .lt-md\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .lt-md\:-ml-280 {
    margin-left: -70rem !important;
  }

  .lt-md\:-mt-320 {
    margin-top: -80rem !important;
  }

  .lt-md\:-mr-320 {
    margin-right: -80rem !important;
  }

  .lt-md\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .lt-md\:-ml-320 {
    margin-left: -80rem !important;
  }

  .lt-md\:-mt-360 {
    margin-top: -90rem !important;
  }

  .lt-md\:-mr-360 {
    margin-right: -90rem !important;
  }

  .lt-md\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .lt-md\:-ml-360 {
    margin-left: -90rem !important;
  }

  .lt-md\:-mt-400 {
    margin-top: -100rem !important;
  }

  .lt-md\:-mr-400 {
    margin-right: -100rem !important;
  }

  .lt-md\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .lt-md\:-ml-400 {
    margin-left: -100rem !important;
  }

  .lt-md\:-mt-480 {
    margin-top: -120rem !important;
  }

  .lt-md\:-mr-480 {
    margin-right: -120rem !important;
  }

  .lt-md\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .lt-md\:-ml-480 {
    margin-left: -120rem !important;
  }

  .lt-md\:-mt-px {
    margin-top: -1px !important;
  }

  .lt-md\:-mr-px {
    margin-right: -1px !important;
  }

  .lt-md\:-mb-px {
    margin-bottom: -1px !important;
  }

  .lt-md\:-ml-px {
    margin-left: -1px !important;
  }

  .lt-md\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .lt-md\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .lt-md\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .lt-md\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .lt-md\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .lt-md\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .lt-md\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .lt-md\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .lt-md\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .lt-md\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .lt-md\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .lt-md\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .lt-md\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .lt-md\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .lt-md\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .lt-md\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .lt-md\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .lt-md\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .lt-md\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .lt-md\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .lt-md\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .lt-md\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .lt-md\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .lt-md\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .lt-md\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .lt-md\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .lt-md\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .lt-md\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .lt-md\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .lt-md\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .lt-md\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .lt-md\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .lt-md\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .lt-md\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .lt-md\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .lt-md\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .lt-md\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .lt-md\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .lt-md\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .lt-md\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .lt-md\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .lt-md\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .lt-md\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .lt-md\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .lt-md\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .lt-md\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .lt-md\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .lt-md\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .lt-md\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .lt-md\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .lt-md\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .lt-md\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .lt-md\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .lt-md\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .lt-md\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .lt-md\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .lt-md\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .lt-md\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .lt-md\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .lt-md\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .lt-md\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .lt-md\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .lt-md\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .lt-md\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .lt-md\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .lt-md\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .lt-md\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .lt-md\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .lt-md\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .lt-md\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .lt-md\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .lt-md\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .lt-md\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .lt-md\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .lt-md\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .lt-md\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .lt-md\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .lt-md\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .lt-md\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .lt-md\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .lt-md\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .lt-md\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .lt-md\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .lt-md\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .lt-md\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .lt-md\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .lt-md\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .lt-md\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .lt-md\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .lt-md\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .lt-md\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .lt-md\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .lt-md\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .lt-md\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .lt-md\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .lt-md\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .lt-md\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .lt-md\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .lt-md\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .lt-md\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .lt-md\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .lt-md\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .lt-md\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .lt-md\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .lt-md\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .lt-md\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .lt-md\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .lt-md\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .lt-md\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .lt-md\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .lt-md\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .lt-md\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .lt-md\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .lt-md\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .lt-md\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .lt-md\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .lt-md\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .lt-md\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .lt-md\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .lt-md\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .lt-md\:-mt-full {
    margin-top: -100% !important;
  }

  .lt-md\:-mr-full {
    margin-right: -100% !important;
  }

  .lt-md\:-mb-full {
    margin-bottom: -100% !important;
  }

  .lt-md\:-ml-full {
    margin-left: -100% !important;
  }

  .lt-md\:-mt-2px {
    margin-top: -2px !important;
  }

  .lt-md\:-mr-2px {
    margin-right: -2px !important;
  }

  .lt-md\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .lt-md\:-ml-2px {
    margin-left: -2px !important;
  }

  .lt-md\:max-h-0 {
    max-height: 0 !important;
  }

  .lt-md\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .lt-md\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .lt-md\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .lt-md\:max-h-4 {
    max-height: 1rem !important;
  }

  .lt-md\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .lt-md\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .lt-md\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .lt-md\:max-h-8 {
    max-height: 2rem !important;
  }

  .lt-md\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .lt-md\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .lt-md\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .lt-md\:max-h-12 {
    max-height: 3rem !important;
  }

  .lt-md\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .lt-md\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .lt-md\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .lt-md\:max-h-16 {
    max-height: 4rem !important;
  }

  .lt-md\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .lt-md\:max-h-20 {
    max-height: 5rem !important;
  }

  .lt-md\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .lt-md\:max-h-24 {
    max-height: 6rem !important;
  }

  .lt-md\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .lt-md\:max-h-28 {
    max-height: 7rem !important;
  }

  .lt-md\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .lt-md\:max-h-32 {
    max-height: 8rem !important;
  }

  .lt-md\:max-h-36 {
    max-height: 9rem !important;
  }

  .lt-md\:max-h-40 {
    max-height: 10rem !important;
  }

  .lt-md\:max-h-44 {
    max-height: 11rem !important;
  }

  .lt-md\:max-h-48 {
    max-height: 12rem !important;
  }

  .lt-md\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .lt-md\:max-h-52 {
    max-height: 13rem !important;
  }

  .lt-md\:max-h-56 {
    max-height: 14rem !important;
  }

  .lt-md\:max-h-60 {
    max-height: 15rem !important;
  }

  .lt-md\:max-h-64 {
    max-height: 16rem !important;
  }

  .lt-md\:max-h-72 {
    max-height: 18rem !important;
  }

  .lt-md\:max-h-80 {
    max-height: 20rem !important;
  }

  .lt-md\:max-h-90 {
    max-height: 24rem !important;
  }

  .lt-md\:max-h-96 {
    max-height: 24rem !important;
  }

  .lt-md\:max-h-100 {
    max-height: 25rem !important;
  }

  .lt-md\:max-h-120 {
    max-height: 30rem !important;
  }

  .lt-md\:max-h-128 {
    max-height: 32rem !important;
  }

  .lt-md\:max-h-140 {
    max-height: 35rem !important;
  }

  .lt-md\:max-h-160 {
    max-height: 40rem !important;
  }

  .lt-md\:max-h-180 {
    max-height: 45rem !important;
  }

  .lt-md\:max-h-192 {
    max-height: 48rem !important;
  }

  .lt-md\:max-h-200 {
    max-height: 50rem !important;
  }

  .lt-md\:max-h-240 {
    max-height: 60rem !important;
  }

  .lt-md\:max-h-256 {
    max-height: 64rem !important;
  }

  .lt-md\:max-h-280 {
    max-height: 70rem !important;
  }

  .lt-md\:max-h-320 {
    max-height: 80rem !important;
  }

  .lt-md\:max-h-360 {
    max-height: 90rem !important;
  }

  .lt-md\:max-h-400 {
    max-height: 100rem !important;
  }

  .lt-md\:max-h-480 {
    max-height: 120rem !important;
  }

  .lt-md\:max-h-screen {
    max-height: 100vh !important;
  }

  .lt-md\:max-h-px {
    max-height: 1px !important;
  }

  .lt-md\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .lt-md\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .lt-md\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .lt-md\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .lt-md\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .lt-md\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .lt-md\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .lt-md\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .lt-md\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .lt-md\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .lt-md\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .lt-md\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .lt-md\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .lt-md\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .lt-md\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .lt-md\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .lt-md\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .lt-md\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .lt-md\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .lt-md\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .lt-md\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .lt-md\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .lt-md\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .lt-md\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .lt-md\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .lt-md\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .lt-md\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .lt-md\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .lt-md\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .lt-md\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .lt-md\:max-h-full {
    max-height: 100% !important;
  }

  .lt-md\:max-h-2px {
    max-height: 2px !important;
  }

  .lt-md\:max-h-none {
    max-height: none !important;
  }

  .lt-md\:max-w-0 {
    max-width: 0 !important;
  }

  .lt-md\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .lt-md\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .lt-md\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .lt-md\:max-w-4 {
    max-width: 1rem !important;
  }

  .lt-md\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .lt-md\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .lt-md\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .lt-md\:max-w-8 {
    max-width: 2rem !important;
  }

  .lt-md\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .lt-md\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .lt-md\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .lt-md\:max-w-12 {
    max-width: 3rem !important;
  }

  .lt-md\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .lt-md\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .lt-md\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .lt-md\:max-w-16 {
    max-width: 4rem !important;
  }

  .lt-md\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .lt-md\:max-w-20 {
    max-width: 5rem !important;
  }

  .lt-md\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .lt-md\:max-w-24 {
    max-width: 6rem !important;
  }

  .lt-md\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .lt-md\:max-w-28 {
    max-width: 7rem !important;
  }

  .lt-md\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .lt-md\:max-w-32 {
    max-width: 8rem !important;
  }

  .lt-md\:max-w-36 {
    max-width: 9rem !important;
  }

  .lt-md\:max-w-40 {
    max-width: 10rem !important;
  }

  .lt-md\:max-w-44 {
    max-width: 11rem !important;
  }

  .lt-md\:max-w-48 {
    max-width: 12rem !important;
  }

  .lt-md\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .lt-md\:max-w-52 {
    max-width: 13rem !important;
  }

  .lt-md\:max-w-56 {
    max-width: 14rem !important;
  }

  .lt-md\:max-w-60 {
    max-width: 15rem !important;
  }

  .lt-md\:max-w-64 {
    max-width: 16rem !important;
  }

  .lt-md\:max-w-72 {
    max-width: 18rem !important;
  }

  .lt-md\:max-w-80 {
    max-width: 20rem !important;
  }

  .lt-md\:max-w-90 {
    max-width: 24rem !important;
  }

  .lt-md\:max-w-96 {
    max-width: 24rem !important;
  }

  .lt-md\:max-w-100 {
    max-width: 25rem !important;
  }

  .lt-md\:max-w-120 {
    max-width: 30rem !important;
  }

  .lt-md\:max-w-128 {
    max-width: 32rem !important;
  }

  .lt-md\:max-w-140 {
    max-width: 35rem !important;
  }

  .lt-md\:max-w-160 {
    max-width: 40rem !important;
  }

  .lt-md\:max-w-180 {
    max-width: 45rem !important;
  }

  .lt-md\:max-w-192 {
    max-width: 48rem !important;
  }

  .lt-md\:max-w-200 {
    max-width: 50rem !important;
  }

  .lt-md\:max-w-240 {
    max-width: 60rem !important;
  }

  .lt-md\:max-w-256 {
    max-width: 64rem !important;
  }

  .lt-md\:max-w-280 {
    max-width: 70rem !important;
  }

  .lt-md\:max-w-320 {
    max-width: 80rem !important;
  }

  .lt-md\:max-w-360 {
    max-width: 90rem !important;
  }

  .lt-md\:max-w-400 {
    max-width: 100rem !important;
  }

  .lt-md\:max-w-480 {
    max-width: 120rem !important;
  }

  .lt-md\:max-w-none {
    max-width: none !important;
  }

  .lt-md\:max-w-xs {
    max-width: 20rem !important;
  }

  .lt-md\:max-w-sm {
    max-width: 24rem !important;
  }

  .lt-md\:max-w-md {
    max-width: 28rem !important;
  }

  .lt-md\:max-w-lg {
    max-width: 32rem !important;
  }

  .lt-md\:max-w-xl {
    max-width: 36rem !important;
  }

  .lt-md\:max-w-2xl {
    max-width: 42rem !important;
  }

  .lt-md\:max-w-3xl {
    max-width: 48rem !important;
  }

  .lt-md\:max-w-4xl {
    max-width: 56rem !important;
  }

  .lt-md\:max-w-5xl {
    max-width: 64rem !important;
  }

  .lt-md\:max-w-6xl {
    max-width: 72rem !important;
  }

  .lt-md\:max-w-7xl {
    max-width: 80rem !important;
  }

  .lt-md\:max-w-full {
    max-width: 100% !important;
  }

  .lt-md\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .lt-md\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .lt-md\:max-w-screen {
    max-width: 100vw !important;
  }

  .lt-md\:max-w-px {
    max-width: 1px !important;
  }

  .lt-md\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .lt-md\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .lt-md\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .lt-md\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .lt-md\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .lt-md\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .lt-md\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .lt-md\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .lt-md\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .lt-md\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .lt-md\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .lt-md\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .lt-md\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .lt-md\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .lt-md\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .lt-md\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .lt-md\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .lt-md\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .lt-md\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .lt-md\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .lt-md\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .lt-md\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .lt-md\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .lt-md\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .lt-md\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .lt-md\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .lt-md\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .lt-md\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .lt-md\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .lt-md\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .lt-md\:max-w-2px {
    max-width: 2px !important;
  }

  .lt-md\:min-h-0 {
    min-height: 0 !important;
  }

  .lt-md\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .lt-md\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .lt-md\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .lt-md\:min-h-4 {
    min-height: 1rem !important;
  }

  .lt-md\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .lt-md\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .lt-md\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .lt-md\:min-h-8 {
    min-height: 2rem !important;
  }

  .lt-md\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .lt-md\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .lt-md\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .lt-md\:min-h-12 {
    min-height: 3rem !important;
  }

  .lt-md\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .lt-md\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .lt-md\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .lt-md\:min-h-16 {
    min-height: 4rem !important;
  }

  .lt-md\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .lt-md\:min-h-20 {
    min-height: 5rem !important;
  }

  .lt-md\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .lt-md\:min-h-24 {
    min-height: 6rem !important;
  }

  .lt-md\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .lt-md\:min-h-28 {
    min-height: 7rem !important;
  }

  .lt-md\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .lt-md\:min-h-32 {
    min-height: 8rem !important;
  }

  .lt-md\:min-h-36 {
    min-height: 9rem !important;
  }

  .lt-md\:min-h-40 {
    min-height: 10rem !important;
  }

  .lt-md\:min-h-44 {
    min-height: 11rem !important;
  }

  .lt-md\:min-h-48 {
    min-height: 12rem !important;
  }

  .lt-md\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .lt-md\:min-h-52 {
    min-height: 13rem !important;
  }

  .lt-md\:min-h-56 {
    min-height: 14rem !important;
  }

  .lt-md\:min-h-60 {
    min-height: 15rem !important;
  }

  .lt-md\:min-h-64 {
    min-height: 16rem !important;
  }

  .lt-md\:min-h-72 {
    min-height: 18rem !important;
  }

  .lt-md\:min-h-80 {
    min-height: 20rem !important;
  }

  .lt-md\:min-h-90 {
    min-height: 24rem !important;
  }

  .lt-md\:min-h-96 {
    min-height: 24rem !important;
  }

  .lt-md\:min-h-100 {
    min-height: 25rem !important;
  }

  .lt-md\:min-h-120 {
    min-height: 30rem !important;
  }

  .lt-md\:min-h-128 {
    min-height: 32rem !important;
  }

  .lt-md\:min-h-140 {
    min-height: 35rem !important;
  }

  .lt-md\:min-h-160 {
    min-height: 40rem !important;
  }

  .lt-md\:min-h-180 {
    min-height: 45rem !important;
  }

  .lt-md\:min-h-192 {
    min-height: 48rem !important;
  }

  .lt-md\:min-h-200 {
    min-height: 50rem !important;
  }

  .lt-md\:min-h-240 {
    min-height: 60rem !important;
  }

  .lt-md\:min-h-256 {
    min-height: 64rem !important;
  }

  .lt-md\:min-h-280 {
    min-height: 70rem !important;
  }

  .lt-md\:min-h-320 {
    min-height: 80rem !important;
  }

  .lt-md\:min-h-360 {
    min-height: 90rem !important;
  }

  .lt-md\:min-h-400 {
    min-height: 100rem !important;
  }

  .lt-md\:min-h-480 {
    min-height: 120rem !important;
  }

  .lt-md\:min-h-full {
    min-height: 100% !important;
  }

  .lt-md\:min-h-screen {
    min-height: 100vh !important;
  }

  .lt-md\:min-h-px {
    min-height: 1px !important;
  }

  .lt-md\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .lt-md\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .lt-md\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .lt-md\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .lt-md\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .lt-md\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .lt-md\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .lt-md\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .lt-md\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .lt-md\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .lt-md\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .lt-md\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .lt-md\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .lt-md\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .lt-md\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .lt-md\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .lt-md\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .lt-md\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .lt-md\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .lt-md\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .lt-md\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .lt-md\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .lt-md\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .lt-md\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .lt-md\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .lt-md\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .lt-md\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .lt-md\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .lt-md\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .lt-md\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .lt-md\:min-h-2px {
    min-height: 2px !important;
  }

  .lt-md\:min-w-0 {
    min-width: 0 !important;
  }

  .lt-md\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .lt-md\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .lt-md\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .lt-md\:min-w-4 {
    min-width: 1rem !important;
  }

  .lt-md\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .lt-md\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .lt-md\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .lt-md\:min-w-8 {
    min-width: 2rem !important;
  }

  .lt-md\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .lt-md\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .lt-md\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .lt-md\:min-w-12 {
    min-width: 3rem !important;
  }

  .lt-md\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .lt-md\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .lt-md\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .lt-md\:min-w-16 {
    min-width: 4rem !important;
  }

  .lt-md\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .lt-md\:min-w-20 {
    min-width: 5rem !important;
  }

  .lt-md\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .lt-md\:min-w-24 {
    min-width: 6rem !important;
  }

  .lt-md\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .lt-md\:min-w-28 {
    min-width: 7rem !important;
  }

  .lt-md\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .lt-md\:min-w-32 {
    min-width: 8rem !important;
  }

  .lt-md\:min-w-36 {
    min-width: 9rem !important;
  }

  .lt-md\:min-w-40 {
    min-width: 10rem !important;
  }

  .lt-md\:min-w-44 {
    min-width: 11rem !important;
  }

  .lt-md\:min-w-48 {
    min-width: 12rem !important;
  }

  .lt-md\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .lt-md\:min-w-52 {
    min-width: 13rem !important;
  }

  .lt-md\:min-w-56 {
    min-width: 14rem !important;
  }

  .lt-md\:min-w-60 {
    min-width: 15rem !important;
  }

  .lt-md\:min-w-64 {
    min-width: 16rem !important;
  }

  .lt-md\:min-w-72 {
    min-width: 18rem !important;
  }

  .lt-md\:min-w-80 {
    min-width: 20rem !important;
  }

  .lt-md\:min-w-90 {
    min-width: 24rem !important;
  }

  .lt-md\:min-w-96 {
    min-width: 24rem !important;
  }

  .lt-md\:min-w-100 {
    min-width: 25rem !important;
  }

  .lt-md\:min-w-120 {
    min-width: 30rem !important;
  }

  .lt-md\:min-w-128 {
    min-width: 32rem !important;
  }

  .lt-md\:min-w-140 {
    min-width: 35rem !important;
  }

  .lt-md\:min-w-160 {
    min-width: 40rem !important;
  }

  .lt-md\:min-w-180 {
    min-width: 45rem !important;
  }

  .lt-md\:min-w-192 {
    min-width: 48rem !important;
  }

  .lt-md\:min-w-200 {
    min-width: 50rem !important;
  }

  .lt-md\:min-w-240 {
    min-width: 60rem !important;
  }

  .lt-md\:min-w-256 {
    min-width: 64rem !important;
  }

  .lt-md\:min-w-280 {
    min-width: 70rem !important;
  }

  .lt-md\:min-w-320 {
    min-width: 80rem !important;
  }

  .lt-md\:min-w-360 {
    min-width: 90rem !important;
  }

  .lt-md\:min-w-400 {
    min-width: 100rem !important;
  }

  .lt-md\:min-w-480 {
    min-width: 120rem !important;
  }

  .lt-md\:min-w-full {
    min-width: 100% !important;
  }

  .lt-md\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .lt-md\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .lt-md\:min-w-screen {
    min-width: 100vw !important;
  }

  .lt-md\:min-w-px {
    min-width: 1px !important;
  }

  .lt-md\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .lt-md\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .lt-md\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .lt-md\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .lt-md\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .lt-md\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .lt-md\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .lt-md\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .lt-md\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .lt-md\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .lt-md\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .lt-md\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .lt-md\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .lt-md\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .lt-md\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .lt-md\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .lt-md\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .lt-md\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .lt-md\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .lt-md\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .lt-md\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .lt-md\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .lt-md\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .lt-md\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .lt-md\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .lt-md\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .lt-md\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .lt-md\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .lt-md\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .lt-md\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .lt-md\:min-w-2px {
    min-width: 2px !important;
  }

  .lt-md\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .lt-md\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .lt-md\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .lt-md\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .lt-md\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .lt-md\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .lt-md\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .lt-md\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .lt-md\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .lt-md\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .lt-md\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .lt-md\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .lt-md\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .lt-md\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .lt-md\:opacity-0 {
    opacity: 0 !important;
  }

  .lt-md\:opacity-12 {
    opacity: 0.12 !important;
  }

  .lt-md\:opacity-25 {
    opacity: 0.25 !important;
  }

  .lt-md\:opacity-38 {
    opacity: 0.38 !important;
  }

  .lt-md\:opacity-50 {
    opacity: 0.5 !important;
  }

  .lt-md\:opacity-54 {
    opacity: 0.54 !important;
  }

  .lt-md\:opacity-70 {
    opacity: 0.7 !important;
  }

  .lt-md\:opacity-75 {
    opacity: 0.75 !important;
  }

  .lt-md\:opacity-84 {
    opacity: 0.84 !important;
  }

  .lt-md\:opacity-100 {
    opacity: 1 !important;
  }

  .lt-md\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .lt-md\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .lt-md\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .lt-md\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .lt-md\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .lt-md\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .lt-md\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .lt-md\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .lt-md\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .lt-md\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .lt-md\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .lt-md\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .lt-md\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .lt-md\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .lt-md\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .lt-md\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .lt-md\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .lt-md\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .lt-md\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .lt-md\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .lt-md\:overflow-auto {
    overflow: auto !important;
  }

  .lt-md\:overflow-hidden {
    overflow: hidden !important;
  }

  .lt-md\:overflow-visible {
    overflow: visible !important;
  }

  .lt-md\:overflow-scroll {
    overflow: scroll !important;
  }

  .lt-md\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .lt-md\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .lt-md\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .lt-md\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .lt-md\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .lt-md\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .lt-md\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .lt-md\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .lt-md\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .lt-md\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .lt-md\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .lt-md\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .lt-md\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .lt-md\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .lt-md\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .lt-md\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .lt-md\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .lt-md\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .lt-md\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .lt-md\:p-0 {
    padding: 0 !important;
  }

  .lt-md\:p-1 {
    padding: 0.25rem !important;
  }

  .lt-md\:p-2 {
    padding: 0.5rem !important;
  }

  .lt-md\:p-3 {
    padding: 0.75rem !important;
  }

  .lt-md\:p-4 {
    padding: 1rem !important;
  }

  .lt-md\:p-5 {
    padding: 1.25rem !important;
  }

  .lt-md\:p-6 {
    padding: 1.5rem !important;
  }

  .lt-md\:p-7 {
    padding: 1.75rem !important;
  }

  .lt-md\:p-8 {
    padding: 2rem !important;
  }

  .lt-md\:p-9 {
    padding: 2.25rem !important;
  }

  .lt-md\:p-10 {
    padding: 2.5rem !important;
  }

  .lt-md\:p-11 {
    padding: 2.75rem !important;
  }

  .lt-md\:p-12 {
    padding: 3rem !important;
  }

  .lt-md\:p-13 {
    padding: 3.25rem !important;
  }

  .lt-md\:p-14 {
    padding: 3.5rem !important;
  }

  .lt-md\:p-15 {
    padding: 3.75rem !important;
  }

  .lt-md\:p-16 {
    padding: 4rem !important;
  }

  .lt-md\:p-18 {
    padding: 4.5rem !important;
  }

  .lt-md\:p-20 {
    padding: 5rem !important;
  }

  .lt-md\:p-22 {
    padding: 5.5rem !important;
  }

  .lt-md\:p-24 {
    padding: 6rem !important;
  }

  .lt-md\:p-26 {
    padding: 6.5rem !important;
  }

  .lt-md\:p-28 {
    padding: 7rem !important;
  }

  .lt-md\:p-30 {
    padding: 7.5rem !important;
  }

  .lt-md\:p-32 {
    padding: 8rem !important;
  }

  .lt-md\:p-36 {
    padding: 9rem !important;
  }

  .lt-md\:p-40 {
    padding: 10rem !important;
  }

  .lt-md\:p-44 {
    padding: 11rem !important;
  }

  .lt-md\:p-48 {
    padding: 12rem !important;
  }

  .lt-md\:p-50 {
    padding: 12.5rem !important;
  }

  .lt-md\:p-52 {
    padding: 13rem !important;
  }

  .lt-md\:p-56 {
    padding: 14rem !important;
  }

  .lt-md\:p-60 {
    padding: 15rem !important;
  }

  .lt-md\:p-64 {
    padding: 16rem !important;
  }

  .lt-md\:p-72 {
    padding: 18rem !important;
  }

  .lt-md\:p-80 {
    padding: 20rem !important;
  }

  .lt-md\:p-90 {
    padding: 24rem !important;
  }

  .lt-md\:p-96 {
    padding: 24rem !important;
  }

  .lt-md\:p-100 {
    padding: 25rem !important;
  }

  .lt-md\:p-120 {
    padding: 30rem !important;
  }

  .lt-md\:p-128 {
    padding: 32rem !important;
  }

  .lt-md\:p-140 {
    padding: 35rem !important;
  }

  .lt-md\:p-160 {
    padding: 40rem !important;
  }

  .lt-md\:p-180 {
    padding: 45rem !important;
  }

  .lt-md\:p-192 {
    padding: 48rem !important;
  }

  .lt-md\:p-200 {
    padding: 50rem !important;
  }

  .lt-md\:p-240 {
    padding: 60rem !important;
  }

  .lt-md\:p-256 {
    padding: 64rem !important;
  }

  .lt-md\:p-280 {
    padding: 70rem !important;
  }

  .lt-md\:p-320 {
    padding: 80rem !important;
  }

  .lt-md\:p-360 {
    padding: 90rem !important;
  }

  .lt-md\:p-400 {
    padding: 100rem !important;
  }

  .lt-md\:p-480 {
    padding: 120rem !important;
  }

  .lt-md\:p-px {
    padding: 1px !important;
  }

  .lt-md\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .lt-md\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .lt-md\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .lt-md\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .lt-md\:p-1\/2 {
    padding: 50% !important;
  }

  .lt-md\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .lt-md\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .lt-md\:p-1\/4 {
    padding: 25% !important;
  }

  .lt-md\:p-2\/4 {
    padding: 50% !important;
  }

  .lt-md\:p-3\/4 {
    padding: 75% !important;
  }

  .lt-md\:p-1\/5 {
    padding: 20% !important;
  }

  .lt-md\:p-2\/5 {
    padding: 40% !important;
  }

  .lt-md\:p-3\/5 {
    padding: 60% !important;
  }

  .lt-md\:p-4\/5 {
    padding: 80% !important;
  }

  .lt-md\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .lt-md\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .lt-md\:p-3\/6 {
    padding: 50% !important;
  }

  .lt-md\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .lt-md\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .lt-md\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .lt-md\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .lt-md\:p-3\/12 {
    padding: 25% !important;
  }

  .lt-md\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .lt-md\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .lt-md\:p-6\/12 {
    padding: 50% !important;
  }

  .lt-md\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .lt-md\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .lt-md\:p-9\/12 {
    padding: 75% !important;
  }

  .lt-md\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .lt-md\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .lt-md\:p-full {
    padding: 100% !important;
  }

  .lt-md\:p-2px {
    padding: 2px !important;
  }

  .lt-md\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .lt-md\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .lt-md\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .lt-md\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .lt-md\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .lt-md\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .lt-md\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .lt-md\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .lt-md\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .lt-md\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .lt-md\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .lt-md\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .lt-md\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .lt-md\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .lt-md\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .lt-md\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .lt-md\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lt-md\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .lt-md\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .lt-md\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .lt-md\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lt-md\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .lt-md\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .lt-md\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .lt-md\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lt-md\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .lt-md\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .lt-md\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .lt-md\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .lt-md\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .lt-md\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .lt-md\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .lt-md\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .lt-md\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .lt-md\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .lt-md\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .lt-md\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .lt-md\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .lt-md\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .lt-md\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .lt-md\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .lt-md\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .lt-md\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .lt-md\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .lt-md\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .lt-md\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .lt-md\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .lt-md\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .lt-md\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .lt-md\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .lt-md\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .lt-md\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .lt-md\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .lt-md\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .lt-md\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .lt-md\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .lt-md\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .lt-md\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .lt-md\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .lt-md\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .lt-md\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .lt-md\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .lt-md\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .lt-md\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .lt-md\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .lt-md\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .lt-md\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .lt-md\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .lt-md\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .lt-md\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .lt-md\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .lt-md\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .lt-md\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .lt-md\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .lt-md\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .lt-md\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .lt-md\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .lt-md\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .lt-md\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .lt-md\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .lt-md\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .lt-md\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .lt-md\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .lt-md\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .lt-md\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .lt-md\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .lt-md\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .lt-md\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .lt-md\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .lt-md\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .lt-md\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .lt-md\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .lt-md\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .lt-md\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .lt-md\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .lt-md\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .lt-md\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .lt-md\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .lt-md\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .lt-md\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .lt-md\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .lt-md\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .lt-md\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .lt-md\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .lt-md\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .lt-md\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .lt-md\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .lt-md\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .lt-md\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .lt-md\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .lt-md\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .lt-md\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .lt-md\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .lt-md\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .lt-md\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .lt-md\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .lt-md\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-md\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-md\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lt-md\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lt-md\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lt-md\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lt-md\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .lt-md\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .lt-md\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-md\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-md\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .lt-md\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .lt-md\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .lt-md\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .lt-md\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .lt-md\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .lt-md\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .lt-md\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .lt-md\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .lt-md\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .lt-md\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .lt-md\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .lt-md\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lt-md\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lt-md\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-md\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-md\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lt-md\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lt-md\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .lt-md\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .lt-md\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .lt-md\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .lt-md\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .lt-md\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .lt-md\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .lt-md\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .lt-md\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lt-md\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lt-md\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .lt-md\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .lt-md\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-md\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-md\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .lt-md\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .lt-md\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lt-md\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lt-md\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .lt-md\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .lt-md\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .lt-md\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .lt-md\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .lt-md\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .lt-md\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .lt-md\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .lt-md\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .lt-md\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .lt-md\:pt-0 {
    padding-top: 0 !important;
  }

  .lt-md\:pr-0 {
    padding-right: 0 !important;
  }

  .lt-md\:pb-0 {
    padding-bottom: 0 !important;
  }

  .lt-md\:pl-0 {
    padding-left: 0 !important;
  }

  .lt-md\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .lt-md\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .lt-md\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .lt-md\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .lt-md\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .lt-md\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .lt-md\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .lt-md\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .lt-md\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .lt-md\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .lt-md\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .lt-md\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .lt-md\:pt-4 {
    padding-top: 1rem !important;
  }

  .lt-md\:pr-4 {
    padding-right: 1rem !important;
  }

  .lt-md\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .lt-md\:pl-4 {
    padding-left: 1rem !important;
  }

  .lt-md\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .lt-md\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .lt-md\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .lt-md\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .lt-md\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .lt-md\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .lt-md\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .lt-md\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .lt-md\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .lt-md\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .lt-md\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .lt-md\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .lt-md\:pt-8 {
    padding-top: 2rem !important;
  }

  .lt-md\:pr-8 {
    padding-right: 2rem !important;
  }

  .lt-md\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .lt-md\:pl-8 {
    padding-left: 2rem !important;
  }

  .lt-md\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .lt-md\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .lt-md\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .lt-md\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .lt-md\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .lt-md\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .lt-md\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .lt-md\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .lt-md\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .lt-md\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .lt-md\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .lt-md\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .lt-md\:pt-12 {
    padding-top: 3rem !important;
  }

  .lt-md\:pr-12 {
    padding-right: 3rem !important;
  }

  .lt-md\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .lt-md\:pl-12 {
    padding-left: 3rem !important;
  }

  .lt-md\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .lt-md\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .lt-md\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .lt-md\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .lt-md\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .lt-md\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .lt-md\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .lt-md\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .lt-md\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .lt-md\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .lt-md\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .lt-md\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .lt-md\:pt-16 {
    padding-top: 4rem !important;
  }

  .lt-md\:pr-16 {
    padding-right: 4rem !important;
  }

  .lt-md\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .lt-md\:pl-16 {
    padding-left: 4rem !important;
  }

  .lt-md\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .lt-md\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .lt-md\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .lt-md\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .lt-md\:pt-20 {
    padding-top: 5rem !important;
  }

  .lt-md\:pr-20 {
    padding-right: 5rem !important;
  }

  .lt-md\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .lt-md\:pl-20 {
    padding-left: 5rem !important;
  }

  .lt-md\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .lt-md\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .lt-md\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .lt-md\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .lt-md\:pt-24 {
    padding-top: 6rem !important;
  }

  .lt-md\:pr-24 {
    padding-right: 6rem !important;
  }

  .lt-md\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .lt-md\:pl-24 {
    padding-left: 6rem !important;
  }

  .lt-md\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .lt-md\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .lt-md\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .lt-md\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .lt-md\:pt-28 {
    padding-top: 7rem !important;
  }

  .lt-md\:pr-28 {
    padding-right: 7rem !important;
  }

  .lt-md\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .lt-md\:pl-28 {
    padding-left: 7rem !important;
  }

  .lt-md\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .lt-md\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .lt-md\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .lt-md\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .lt-md\:pt-32 {
    padding-top: 8rem !important;
  }

  .lt-md\:pr-32 {
    padding-right: 8rem !important;
  }

  .lt-md\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .lt-md\:pl-32 {
    padding-left: 8rem !important;
  }

  .lt-md\:pt-36 {
    padding-top: 9rem !important;
  }

  .lt-md\:pr-36 {
    padding-right: 9rem !important;
  }

  .lt-md\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .lt-md\:pl-36 {
    padding-left: 9rem !important;
  }

  .lt-md\:pt-40 {
    padding-top: 10rem !important;
  }

  .lt-md\:pr-40 {
    padding-right: 10rem !important;
  }

  .lt-md\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .lt-md\:pl-40 {
    padding-left: 10rem !important;
  }

  .lt-md\:pt-44 {
    padding-top: 11rem !important;
  }

  .lt-md\:pr-44 {
    padding-right: 11rem !important;
  }

  .lt-md\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .lt-md\:pl-44 {
    padding-left: 11rem !important;
  }

  .lt-md\:pt-48 {
    padding-top: 12rem !important;
  }

  .lt-md\:pr-48 {
    padding-right: 12rem !important;
  }

  .lt-md\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .lt-md\:pl-48 {
    padding-left: 12rem !important;
  }

  .lt-md\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .lt-md\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .lt-md\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .lt-md\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .lt-md\:pt-52 {
    padding-top: 13rem !important;
  }

  .lt-md\:pr-52 {
    padding-right: 13rem !important;
  }

  .lt-md\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .lt-md\:pl-52 {
    padding-left: 13rem !important;
  }

  .lt-md\:pt-56 {
    padding-top: 14rem !important;
  }

  .lt-md\:pr-56 {
    padding-right: 14rem !important;
  }

  .lt-md\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .lt-md\:pl-56 {
    padding-left: 14rem !important;
  }

  .lt-md\:pt-60 {
    padding-top: 15rem !important;
  }

  .lt-md\:pr-60 {
    padding-right: 15rem !important;
  }

  .lt-md\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .lt-md\:pl-60 {
    padding-left: 15rem !important;
  }

  .lt-md\:pt-64 {
    padding-top: 16rem !important;
  }

  .lt-md\:pr-64 {
    padding-right: 16rem !important;
  }

  .lt-md\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .lt-md\:pl-64 {
    padding-left: 16rem !important;
  }

  .lt-md\:pt-72 {
    padding-top: 18rem !important;
  }

  .lt-md\:pr-72 {
    padding-right: 18rem !important;
  }

  .lt-md\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .lt-md\:pl-72 {
    padding-left: 18rem !important;
  }

  .lt-md\:pt-80 {
    padding-top: 20rem !important;
  }

  .lt-md\:pr-80 {
    padding-right: 20rem !important;
  }

  .lt-md\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .lt-md\:pl-80 {
    padding-left: 20rem !important;
  }

  .lt-md\:pt-90 {
    padding-top: 24rem !important;
  }

  .lt-md\:pr-90 {
    padding-right: 24rem !important;
  }

  .lt-md\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .lt-md\:pl-90 {
    padding-left: 24rem !important;
  }

  .lt-md\:pt-96 {
    padding-top: 24rem !important;
  }

  .lt-md\:pr-96 {
    padding-right: 24rem !important;
  }

  .lt-md\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .lt-md\:pl-96 {
    padding-left: 24rem !important;
  }

  .lt-md\:pt-100 {
    padding-top: 25rem !important;
  }

  .lt-md\:pr-100 {
    padding-right: 25rem !important;
  }

  .lt-md\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .lt-md\:pl-100 {
    padding-left: 25rem !important;
  }

  .lt-md\:pt-120 {
    padding-top: 30rem !important;
  }

  .lt-md\:pr-120 {
    padding-right: 30rem !important;
  }

  .lt-md\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .lt-md\:pl-120 {
    padding-left: 30rem !important;
  }

  .lt-md\:pt-128 {
    padding-top: 32rem !important;
  }

  .lt-md\:pr-128 {
    padding-right: 32rem !important;
  }

  .lt-md\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .lt-md\:pl-128 {
    padding-left: 32rem !important;
  }

  .lt-md\:pt-140 {
    padding-top: 35rem !important;
  }

  .lt-md\:pr-140 {
    padding-right: 35rem !important;
  }

  .lt-md\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .lt-md\:pl-140 {
    padding-left: 35rem !important;
  }

  .lt-md\:pt-160 {
    padding-top: 40rem !important;
  }

  .lt-md\:pr-160 {
    padding-right: 40rem !important;
  }

  .lt-md\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .lt-md\:pl-160 {
    padding-left: 40rem !important;
  }

  .lt-md\:pt-180 {
    padding-top: 45rem !important;
  }

  .lt-md\:pr-180 {
    padding-right: 45rem !important;
  }

  .lt-md\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .lt-md\:pl-180 {
    padding-left: 45rem !important;
  }

  .lt-md\:pt-192 {
    padding-top: 48rem !important;
  }

  .lt-md\:pr-192 {
    padding-right: 48rem !important;
  }

  .lt-md\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .lt-md\:pl-192 {
    padding-left: 48rem !important;
  }

  .lt-md\:pt-200 {
    padding-top: 50rem !important;
  }

  .lt-md\:pr-200 {
    padding-right: 50rem !important;
  }

  .lt-md\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .lt-md\:pl-200 {
    padding-left: 50rem !important;
  }

  .lt-md\:pt-240 {
    padding-top: 60rem !important;
  }

  .lt-md\:pr-240 {
    padding-right: 60rem !important;
  }

  .lt-md\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .lt-md\:pl-240 {
    padding-left: 60rem !important;
  }

  .lt-md\:pt-256 {
    padding-top: 64rem !important;
  }

  .lt-md\:pr-256 {
    padding-right: 64rem !important;
  }

  .lt-md\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .lt-md\:pl-256 {
    padding-left: 64rem !important;
  }

  .lt-md\:pt-280 {
    padding-top: 70rem !important;
  }

  .lt-md\:pr-280 {
    padding-right: 70rem !important;
  }

  .lt-md\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .lt-md\:pl-280 {
    padding-left: 70rem !important;
  }

  .lt-md\:pt-320 {
    padding-top: 80rem !important;
  }

  .lt-md\:pr-320 {
    padding-right: 80rem !important;
  }

  .lt-md\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .lt-md\:pl-320 {
    padding-left: 80rem !important;
  }

  .lt-md\:pt-360 {
    padding-top: 90rem !important;
  }

  .lt-md\:pr-360 {
    padding-right: 90rem !important;
  }

  .lt-md\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .lt-md\:pl-360 {
    padding-left: 90rem !important;
  }

  .lt-md\:pt-400 {
    padding-top: 100rem !important;
  }

  .lt-md\:pr-400 {
    padding-right: 100rem !important;
  }

  .lt-md\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .lt-md\:pl-400 {
    padding-left: 100rem !important;
  }

  .lt-md\:pt-480 {
    padding-top: 120rem !important;
  }

  .lt-md\:pr-480 {
    padding-right: 120rem !important;
  }

  .lt-md\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .lt-md\:pl-480 {
    padding-left: 120rem !important;
  }

  .lt-md\:pt-px {
    padding-top: 1px !important;
  }

  .lt-md\:pr-px {
    padding-right: 1px !important;
  }

  .lt-md\:pb-px {
    padding-bottom: 1px !important;
  }

  .lt-md\:pl-px {
    padding-left: 1px !important;
  }

  .lt-md\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .lt-md\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .lt-md\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .lt-md\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .lt-md\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .lt-md\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .lt-md\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .lt-md\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .lt-md\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .lt-md\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .lt-md\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .lt-md\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .lt-md\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .lt-md\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .lt-md\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .lt-md\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .lt-md\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .lt-md\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .lt-md\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .lt-md\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .lt-md\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .lt-md\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .lt-md\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .lt-md\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .lt-md\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .lt-md\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .lt-md\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .lt-md\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .lt-md\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .lt-md\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .lt-md\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .lt-md\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .lt-md\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .lt-md\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .lt-md\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .lt-md\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .lt-md\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .lt-md\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .lt-md\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .lt-md\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .lt-md\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .lt-md\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .lt-md\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .lt-md\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .lt-md\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .lt-md\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .lt-md\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .lt-md\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .lt-md\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .lt-md\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .lt-md\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .lt-md\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .lt-md\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .lt-md\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .lt-md\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .lt-md\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .lt-md\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .lt-md\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .lt-md\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .lt-md\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .lt-md\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .lt-md\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .lt-md\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .lt-md\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .lt-md\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .lt-md\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .lt-md\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .lt-md\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .lt-md\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .lt-md\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .lt-md\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .lt-md\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .lt-md\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .lt-md\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .lt-md\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .lt-md\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .lt-md\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .lt-md\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .lt-md\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .lt-md\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .lt-md\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .lt-md\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .lt-md\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .lt-md\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .lt-md\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .lt-md\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .lt-md\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .lt-md\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .lt-md\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .lt-md\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .lt-md\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .lt-md\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .lt-md\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .lt-md\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .lt-md\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .lt-md\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .lt-md\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .lt-md\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .lt-md\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .lt-md\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .lt-md\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .lt-md\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .lt-md\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .lt-md\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .lt-md\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .lt-md\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .lt-md\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .lt-md\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .lt-md\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .lt-md\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .lt-md\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .lt-md\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .lt-md\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .lt-md\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .lt-md\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .lt-md\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .lt-md\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .lt-md\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .lt-md\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .lt-md\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .lt-md\:pt-full {
    padding-top: 100% !important;
  }

  .lt-md\:pr-full {
    padding-right: 100% !important;
  }

  .lt-md\:pb-full {
    padding-bottom: 100% !important;
  }

  .lt-md\:pl-full {
    padding-left: 100% !important;
  }

  .lt-md\:pt-2px {
    padding-top: 2px !important;
  }

  .lt-md\:pr-2px {
    padding-right: 2px !important;
  }

  .lt-md\:pb-2px {
    padding-bottom: 2px !important;
  }

  .lt-md\:pl-2px {
    padding-left: 2px !important;
  }

  .lt-md\:static {
    position: static !important;
  }

  .lt-md\:fixed {
    position: fixed !important;
  }

  .lt-md\:absolute {
    position: absolute !important;
  }

  .lt-md\:relative {
    position: relative !important;
  }

  .lt-md\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .lt-md\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .lt-md\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .lt-md\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .lt-md\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .lt-md\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .lt-md\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .lt-md\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .lt-md\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .lt-md\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .lt-md\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .lt-md\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .lt-md\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .lt-md\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .lt-md\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .lt-md\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .lt-md\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .lt-md\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .lt-md\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .lt-md\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .lt-md\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .lt-md\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .lt-md\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .lt-md\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .lt-md\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .lt-md\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .lt-md\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .lt-md\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .lt-md\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .lt-md\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .lt-md\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .lt-md\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .lt-md\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .lt-md\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .lt-md\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .lt-md\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .lt-md\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .lt-md\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .lt-md\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .lt-md\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .lt-md\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .lt-md\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .lt-md\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .lt-md\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .lt-md\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .lt-md\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .lt-md\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .lt-md\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .lt-md\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .lt-md\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .lt-md\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .lt-md\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .lt-md\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .lt-md\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .lt-md\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .lt-md\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .lt-md\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .lt-md\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .lt-md\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .lt-md\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .lt-md\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-md\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-md\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-md\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .lt-md\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-md\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .lt-md\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .lt-md\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .lt-md\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .lt-md\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .lt-md\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-md\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-md\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-md\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-md\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-md\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .lt-md\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-md\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .lt-md\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-md\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .lt-md\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-md\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .lt-md\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-md\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .lt-md\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-md\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .lt-md\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .lt-md\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .lt-md\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .lt-md\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .lt-md\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .lt-md\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .lt-md\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .lt-md\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .lt-md\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .lt-md\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .lt-md\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .lt-md\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .lt-md\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .lt-md\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .lt-md\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .lt-md\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .lt-md\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .lt-md\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .lt-md\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .lt-md\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .lt-md\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .lt-md\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .lt-md\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .lt-md\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .lt-md\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .lt-md\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .lt-md\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .lt-md\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .lt-md\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .lt-md\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .lt-md\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .lt-md\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .lt-md\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .lt-md\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .lt-md\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .lt-md\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .lt-md\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .lt-md\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .lt-md\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .lt-md\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .lt-md\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .lt-md\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .lt-md\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .lt-md\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .lt-md\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .lt-md\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .lt-md\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .lt-md\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .lt-md\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .lt-md\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .lt-md\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .lt-md\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .lt-md\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .lt-md\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .lt-md\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .lt-md\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .lt-md\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .lt-md\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .lt-md\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .lt-md\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .lt-md\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .lt-md\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .lt-md\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .lt-md\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .lt-md\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .lt-md\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .lt-md\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .lt-md\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .lt-md\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .lt-md\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .lt-md\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .lt-md\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .lt-md\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .lt-md\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .lt-md\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .lt-md\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .lt-md\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .lt-md\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .lt-md\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .lt-md\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .lt-md\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .lt-md\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .lt-md\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .lt-md\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .lt-md\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .lt-md\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .lt-md\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .lt-md\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .lt-md\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .lt-md\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .lt-md\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .lt-md\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .lt-md\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .lt-md\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .lt-md\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .lt-md\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .lt-md\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .lt-md\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .lt-md\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .lt-md\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .lt-md\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .lt-md\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .lt-md\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .lt-md\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .lt-md\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .lt-md\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .lt-md\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .lt-md\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .lt-md\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .lt-md\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .lt-md\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .lt-md\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .lt-md\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .lt-md\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .lt-md\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .lt-md\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .lt-md\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .lt-md\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .lt-md\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .lt-md\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .lt-md\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-md\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-md\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lt-md\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-md\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lt-md\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-md\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .lt-md\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .lt-md\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-md\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-md\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .lt-md\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .lt-md\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .lt-md\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .lt-md\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .lt-md\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .lt-md\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .lt-md\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .lt-md\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .lt-md\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .lt-md\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .lt-md\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-md\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lt-md\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-md\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-md\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-md\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lt-md\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-md\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .lt-md\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-md\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .lt-md\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .lt-md\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .lt-md\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-md\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .lt-md\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .lt-md\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lt-md\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-md\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .lt-md\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .lt-md\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-md\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-md\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .lt-md\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .lt-md\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lt-md\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-md\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .lt-md\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .lt-md\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .lt-md\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-md\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .lt-md\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .lt-md\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .lt-md\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .lt-md\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .lt-md\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .lt-md\:top-0 {
    top: 0 !important;
  }

  .lt-md\:right-0 {
    right: 0 !important;
  }

  .lt-md\:bottom-0 {
    bottom: 0 !important;
  }

  .lt-md\:left-0 {
    left: 0 !important;
  }

  .lt-md\:top-1 {
    top: 0.25rem !important;
  }

  .lt-md\:right-1 {
    right: 0.25rem !important;
  }

  .lt-md\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .lt-md\:left-1 {
    left: 0.25rem !important;
  }

  .lt-md\:top-2 {
    top: 0.5rem !important;
  }

  .lt-md\:right-2 {
    right: 0.5rem !important;
  }

  .lt-md\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .lt-md\:left-2 {
    left: 0.5rem !important;
  }

  .lt-md\:top-3 {
    top: 0.75rem !important;
  }

  .lt-md\:right-3 {
    right: 0.75rem !important;
  }

  .lt-md\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .lt-md\:left-3 {
    left: 0.75rem !important;
  }

  .lt-md\:top-4 {
    top: 1rem !important;
  }

  .lt-md\:right-4 {
    right: 1rem !important;
  }

  .lt-md\:bottom-4 {
    bottom: 1rem !important;
  }

  .lt-md\:left-4 {
    left: 1rem !important;
  }

  .lt-md\:top-5 {
    top: 1.25rem !important;
  }

  .lt-md\:right-5 {
    right: 1.25rem !important;
  }

  .lt-md\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .lt-md\:left-5 {
    left: 1.25rem !important;
  }

  .lt-md\:top-6 {
    top: 1.5rem !important;
  }

  .lt-md\:right-6 {
    right: 1.5rem !important;
  }

  .lt-md\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .lt-md\:left-6 {
    left: 1.5rem !important;
  }

  .lt-md\:top-7 {
    top: 1.75rem !important;
  }

  .lt-md\:right-7 {
    right: 1.75rem !important;
  }

  .lt-md\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .lt-md\:left-7 {
    left: 1.75rem !important;
  }

  .lt-md\:top-8 {
    top: 2rem !important;
  }

  .lt-md\:right-8 {
    right: 2rem !important;
  }

  .lt-md\:bottom-8 {
    bottom: 2rem !important;
  }

  .lt-md\:left-8 {
    left: 2rem !important;
  }

  .lt-md\:top-9 {
    top: 2.25rem !important;
  }

  .lt-md\:right-9 {
    right: 2.25rem !important;
  }

  .lt-md\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .lt-md\:left-9 {
    left: 2.25rem !important;
  }

  .lt-md\:top-10 {
    top: 2.5rem !important;
  }

  .lt-md\:right-10 {
    right: 2.5rem !important;
  }

  .lt-md\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .lt-md\:left-10 {
    left: 2.5rem !important;
  }

  .lt-md\:top-11 {
    top: 2.75rem !important;
  }

  .lt-md\:right-11 {
    right: 2.75rem !important;
  }

  .lt-md\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .lt-md\:left-11 {
    left: 2.75rem !important;
  }

  .lt-md\:top-12 {
    top: 3rem !important;
  }

  .lt-md\:right-12 {
    right: 3rem !important;
  }

  .lt-md\:bottom-12 {
    bottom: 3rem !important;
  }

  .lt-md\:left-12 {
    left: 3rem !important;
  }

  .lt-md\:top-13 {
    top: 3.25rem !important;
  }

  .lt-md\:right-13 {
    right: 3.25rem !important;
  }

  .lt-md\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .lt-md\:left-13 {
    left: 3.25rem !important;
  }

  .lt-md\:top-14 {
    top: 3.5rem !important;
  }

  .lt-md\:right-14 {
    right: 3.5rem !important;
  }

  .lt-md\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .lt-md\:left-14 {
    left: 3.5rem !important;
  }

  .lt-md\:top-15 {
    top: 3.75rem !important;
  }

  .lt-md\:right-15 {
    right: 3.75rem !important;
  }

  .lt-md\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .lt-md\:left-15 {
    left: 3.75rem !important;
  }

  .lt-md\:top-16 {
    top: 4rem !important;
  }

  .lt-md\:right-16 {
    right: 4rem !important;
  }

  .lt-md\:bottom-16 {
    bottom: 4rem !important;
  }

  .lt-md\:left-16 {
    left: 4rem !important;
  }

  .lt-md\:top-18 {
    top: 4.5rem !important;
  }

  .lt-md\:right-18 {
    right: 4.5rem !important;
  }

  .lt-md\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .lt-md\:left-18 {
    left: 4.5rem !important;
  }

  .lt-md\:top-20 {
    top: 5rem !important;
  }

  .lt-md\:right-20 {
    right: 5rem !important;
  }

  .lt-md\:bottom-20 {
    bottom: 5rem !important;
  }

  .lt-md\:left-20 {
    left: 5rem !important;
  }

  .lt-md\:top-22 {
    top: 5.5rem !important;
  }

  .lt-md\:right-22 {
    right: 5.5rem !important;
  }

  .lt-md\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .lt-md\:left-22 {
    left: 5.5rem !important;
  }

  .lt-md\:top-24 {
    top: 6rem !important;
  }

  .lt-md\:right-24 {
    right: 6rem !important;
  }

  .lt-md\:bottom-24 {
    bottom: 6rem !important;
  }

  .lt-md\:left-24 {
    left: 6rem !important;
  }

  .lt-md\:top-26 {
    top: 6.5rem !important;
  }

  .lt-md\:right-26 {
    right: 6.5rem !important;
  }

  .lt-md\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .lt-md\:left-26 {
    left: 6.5rem !important;
  }

  .lt-md\:top-28 {
    top: 7rem !important;
  }

  .lt-md\:right-28 {
    right: 7rem !important;
  }

  .lt-md\:bottom-28 {
    bottom: 7rem !important;
  }

  .lt-md\:left-28 {
    left: 7rem !important;
  }

  .lt-md\:top-30 {
    top: 7.5rem !important;
  }

  .lt-md\:right-30 {
    right: 7.5rem !important;
  }

  .lt-md\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .lt-md\:left-30 {
    left: 7.5rem !important;
  }

  .lt-md\:top-32 {
    top: 8rem !important;
  }

  .lt-md\:right-32 {
    right: 8rem !important;
  }

  .lt-md\:bottom-32 {
    bottom: 8rem !important;
  }

  .lt-md\:left-32 {
    left: 8rem !important;
  }

  .lt-md\:top-36 {
    top: 9rem !important;
  }

  .lt-md\:right-36 {
    right: 9rem !important;
  }

  .lt-md\:bottom-36 {
    bottom: 9rem !important;
  }

  .lt-md\:left-36 {
    left: 9rem !important;
  }

  .lt-md\:top-40 {
    top: 10rem !important;
  }

  .lt-md\:right-40 {
    right: 10rem !important;
  }

  .lt-md\:bottom-40 {
    bottom: 10rem !important;
  }

  .lt-md\:left-40 {
    left: 10rem !important;
  }

  .lt-md\:top-44 {
    top: 11rem !important;
  }

  .lt-md\:right-44 {
    right: 11rem !important;
  }

  .lt-md\:bottom-44 {
    bottom: 11rem !important;
  }

  .lt-md\:left-44 {
    left: 11rem !important;
  }

  .lt-md\:top-48 {
    top: 12rem !important;
  }

  .lt-md\:right-48 {
    right: 12rem !important;
  }

  .lt-md\:bottom-48 {
    bottom: 12rem !important;
  }

  .lt-md\:left-48 {
    left: 12rem !important;
  }

  .lt-md\:top-50 {
    top: 12.5rem !important;
  }

  .lt-md\:right-50 {
    right: 12.5rem !important;
  }

  .lt-md\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .lt-md\:left-50 {
    left: 12.5rem !important;
  }

  .lt-md\:top-52 {
    top: 13rem !important;
  }

  .lt-md\:right-52 {
    right: 13rem !important;
  }

  .lt-md\:bottom-52 {
    bottom: 13rem !important;
  }

  .lt-md\:left-52 {
    left: 13rem !important;
  }

  .lt-md\:top-56 {
    top: 14rem !important;
  }

  .lt-md\:right-56 {
    right: 14rem !important;
  }

  .lt-md\:bottom-56 {
    bottom: 14rem !important;
  }

  .lt-md\:left-56 {
    left: 14rem !important;
  }

  .lt-md\:top-60 {
    top: 15rem !important;
  }

  .lt-md\:right-60 {
    right: 15rem !important;
  }

  .lt-md\:bottom-60 {
    bottom: 15rem !important;
  }

  .lt-md\:left-60 {
    left: 15rem !important;
  }

  .lt-md\:top-64 {
    top: 16rem !important;
  }

  .lt-md\:right-64 {
    right: 16rem !important;
  }

  .lt-md\:bottom-64 {
    bottom: 16rem !important;
  }

  .lt-md\:left-64 {
    left: 16rem !important;
  }

  .lt-md\:top-72 {
    top: 18rem !important;
  }

  .lt-md\:right-72 {
    right: 18rem !important;
  }

  .lt-md\:bottom-72 {
    bottom: 18rem !important;
  }

  .lt-md\:left-72 {
    left: 18rem !important;
  }

  .lt-md\:top-80 {
    top: 20rem !important;
  }

  .lt-md\:right-80 {
    right: 20rem !important;
  }

  .lt-md\:bottom-80 {
    bottom: 20rem !important;
  }

  .lt-md\:left-80 {
    left: 20rem !important;
  }

  .lt-md\:top-90 {
    top: 24rem !important;
  }

  .lt-md\:right-90 {
    right: 24rem !important;
  }

  .lt-md\:bottom-90 {
    bottom: 24rem !important;
  }

  .lt-md\:left-90 {
    left: 24rem !important;
  }

  .lt-md\:top-96 {
    top: 24rem !important;
  }

  .lt-md\:right-96 {
    right: 24rem !important;
  }

  .lt-md\:bottom-96 {
    bottom: 24rem !important;
  }

  .lt-md\:left-96 {
    left: 24rem !important;
  }

  .lt-md\:top-100 {
    top: 25rem !important;
  }

  .lt-md\:right-100 {
    right: 25rem !important;
  }

  .lt-md\:bottom-100 {
    bottom: 25rem !important;
  }

  .lt-md\:left-100 {
    left: 25rem !important;
  }

  .lt-md\:top-120 {
    top: 30rem !important;
  }

  .lt-md\:right-120 {
    right: 30rem !important;
  }

  .lt-md\:bottom-120 {
    bottom: 30rem !important;
  }

  .lt-md\:left-120 {
    left: 30rem !important;
  }

  .lt-md\:top-128 {
    top: 32rem !important;
  }

  .lt-md\:right-128 {
    right: 32rem !important;
  }

  .lt-md\:bottom-128 {
    bottom: 32rem !important;
  }

  .lt-md\:left-128 {
    left: 32rem !important;
  }

  .lt-md\:top-140 {
    top: 35rem !important;
  }

  .lt-md\:right-140 {
    right: 35rem !important;
  }

  .lt-md\:bottom-140 {
    bottom: 35rem !important;
  }

  .lt-md\:left-140 {
    left: 35rem !important;
  }

  .lt-md\:top-160 {
    top: 40rem !important;
  }

  .lt-md\:right-160 {
    right: 40rem !important;
  }

  .lt-md\:bottom-160 {
    bottom: 40rem !important;
  }

  .lt-md\:left-160 {
    left: 40rem !important;
  }

  .lt-md\:top-180 {
    top: 45rem !important;
  }

  .lt-md\:right-180 {
    right: 45rem !important;
  }

  .lt-md\:bottom-180 {
    bottom: 45rem !important;
  }

  .lt-md\:left-180 {
    left: 45rem !important;
  }

  .lt-md\:top-192 {
    top: 48rem !important;
  }

  .lt-md\:right-192 {
    right: 48rem !important;
  }

  .lt-md\:bottom-192 {
    bottom: 48rem !important;
  }

  .lt-md\:left-192 {
    left: 48rem !important;
  }

  .lt-md\:top-200 {
    top: 50rem !important;
  }

  .lt-md\:right-200 {
    right: 50rem !important;
  }

  .lt-md\:bottom-200 {
    bottom: 50rem !important;
  }

  .lt-md\:left-200 {
    left: 50rem !important;
  }

  .lt-md\:top-240 {
    top: 60rem !important;
  }

  .lt-md\:right-240 {
    right: 60rem !important;
  }

  .lt-md\:bottom-240 {
    bottom: 60rem !important;
  }

  .lt-md\:left-240 {
    left: 60rem !important;
  }

  .lt-md\:top-256 {
    top: 64rem !important;
  }

  .lt-md\:right-256 {
    right: 64rem !important;
  }

  .lt-md\:bottom-256 {
    bottom: 64rem !important;
  }

  .lt-md\:left-256 {
    left: 64rem !important;
  }

  .lt-md\:top-280 {
    top: 70rem !important;
  }

  .lt-md\:right-280 {
    right: 70rem !important;
  }

  .lt-md\:bottom-280 {
    bottom: 70rem !important;
  }

  .lt-md\:left-280 {
    left: 70rem !important;
  }

  .lt-md\:top-320 {
    top: 80rem !important;
  }

  .lt-md\:right-320 {
    right: 80rem !important;
  }

  .lt-md\:bottom-320 {
    bottom: 80rem !important;
  }

  .lt-md\:left-320 {
    left: 80rem !important;
  }

  .lt-md\:top-360 {
    top: 90rem !important;
  }

  .lt-md\:right-360 {
    right: 90rem !important;
  }

  .lt-md\:bottom-360 {
    bottom: 90rem !important;
  }

  .lt-md\:left-360 {
    left: 90rem !important;
  }

  .lt-md\:top-400 {
    top: 100rem !important;
  }

  .lt-md\:right-400 {
    right: 100rem !important;
  }

  .lt-md\:bottom-400 {
    bottom: 100rem !important;
  }

  .lt-md\:left-400 {
    left: 100rem !important;
  }

  .lt-md\:top-480 {
    top: 120rem !important;
  }

  .lt-md\:right-480 {
    right: 120rem !important;
  }

  .lt-md\:bottom-480 {
    bottom: 120rem !important;
  }

  .lt-md\:left-480 {
    left: 120rem !important;
  }

  .lt-md\:top-auto {
    top: auto !important;
  }

  .lt-md\:right-auto {
    right: auto !important;
  }

  .lt-md\:bottom-auto {
    bottom: auto !important;
  }

  .lt-md\:left-auto {
    left: auto !important;
  }

  .lt-md\:top-px {
    top: 1px !important;
  }

  .lt-md\:right-px {
    right: 1px !important;
  }

  .lt-md\:bottom-px {
    bottom: 1px !important;
  }

  .lt-md\:left-px {
    left: 1px !important;
  }

  .lt-md\:top-0\.5 {
    top: 0.125rem !important;
  }

  .lt-md\:right-0\.5 {
    right: 0.125rem !important;
  }

  .lt-md\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .lt-md\:left-0\.5 {
    left: 0.125rem !important;
  }

  .lt-md\:top-1\.5 {
    top: 0.375rem !important;
  }

  .lt-md\:right-1\.5 {
    right: 0.375rem !important;
  }

  .lt-md\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .lt-md\:left-1\.5 {
    left: 0.375rem !important;
  }

  .lt-md\:top-2\.5 {
    top: 0.625rem !important;
  }

  .lt-md\:right-2\.5 {
    right: 0.625rem !important;
  }

  .lt-md\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .lt-md\:left-2\.5 {
    left: 0.625rem !important;
  }

  .lt-md\:top-3\.5 {
    top: 0.875rem !important;
  }

  .lt-md\:right-3\.5 {
    right: 0.875rem !important;
  }

  .lt-md\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .lt-md\:left-3\.5 {
    left: 0.875rem !important;
  }

  .lt-md\:top-1\/2 {
    top: 50% !important;
  }

  .lt-md\:right-1\/2 {
    right: 50% !important;
  }

  .lt-md\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .lt-md\:left-1\/2 {
    left: 50% !important;
  }

  .lt-md\:top-1\/3 {
    top: 33.333333% !important;
  }

  .lt-md\:right-1\/3 {
    right: 33.333333% !important;
  }

  .lt-md\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .lt-md\:left-1\/3 {
    left: 33.333333% !important;
  }

  .lt-md\:top-2\/3 {
    top: 66.666667% !important;
  }

  .lt-md\:right-2\/3 {
    right: 66.666667% !important;
  }

  .lt-md\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .lt-md\:left-2\/3 {
    left: 66.666667% !important;
  }

  .lt-md\:top-1\/4 {
    top: 25% !important;
  }

  .lt-md\:right-1\/4 {
    right: 25% !important;
  }

  .lt-md\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .lt-md\:left-1\/4 {
    left: 25% !important;
  }

  .lt-md\:top-2\/4 {
    top: 50% !important;
  }

  .lt-md\:right-2\/4 {
    right: 50% !important;
  }

  .lt-md\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .lt-md\:left-2\/4 {
    left: 50% !important;
  }

  .lt-md\:top-3\/4 {
    top: 75% !important;
  }

  .lt-md\:right-3\/4 {
    right: 75% !important;
  }

  .lt-md\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .lt-md\:left-3\/4 {
    left: 75% !important;
  }

  .lt-md\:top-1\/5 {
    top: 20% !important;
  }

  .lt-md\:right-1\/5 {
    right: 20% !important;
  }

  .lt-md\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .lt-md\:left-1\/5 {
    left: 20% !important;
  }

  .lt-md\:top-2\/5 {
    top: 40% !important;
  }

  .lt-md\:right-2\/5 {
    right: 40% !important;
  }

  .lt-md\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .lt-md\:left-2\/5 {
    left: 40% !important;
  }

  .lt-md\:top-3\/5 {
    top: 60% !important;
  }

  .lt-md\:right-3\/5 {
    right: 60% !important;
  }

  .lt-md\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .lt-md\:left-3\/5 {
    left: 60% !important;
  }

  .lt-md\:top-4\/5 {
    top: 80% !important;
  }

  .lt-md\:right-4\/5 {
    right: 80% !important;
  }

  .lt-md\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .lt-md\:left-4\/5 {
    left: 80% !important;
  }

  .lt-md\:top-1\/6 {
    top: 16.666667% !important;
  }

  .lt-md\:right-1\/6 {
    right: 16.666667% !important;
  }

  .lt-md\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .lt-md\:left-1\/6 {
    left: 16.666667% !important;
  }

  .lt-md\:top-2\/6 {
    top: 33.333333% !important;
  }

  .lt-md\:right-2\/6 {
    right: 33.333333% !important;
  }

  .lt-md\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .lt-md\:left-2\/6 {
    left: 33.333333% !important;
  }

  .lt-md\:top-3\/6 {
    top: 50% !important;
  }

  .lt-md\:right-3\/6 {
    right: 50% !important;
  }

  .lt-md\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .lt-md\:left-3\/6 {
    left: 50% !important;
  }

  .lt-md\:top-4\/6 {
    top: 66.666667% !important;
  }

  .lt-md\:right-4\/6 {
    right: 66.666667% !important;
  }

  .lt-md\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .lt-md\:left-4\/6 {
    left: 66.666667% !important;
  }

  .lt-md\:top-5\/6 {
    top: 83.333333% !important;
  }

  .lt-md\:right-5\/6 {
    right: 83.333333% !important;
  }

  .lt-md\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .lt-md\:left-5\/6 {
    left: 83.333333% !important;
  }

  .lt-md\:top-1\/12 {
    top: 8.333333% !important;
  }

  .lt-md\:right-1\/12 {
    right: 8.333333% !important;
  }

  .lt-md\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .lt-md\:left-1\/12 {
    left: 8.333333% !important;
  }

  .lt-md\:top-2\/12 {
    top: 16.666667% !important;
  }

  .lt-md\:right-2\/12 {
    right: 16.666667% !important;
  }

  .lt-md\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .lt-md\:left-2\/12 {
    left: 16.666667% !important;
  }

  .lt-md\:top-3\/12 {
    top: 25% !important;
  }

  .lt-md\:right-3\/12 {
    right: 25% !important;
  }

  .lt-md\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .lt-md\:left-3\/12 {
    left: 25% !important;
  }

  .lt-md\:top-4\/12 {
    top: 33.333333% !important;
  }

  .lt-md\:right-4\/12 {
    right: 33.333333% !important;
  }

  .lt-md\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .lt-md\:left-4\/12 {
    left: 33.333333% !important;
  }

  .lt-md\:top-5\/12 {
    top: 41.666667% !important;
  }

  .lt-md\:right-5\/12 {
    right: 41.666667% !important;
  }

  .lt-md\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .lt-md\:left-5\/12 {
    left: 41.666667% !important;
  }

  .lt-md\:top-6\/12 {
    top: 50% !important;
  }

  .lt-md\:right-6\/12 {
    right: 50% !important;
  }

  .lt-md\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .lt-md\:left-6\/12 {
    left: 50% !important;
  }

  .lt-md\:top-7\/12 {
    top: 58.333333% !important;
  }

  .lt-md\:right-7\/12 {
    right: 58.333333% !important;
  }

  .lt-md\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .lt-md\:left-7\/12 {
    left: 58.333333% !important;
  }

  .lt-md\:top-8\/12 {
    top: 66.666667% !important;
  }

  .lt-md\:right-8\/12 {
    right: 66.666667% !important;
  }

  .lt-md\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .lt-md\:left-8\/12 {
    left: 66.666667% !important;
  }

  .lt-md\:top-9\/12 {
    top: 75% !important;
  }

  .lt-md\:right-9\/12 {
    right: 75% !important;
  }

  .lt-md\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .lt-md\:left-9\/12 {
    left: 75% !important;
  }

  .lt-md\:top-10\/12 {
    top: 83.333333% !important;
  }

  .lt-md\:right-10\/12 {
    right: 83.333333% !important;
  }

  .lt-md\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .lt-md\:left-10\/12 {
    left: 83.333333% !important;
  }

  .lt-md\:top-11\/12 {
    top: 91.666667% !important;
  }

  .lt-md\:right-11\/12 {
    right: 91.666667% !important;
  }

  .lt-md\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .lt-md\:left-11\/12 {
    left: 91.666667% !important;
  }

  .lt-md\:top-full {
    top: 100% !important;
  }

  .lt-md\:right-full {
    right: 100% !important;
  }

  .lt-md\:bottom-full {
    bottom: 100% !important;
  }

  .lt-md\:left-full {
    left: 100% !important;
  }

  .lt-md\:top-2px {
    top: 2px !important;
  }

  .lt-md\:right-2px {
    right: 2px !important;
  }

  .lt-md\:bottom-2px {
    bottom: 2px !important;
  }

  .lt-md\:left-2px {
    left: 2px !important;
  }

  .lt-md\:text-left {
    text-align: left !important;
  }

  .lt-md\:text-center {
    text-align: center !important;
  }

  .lt-md\:text-right {
    text-align: right !important;
  }

  .lt-md\:text-justify {
    text-align: justify !important;
  }

  .lt-md\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .lt-md\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .lt-md\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .lt-md\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .lt-md\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .lt-md\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .lt-md\:visible {
    visibility: visible !important;
  }

  .lt-md\:invisible {
    visibility: hidden !important;
  }

  .lt-md\:whitespace-normal {
    white-space: normal !important;
  }

  .lt-md\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .lt-md\:whitespace-pre {
    white-space: pre !important;
  }

  .lt-md\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .lt-md\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .lt-md\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .lt-md\:break-words {
    overflow-wrap: break-word !important;
  }

  .lt-md\:break-all {
    word-break: break-all !important;
  }

  .lt-md\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .lt-md\:w-0 {
    width: 0 !important;
  }

  .lt-md\:w-1 {
    width: 0.25rem !important;
  }

  .lt-md\:w-2 {
    width: 0.5rem !important;
  }

  .lt-md\:w-3 {
    width: 0.75rem !important;
  }

  .lt-md\:w-4 {
    width: 1rem !important;
  }

  .lt-md\:w-5 {
    width: 1.25rem !important;
  }

  .lt-md\:w-6 {
    width: 1.5rem !important;
  }

  .lt-md\:w-7 {
    width: 1.75rem !important;
  }

  .lt-md\:w-8 {
    width: 2rem !important;
  }

  .lt-md\:w-9 {
    width: 2.25rem !important;
  }

  .lt-md\:w-10 {
    width: 2.5rem !important;
  }

  .lt-md\:w-11 {
    width: 2.75rem !important;
  }

  .lt-md\:w-12 {
    width: 3rem !important;
  }

  .lt-md\:w-13 {
    width: 3.25rem !important;
  }

  .lt-md\:w-14 {
    width: 3.5rem !important;
  }

  .lt-md\:w-15 {
    width: 3.75rem !important;
  }

  .lt-md\:w-16 {
    width: 4rem !important;
  }

  .lt-md\:w-18 {
    width: 4.5rem !important;
  }

  .lt-md\:w-20 {
    width: 5rem !important;
  }

  .lt-md\:w-22 {
    width: 5.5rem !important;
  }

  .lt-md\:w-24 {
    width: 6rem !important;
  }

  .lt-md\:w-26 {
    width: 6.5rem !important;
  }

  .lt-md\:w-28 {
    width: 7rem !important;
  }

  .lt-md\:w-30 {
    width: 7.5rem !important;
  }

  .lt-md\:w-32 {
    width: 8rem !important;
  }

  .lt-md\:w-36 {
    width: 9rem !important;
  }

  .lt-md\:w-40 {
    width: 10rem !important;
  }

  .lt-md\:w-44 {
    width: 11rem !important;
  }

  .lt-md\:w-48 {
    width: 12rem !important;
  }

  .lt-md\:w-50 {
    width: 12.5rem !important;
  }

  .lt-md\:w-52 {
    width: 13rem !important;
  }

  .lt-md\:w-56 {
    width: 14rem !important;
  }

  .lt-md\:w-60 {
    width: 15rem !important;
  }

  .lt-md\:w-64 {
    width: 16rem !important;
  }

  .lt-md\:w-72 {
    width: 18rem !important;
  }

  .lt-md\:w-80 {
    width: 20rem !important;
  }

  .lt-md\:w-90 {
    width: 24rem !important;
  }

  .lt-md\:w-96 {
    width: 24rem !important;
  }

  .lt-md\:w-100 {
    width: 25rem !important;
  }

  .lt-md\:w-120 {
    width: 30rem !important;
  }

  .lt-md\:w-128 {
    width: 32rem !important;
  }

  .lt-md\:w-140 {
    width: 35rem !important;
  }

  .lt-md\:w-160 {
    width: 40rem !important;
  }

  .lt-md\:w-180 {
    width: 45rem !important;
  }

  .lt-md\:w-192 {
    width: 48rem !important;
  }

  .lt-md\:w-200 {
    width: 50rem !important;
  }

  .lt-md\:w-240 {
    width: 60rem !important;
  }

  .lt-md\:w-256 {
    width: 64rem !important;
  }

  .lt-md\:w-280 {
    width: 70rem !important;
  }

  .lt-md\:w-320 {
    width: 80rem !important;
  }

  .lt-md\:w-360 {
    width: 90rem !important;
  }

  .lt-md\:w-400 {
    width: 100rem !important;
  }

  .lt-md\:w-480 {
    width: 120rem !important;
  }

  .lt-md\:w-auto {
    width: auto !important;
  }

  .lt-md\:w-px {
    width: 1px !important;
  }

  .lt-md\:w-0\.5 {
    width: 0.125rem !important;
  }

  .lt-md\:w-1\.5 {
    width: 0.375rem !important;
  }

  .lt-md\:w-2\.5 {
    width: 0.625rem !important;
  }

  .lt-md\:w-3\.5 {
    width: 0.875rem !important;
  }

  .lt-md\:w-1\/2 {
    width: 50% !important;
  }

  .lt-md\:w-1\/3 {
    width: 33.333333% !important;
  }

  .lt-md\:w-2\/3 {
    width: 66.666667% !important;
  }

  .lt-md\:w-1\/4 {
    width: 25% !important;
  }

  .lt-md\:w-2\/4 {
    width: 50% !important;
  }

  .lt-md\:w-3\/4 {
    width: 75% !important;
  }

  .lt-md\:w-1\/5 {
    width: 20% !important;
  }

  .lt-md\:w-2\/5 {
    width: 40% !important;
  }

  .lt-md\:w-3\/5 {
    width: 60% !important;
  }

  .lt-md\:w-4\/5 {
    width: 80% !important;
  }

  .lt-md\:w-1\/6 {
    width: 16.666667% !important;
  }

  .lt-md\:w-2\/6 {
    width: 33.333333% !important;
  }

  .lt-md\:w-3\/6 {
    width: 50% !important;
  }

  .lt-md\:w-4\/6 {
    width: 66.666667% !important;
  }

  .lt-md\:w-5\/6 {
    width: 83.333333% !important;
  }

  .lt-md\:w-1\/12 {
    width: 8.333333% !important;
  }

  .lt-md\:w-2\/12 {
    width: 16.666667% !important;
  }

  .lt-md\:w-3\/12 {
    width: 25% !important;
  }

  .lt-md\:w-4\/12 {
    width: 33.333333% !important;
  }

  .lt-md\:w-5\/12 {
    width: 41.666667% !important;
  }

  .lt-md\:w-6\/12 {
    width: 50% !important;
  }

  .lt-md\:w-7\/12 {
    width: 58.333333% !important;
  }

  .lt-md\:w-8\/12 {
    width: 66.666667% !important;
  }

  .lt-md\:w-9\/12 {
    width: 75% !important;
  }

  .lt-md\:w-10\/12 {
    width: 83.333333% !important;
  }

  .lt-md\:w-11\/12 {
    width: 91.666667% !important;
  }

  .lt-md\:w-full {
    width: 100% !important;
  }

  .lt-md\:w-2px {
    width: 2px !important;
  }

  .lt-md\:w-screen {
    width: 100vw !important;
  }

  .lt-md\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .lt-md\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .lt-md\:z-0 {
    z-index: 0 !important;
  }

  .lt-md\:z-10 {
    z-index: 10 !important;
  }

  .lt-md\:z-20 {
    z-index: 20 !important;
  }

  .lt-md\:z-30 {
    z-index: 30 !important;
  }

  .lt-md\:z-40 {
    z-index: 40 !important;
  }

  .lt-md\:z-50 {
    z-index: 50 !important;
  }

  .lt-md\:z-60 {
    z-index: 60 !important;
  }

  .lt-md\:z-70 {
    z-index: 70 !important;
  }

  .lt-md\:z-80 {
    z-index: 80 !important;
  }

  .lt-md\:z-90 {
    z-index: 90 !important;
  }

  .lt-md\:z-99 {
    z-index: 99 !important;
  }

  .lt-md\:z-999 {
    z-index: 999 !important;
  }

  .lt-md\:z-9999 {
    z-index: 9999 !important;
  }

  .lt-md\:z-99999 {
    z-index: 99999 !important;
  }

  .lt-md\:z-auto {
    z-index: auto !important;
  }

  .lt-md\:-z-1 {
    z-index: -1 !important;
  }

  .lt-md\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .lt-md\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .lt-md\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .lt-md\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .lt-md\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .lt-md\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .lt-md\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .lt-md\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .lt-md\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .lt-md\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .lt-md\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .lt-md\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .lt-md\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .lt-md\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .lt-md\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .lt-md\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .lt-md\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .lt-md\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .lt-md\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .lt-md\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .lt-md\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .lt-md\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .lt-md\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .lt-md\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .lt-md\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .lt-md\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .lt-md\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .lt-md\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .lt-md\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .lt-md\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .lt-md\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .lt-md\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .lt-md\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .lt-md\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .lt-md\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .lt-md\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .lt-md\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .lt-md\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .lt-md\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .lt-md\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .lt-md\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .lt-md\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .lt-md\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .lt-md\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .lt-md\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .lt-md\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .lt-md\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .lt-md\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .lt-md\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .lt-md\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .lt-md\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .lt-md\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .lt-md\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .lt-md\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .lt-md\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .lt-md\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .lt-md\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .lt-md\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .lt-md\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-md\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lt-md\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lt-md\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .lt-md\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-md\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .lt-md\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .lt-md\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .lt-md\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .lt-md\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .lt-md\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .lt-md\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lt-md\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-md\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lt-md\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .lt-md\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .lt-md\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .lt-md\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .lt-md\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lt-md\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .lt-md\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-md\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .lt-md\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lt-md\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .lt-md\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .lt-md\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .lt-md\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .lt-md\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .lt-md\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .lt-md\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .lt-md\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .lt-md\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .lt-md\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .lt-md\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .lt-md\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .lt-md\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .lt-md\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .lt-md\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .lt-md\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .lt-md\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .lt-md\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .lt-md\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .lt-md\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .lt-md\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .lt-md\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .lt-md\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .lt-md\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .lt-md\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .lt-md\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .lt-md\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .lt-md\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .lt-md\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .lt-md\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .lt-md\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .lt-md\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .lt-md\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .lt-md\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .lt-md\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .lt-md\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .lt-md\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .lt-md\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .lt-md\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .lt-md\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .lt-md\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .lt-md\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .lt-md\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .lt-md\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .lt-md\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .lt-md\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .lt-md\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .lt-md\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .lt-md\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .lt-md\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .lt-md\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .lt-md\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .lt-md\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .lt-md\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .lt-md\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .lt-md\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .lt-md\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .lt-md\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .lt-md\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .lt-md\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .lt-md\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .lt-md\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .lt-md\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .lt-md\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-md\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lt-md\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lt-md\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .lt-md\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-md\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .lt-md\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .lt-md\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .lt-md\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .lt-md\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .lt-md\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .lt-md\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lt-md\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-md\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lt-md\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .lt-md\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .lt-md\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .lt-md\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .lt-md\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lt-md\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .lt-md\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-md\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .lt-md\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lt-md\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .lt-md\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .lt-md\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .lt-md\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .lt-md\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .lt-md\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .lt-md\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .lt-md\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .lt-md\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .lt-md\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .lt-md\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .lt-md\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .lt-md\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .lt-md\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .lt-md\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .lt-md\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .lt-md\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .lt-md\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .lt-md\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .lt-md\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .lt-md\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .lt-md\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .lt-md\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .lt-md\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .lt-md\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .lt-md\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .lt-md\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .lt-md\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .lt-md\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .lt-md\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .lt-md\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .lt-md\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .lt-md\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .lt-md\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .lt-md\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .lt-md\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .lt-md\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .lt-md\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .lt-md\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .lt-md\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .lt-md\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .lt-md\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .lt-md\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .lt-md\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .lt-md\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .lt-md\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .lt-md\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .lt-md\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .lt-md\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .lt-md\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .lt-md\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .lt-md\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .lt-md\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .lt-md\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .lt-md\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .lt-md\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .lt-md\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .lt-md\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .lt-md\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .lt-md\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .lt-md\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .lt-md\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .lt-md\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .lt-md\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-md\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lt-md\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lt-md\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .lt-md\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-md\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .lt-md\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .lt-md\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .lt-md\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .lt-md\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .lt-md\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .lt-md\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lt-md\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-md\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lt-md\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .lt-md\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .lt-md\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .lt-md\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .lt-md\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lt-md\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .lt-md\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-md\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .lt-md\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lt-md\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .lt-md\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .lt-md\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .lt-md\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .lt-md\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .lt-md\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .lt-md\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .lt-md\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .lt-md\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .lt-md\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .lt-md\:col-auto {
    grid-column: auto !important;
  }

  .lt-md\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

  .lt-md\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }

  .lt-md\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .lt-md\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .lt-md\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .lt-md\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .lt-md\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .lt-md\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .lt-md\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .lt-md\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .lt-md\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .lt-md\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .lt-md\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .lt-md\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .lt-md\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .lt-md\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .lt-md\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .lt-md\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .lt-md\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .lt-md\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .lt-md\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .lt-md\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .lt-md\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .lt-md\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .lt-md\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .lt-md\:col-start-auto {
    grid-column-start: auto !important;
  }

  .lt-md\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .lt-md\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .lt-md\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .lt-md\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .lt-md\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .lt-md\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .lt-md\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .lt-md\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .lt-md\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .lt-md\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .lt-md\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .lt-md\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .lt-md\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .lt-md\:col-end-auto {
    grid-column-end: auto !important;
  }

  .lt-md\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .lt-md\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .lt-md\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .lt-md\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .lt-md\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .lt-md\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .lt-md\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .lt-md\:row-auto {
    grid-row: auto !important;
  }

  .lt-md\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .lt-md\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .lt-md\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .lt-md\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .lt-md\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .lt-md\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .lt-md\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .lt-md\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .lt-md\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .lt-md\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .lt-md\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .lt-md\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .lt-md\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .lt-md\:row-start-auto {
    grid-row-start: auto !important;
  }

  .lt-md\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .lt-md\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .lt-md\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .lt-md\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .lt-md\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .lt-md\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .lt-md\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .lt-md\:row-end-auto {
    grid-row-end: auto !important;
  }

  .lt-md\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .lt-md\:transform-none {
    transform: none !important;
  }

  .lt-md\:origin-center {
    transform-origin: center !important;
  }

  .lt-md\:origin-top {
    transform-origin: top !important;
  }

  .lt-md\:origin-top-right {
    transform-origin: top right !important;
  }

  .lt-md\:origin-right {
    transform-origin: right !important;
  }

  .lt-md\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .lt-md\:origin-bottom {
    transform-origin: bottom !important;
  }

  .lt-md\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .lt-md\:origin-left {
    transform-origin: left !important;
  }

  .lt-md\:origin-top-left {
    transform-origin: top left !important;
  }

  .lt-md\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .lt-md\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .lt-md\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .lt-md\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .lt-md\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .lt-md\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .lt-md\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .lt-md\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .lt-md\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .lt-md\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .lt-md\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .lt-md\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .lt-md\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .lt-md\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .lt-md\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .lt-md\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .lt-md\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .lt-md\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .lt-md\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .lt-md\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .lt-md\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .lt-md\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .lt-md\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .lt-md\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .lt-md\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .lt-md\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .lt-md\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .lt-md\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .lt-md\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .lt-md\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (max-width: 1279px) {
  .lt-lg\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .lt-lg\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .lt-lg\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-lg\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .lt-lg\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .lt-lg\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lt-lg\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lt-lg\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lt-lg\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lt-lg\:rounded-none {
    border-radius: 0 !important;
  }

  .lt-lg\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .lt-lg\:rounded {
    border-radius: 0.25rem !important;
  }

  .lt-lg\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .lt-lg\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .lt-lg\:rounded-full {
    border-radius: 9999px !important;
  }

  .lt-lg\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .lt-lg\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .lt-lg\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lt-lg\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lt-lg\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .lt-lg\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .lt-lg\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lt-lg\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lt-lg\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .lt-lg\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .lt-lg\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lt-lg\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lt-lg\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .lt-lg\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .lt-lg\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lt-lg\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lt-lg\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .lt-lg\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .lt-lg\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lt-lg\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lt-lg\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .lt-lg\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .lt-lg\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lt-lg\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lt-lg\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .lt-lg\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .lt-lg\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .lt-lg\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .lt-lg\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .lt-lg\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .lt-lg\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .lt-lg\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .lt-lg\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .lt-lg\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .lt-lg\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .lt-lg\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .lt-lg\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .lt-lg\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .lt-lg\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .lt-lg\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .lt-lg\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .lt-lg\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .lt-lg\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .lt-lg\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .lt-lg\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .lt-lg\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .lt-lg\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .lt-lg\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .lt-lg\:border-0 {
    border-width: 0 !important;
  }

  .lt-lg\:border-2 {
    border-width: 2px !important;
  }

  .lt-lg\:border-4 {
    border-width: 4px !important;
  }

  .lt-lg\:border-8 {
    border-width: 8px !important;
  }

  .lt-lg\:border {
    border-width: 1px !important;
  }

  .lt-lg\:border-t-0 {
    border-top-width: 0 !important;
  }

  .lt-lg\:border-r-0 {
    border-right-width: 0 !important;
  }

  .lt-lg\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .lt-lg\:border-l-0 {
    border-left-width: 0 !important;
  }

  .lt-lg\:border-t-2 {
    border-top-width: 2px !important;
  }

  .lt-lg\:border-r-2 {
    border-right-width: 2px !important;
  }

  .lt-lg\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .lt-lg\:border-l-2 {
    border-left-width: 2px !important;
  }

  .lt-lg\:border-t-4 {
    border-top-width: 4px !important;
  }

  .lt-lg\:border-r-4 {
    border-right-width: 4px !important;
  }

  .lt-lg\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .lt-lg\:border-l-4 {
    border-left-width: 4px !important;
  }

  .lt-lg\:border-t-8 {
    border-top-width: 8px !important;
  }

  .lt-lg\:border-r-8 {
    border-right-width: 8px !important;
  }

  .lt-lg\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .lt-lg\:border-l-8 {
    border-left-width: 8px !important;
  }

  .lt-lg\:border-t {
    border-top-width: 1px !important;
  }

  .lt-lg\:border-r {
    border-right-width: 1px !important;
  }

  .lt-lg\:border-b {
    border-bottom-width: 1px !important;
  }

  .lt-lg\:border-l {
    border-left-width: 1px !important;
  }

  .lt-lg\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .lt-lg\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .lt-lg\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .lt-lg\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .lt-lg\:first\:border:first-child {
    border-width: 1px !important;
  }

  .lt-lg\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .lt-lg\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .lt-lg\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .lt-lg\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .lt-lg\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .lt-lg\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .lt-lg\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .lt-lg\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .lt-lg\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .lt-lg\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .lt-lg\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .lt-lg\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .lt-lg\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .lt-lg\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .lt-lg\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .lt-lg\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .lt-lg\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .lt-lg\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .lt-lg\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .lt-lg\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .lt-lg\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .lt-lg\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .lt-lg\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .lt-lg\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .lt-lg\:last\:border:last-child {
    border-width: 1px !important;
  }

  .lt-lg\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .lt-lg\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .lt-lg\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .lt-lg\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .lt-lg\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .lt-lg\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .lt-lg\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .lt-lg\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .lt-lg\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .lt-lg\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .lt-lg\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .lt-lg\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .lt-lg\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .lt-lg\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .lt-lg\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .lt-lg\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .lt-lg\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .lt-lg\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .lt-lg\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .lt-lg\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .lt-lg\:block {
    display: block !important;
  }

  .lt-lg\:inline-block {
    display: inline-block !important;
  }

  .lt-lg\:inline {
    display: inline !important;
  }

  .lt-lg\:flex {
    display: flex !important;
  }

  .lt-lg\:inline-flex {
    display: inline-flex !important;
  }

  .lt-lg\:table {
    display: table !important;
  }

  .lt-lg\:table-caption {
    display: table-caption !important;
  }

  .lt-lg\:table-cell {
    display: table-cell !important;
  }

  .lt-lg\:table-column {
    display: table-column !important;
  }

  .lt-lg\:table-column-group {
    display: table-column-group !important;
  }

  .lt-lg\:table-footer-group {
    display: table-footer-group !important;
  }

  .lt-lg\:table-header-group {
    display: table-header-group !important;
  }

  .lt-lg\:table-row-group {
    display: table-row-group !important;
  }

  .lt-lg\:table-row {
    display: table-row !important;
  }

  .lt-lg\:flow-root {
    display: flow-root !important;
  }

  .lt-lg\:grid {
    display: grid !important;
  }

  .lt-lg\:inline-grid {
    display: inline-grid !important;
  }

  .lt-lg\:contents {
    display: contents !important;
  }

  .lt-lg\:hidden {
    display: none !important;
  }

  .lt-lg\:flex-row {
    flex-direction: row !important;
  }

  .lt-lg\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .lt-lg\:flex-col {
    flex-direction: column !important;
  }

  .lt-lg\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .lt-lg\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .lt-lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .lt-lg\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .lt-lg\:items-start {
    align-items: flex-start !important;
  }

  .lt-lg\:items-end {
    align-items: flex-end !important;
  }

  .lt-lg\:items-center {
    align-items: center !important;
  }

  .lt-lg\:items-baseline {
    align-items: baseline !important;
  }

  .lt-lg\:items-stretch {
    align-items: stretch !important;
  }

  .lt-lg\:self-auto {
    align-self: auto !important;
  }

  .lt-lg\:self-start {
    align-self: flex-start !important;
  }

  .lt-lg\:self-end {
    align-self: flex-end !important;
  }

  .lt-lg\:self-center {
    align-self: center !important;
  }

  .lt-lg\:self-stretch {
    align-self: stretch !important;
  }

  .lt-lg\:justify-start {
    justify-content: flex-start !important;
  }

  .lt-lg\:justify-end {
    justify-content: flex-end !important;
  }

  .lt-lg\:justify-center {
    justify-content: center !important;
  }

  .lt-lg\:justify-between {
    justify-content: space-between !important;
  }

  .lt-lg\:justify-around {
    justify-content: space-around !important;
  }

  .lt-lg\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .lt-lg\:content-center {
    align-content: center !important;
  }

  .lt-lg\:content-start {
    align-content: flex-start !important;
  }

  .lt-lg\:content-end {
    align-content: flex-end !important;
  }

  .lt-lg\:content-between {
    align-content: space-between !important;
  }

  .lt-lg\:content-around {
    align-content: space-around !important;
  }

  .lt-lg\:flex-0 {
    flex: 0 0 auto !important;
  }

  .lt-lg\:flex-1 {
    flex: 1 1 0% !important;
  }

  .lt-lg\:flex-auto {
    flex: 1 1 auto !important;
  }

  .lt-lg\:flex-initial {
    flex: 0 1 auto !important;
  }

  .lt-lg\:flex-none {
    flex: none !important;
  }

  .lt-lg\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .lt-lg\:flex-grow {
    flex-grow: 1 !important;
  }

  .lt-lg\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .lt-lg\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .lt-lg\:order-1 {
    order: 1 !important;
  }

  .lt-lg\:order-2 {
    order: 2 !important;
  }

  .lt-lg\:order-3 {
    order: 3 !important;
  }

  .lt-lg\:order-4 {
    order: 4 !important;
  }

  .lt-lg\:order-5 {
    order: 5 !important;
  }

  .lt-lg\:order-6 {
    order: 6 !important;
  }

  .lt-lg\:order-7 {
    order: 7 !important;
  }

  .lt-lg\:order-8 {
    order: 8 !important;
  }

  .lt-lg\:order-9 {
    order: 9 !important;
  }

  .lt-lg\:order-10 {
    order: 10 !important;
  }

  .lt-lg\:order-11 {
    order: 11 !important;
  }

  .lt-lg\:order-12 {
    order: 12 !important;
  }

  .lt-lg\:order-first {
    order: -9999 !important;
  }

  .lt-lg\:order-last {
    order: 9999 !important;
  }

  .lt-lg\:order-none {
    order: 0 !important;
  }

  .lt-lg\:font-hairline {
    font-weight: 100 !important;
  }

  .lt-lg\:font-thin {
    font-weight: 200 !important;
  }

  .lt-lg\:font-light {
    font-weight: 300 !important;
  }

  .lt-lg\:font-normal {
    font-weight: 400 !important;
  }

  .lt-lg\:font-medium {
    font-weight: 500 !important;
  }

  .lt-lg\:font-semibold {
    font-weight: 600 !important;
  }

  .lt-lg\:font-bold {
    font-weight: 700 !important;
  }

  .lt-lg\:font-extrabold {
    font-weight: 800 !important;
  }

  .lt-lg\:font-black {
    font-weight: 900 !important;
  }

  .lt-lg\:h-0 {
    height: 0 !important;
  }

  .lt-lg\:h-1 {
    height: 0.25rem !important;
  }

  .lt-lg\:h-2 {
    height: 0.5rem !important;
  }

  .lt-lg\:h-3 {
    height: 0.75rem !important;
  }

  .lt-lg\:h-4 {
    height: 1rem !important;
  }

  .lt-lg\:h-5 {
    height: 1.25rem !important;
  }

  .lt-lg\:h-6 {
    height: 1.5rem !important;
  }

  .lt-lg\:h-7 {
    height: 1.75rem !important;
  }

  .lt-lg\:h-8 {
    height: 2rem !important;
  }

  .lt-lg\:h-9 {
    height: 2.25rem !important;
  }

  .lt-lg\:h-10 {
    height: 2.5rem !important;
  }

  .lt-lg\:h-11 {
    height: 2.75rem !important;
  }

  .lt-lg\:h-12 {
    height: 3rem !important;
  }

  .lt-lg\:h-13 {
    height: 3.25rem !important;
  }

  .lt-lg\:h-14 {
    height: 3.5rem !important;
  }

  .lt-lg\:h-15 {
    height: 3.75rem !important;
  }

  .lt-lg\:h-16 {
    height: 4rem !important;
  }

  .lt-lg\:h-18 {
    height: 4.5rem !important;
  }

  .lt-lg\:h-20 {
    height: 5rem !important;
  }

  .lt-lg\:h-22 {
    height: 5.5rem !important;
  }

  .lt-lg\:h-24 {
    height: 6rem !important;
  }

  .lt-lg\:h-26 {
    height: 6.5rem !important;
  }

  .lt-lg\:h-28 {
    height: 7rem !important;
  }

  .lt-lg\:h-30 {
    height: 7.5rem !important;
  }

  .lt-lg\:h-32 {
    height: 8rem !important;
  }

  .lt-lg\:h-36 {
    height: 9rem !important;
  }

  .lt-lg\:h-40 {
    height: 10rem !important;
  }

  .lt-lg\:h-44 {
    height: 11rem !important;
  }

  .lt-lg\:h-48 {
    height: 12rem !important;
  }

  .lt-lg\:h-50 {
    height: 12.5rem !important;
  }

  .lt-lg\:h-52 {
    height: 13rem !important;
  }

  .lt-lg\:h-56 {
    height: 14rem !important;
  }

  .lt-lg\:h-60 {
    height: 15rem !important;
  }

  .lt-lg\:h-64 {
    height: 16rem !important;
  }

  .lt-lg\:h-72 {
    height: 18rem !important;
  }

  .lt-lg\:h-80 {
    height: 20rem !important;
  }

  .lt-lg\:h-90 {
    height: 24rem !important;
  }

  .lt-lg\:h-96 {
    height: 24rem !important;
  }

  .lt-lg\:h-100 {
    height: 25rem !important;
  }

  .lt-lg\:h-120 {
    height: 30rem !important;
  }

  .lt-lg\:h-128 {
    height: 32rem !important;
  }

  .lt-lg\:h-140 {
    height: 35rem !important;
  }

  .lt-lg\:h-160 {
    height: 40rem !important;
  }

  .lt-lg\:h-180 {
    height: 45rem !important;
  }

  .lt-lg\:h-192 {
    height: 48rem !important;
  }

  .lt-lg\:h-200 {
    height: 50rem !important;
  }

  .lt-lg\:h-240 {
    height: 60rem !important;
  }

  .lt-lg\:h-256 {
    height: 64rem !important;
  }

  .lt-lg\:h-280 {
    height: 70rem !important;
  }

  .lt-lg\:h-320 {
    height: 80rem !important;
  }

  .lt-lg\:h-360 {
    height: 90rem !important;
  }

  .lt-lg\:h-400 {
    height: 100rem !important;
  }

  .lt-lg\:h-480 {
    height: 120rem !important;
  }

  .lt-lg\:h-auto {
    height: auto !important;
  }

  .lt-lg\:h-px {
    height: 1px !important;
  }

  .lt-lg\:h-0\.5 {
    height: 0.125rem !important;
  }

  .lt-lg\:h-1\.5 {
    height: 0.375rem !important;
  }

  .lt-lg\:h-2\.5 {
    height: 0.625rem !important;
  }

  .lt-lg\:h-3\.5 {
    height: 0.875rem !important;
  }

  .lt-lg\:h-1\/2 {
    height: 50% !important;
  }

  .lt-lg\:h-1\/3 {
    height: 33.333333% !important;
  }

  .lt-lg\:h-2\/3 {
    height: 66.666667% !important;
  }

  .lt-lg\:h-1\/4 {
    height: 25% !important;
  }

  .lt-lg\:h-2\/4 {
    height: 50% !important;
  }

  .lt-lg\:h-3\/4 {
    height: 75% !important;
  }

  .lt-lg\:h-1\/5 {
    height: 20% !important;
  }

  .lt-lg\:h-2\/5 {
    height: 40% !important;
  }

  .lt-lg\:h-3\/5 {
    height: 60% !important;
  }

  .lt-lg\:h-4\/5 {
    height: 80% !important;
  }

  .lt-lg\:h-1\/6 {
    height: 16.666667% !important;
  }

  .lt-lg\:h-2\/6 {
    height: 33.333333% !important;
  }

  .lt-lg\:h-3\/6 {
    height: 50% !important;
  }

  .lt-lg\:h-4\/6 {
    height: 66.666667% !important;
  }

  .lt-lg\:h-5\/6 {
    height: 83.333333% !important;
  }

  .lt-lg\:h-1\/12 {
    height: 8.333333% !important;
  }

  .lt-lg\:h-2\/12 {
    height: 16.666667% !important;
  }

  .lt-lg\:h-3\/12 {
    height: 25% !important;
  }

  .lt-lg\:h-4\/12 {
    height: 33.333333% !important;
  }

  .lt-lg\:h-5\/12 {
    height: 41.666667% !important;
  }

  .lt-lg\:h-6\/12 {
    height: 50% !important;
  }

  .lt-lg\:h-7\/12 {
    height: 58.333333% !important;
  }

  .lt-lg\:h-8\/12 {
    height: 66.666667% !important;
  }

  .lt-lg\:h-9\/12 {
    height: 75% !important;
  }

  .lt-lg\:h-10\/12 {
    height: 83.333333% !important;
  }

  .lt-lg\:h-11\/12 {
    height: 91.666667% !important;
  }

  .lt-lg\:h-full {
    height: 100% !important;
  }

  .lt-lg\:h-2px {
    height: 2px !important;
  }

  .lt-lg\:h-screen {
    height: 100vh !important;
  }

  .lt-lg\:text-xs {
    font-size: 0.625rem !important;
  }

  .lt-lg\:text-sm {
    font-size: 0.75rem !important;
  }

  .lt-lg\:text-md {
    font-size: 0.8125rem !important;
  }

  .lt-lg\:text-base {
    font-size: 0.875rem !important;
  }

  .lt-lg\:text-lg {
    font-size: 1rem !important;
  }

  .lt-lg\:text-xl {
    font-size: 1.125rem !important;
  }

  .lt-lg\:text-2xl {
    font-size: 1.25rem !important;
  }

  .lt-lg\:text-3xl {
    font-size: 1.5rem !important;
  }

  .lt-lg\:text-4xl {
    font-size: 2rem !important;
  }

  .lt-lg\:text-5xl {
    font-size: 2.25rem !important;
  }

  .lt-lg\:text-6xl {
    font-size: 2.5rem !important;
  }

  .lt-lg\:text-7xl {
    font-size: 3rem !important;
  }

  .lt-lg\:text-8xl {
    font-size: 4rem !important;
  }

  .lt-lg\:text-9xl {
    font-size: 6rem !important;
  }

  .lt-lg\:text-10xl {
    font-size: 8rem !important;
  }

  .lt-lg\:leading-3 {
    line-height: 0.75rem !important;
  }

  .lt-lg\:leading-4 {
    line-height: 1rem !important;
  }

  .lt-lg\:leading-5 {
    line-height: 1.25rem !important;
  }

  .lt-lg\:leading-6 {
    line-height: 1.5rem !important;
  }

  .lt-lg\:leading-7 {
    line-height: 1.75rem !important;
  }

  .lt-lg\:leading-8 {
    line-height: 2rem !important;
  }

  .lt-lg\:leading-9 {
    line-height: 2.25rem !important;
  }

  .lt-lg\:leading-10 {
    line-height: 2.5rem !important;
  }

  .lt-lg\:leading-none {
    line-height: 1 !important;
  }

  .lt-lg\:leading-tight {
    line-height: 1.25 !important;
  }

  .lt-lg\:leading-snug {
    line-height: 1.375 !important;
  }

  .lt-lg\:leading-normal {
    line-height: 1.5 !important;
  }

  .lt-lg\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .lt-lg\:leading-loose {
    line-height: 2 !important;
  }

  .lt-lg\:m-0 {
    margin: 0 !important;
  }

  .lt-lg\:m-1 {
    margin: 0.25rem !important;
  }

  .lt-lg\:m-2 {
    margin: 0.5rem !important;
  }

  .lt-lg\:m-3 {
    margin: 0.75rem !important;
  }

  .lt-lg\:m-4 {
    margin: 1rem !important;
  }

  .lt-lg\:m-5 {
    margin: 1.25rem !important;
  }

  .lt-lg\:m-6 {
    margin: 1.5rem !important;
  }

  .lt-lg\:m-7 {
    margin: 1.75rem !important;
  }

  .lt-lg\:m-8 {
    margin: 2rem !important;
  }

  .lt-lg\:m-9 {
    margin: 2.25rem !important;
  }

  .lt-lg\:m-10 {
    margin: 2.5rem !important;
  }

  .lt-lg\:m-11 {
    margin: 2.75rem !important;
  }

  .lt-lg\:m-12 {
    margin: 3rem !important;
  }

  .lt-lg\:m-13 {
    margin: 3.25rem !important;
  }

  .lt-lg\:m-14 {
    margin: 3.5rem !important;
  }

  .lt-lg\:m-15 {
    margin: 3.75rem !important;
  }

  .lt-lg\:m-16 {
    margin: 4rem !important;
  }

  .lt-lg\:m-18 {
    margin: 4.5rem !important;
  }

  .lt-lg\:m-20 {
    margin: 5rem !important;
  }

  .lt-lg\:m-22 {
    margin: 5.5rem !important;
  }

  .lt-lg\:m-24 {
    margin: 6rem !important;
  }

  .lt-lg\:m-26 {
    margin: 6.5rem !important;
  }

  .lt-lg\:m-28 {
    margin: 7rem !important;
  }

  .lt-lg\:m-30 {
    margin: 7.5rem !important;
  }

  .lt-lg\:m-32 {
    margin: 8rem !important;
  }

  .lt-lg\:m-36 {
    margin: 9rem !important;
  }

  .lt-lg\:m-40 {
    margin: 10rem !important;
  }

  .lt-lg\:m-44 {
    margin: 11rem !important;
  }

  .lt-lg\:m-48 {
    margin: 12rem !important;
  }

  .lt-lg\:m-50 {
    margin: 12.5rem !important;
  }

  .lt-lg\:m-52 {
    margin: 13rem !important;
  }

  .lt-lg\:m-56 {
    margin: 14rem !important;
  }

  .lt-lg\:m-60 {
    margin: 15rem !important;
  }

  .lt-lg\:m-64 {
    margin: 16rem !important;
  }

  .lt-lg\:m-72 {
    margin: 18rem !important;
  }

  .lt-lg\:m-80 {
    margin: 20rem !important;
  }

  .lt-lg\:m-90 {
    margin: 24rem !important;
  }

  .lt-lg\:m-96 {
    margin: 24rem !important;
  }

  .lt-lg\:m-100 {
    margin: 25rem !important;
  }

  .lt-lg\:m-120 {
    margin: 30rem !important;
  }

  .lt-lg\:m-128 {
    margin: 32rem !important;
  }

  .lt-lg\:m-140 {
    margin: 35rem !important;
  }

  .lt-lg\:m-160 {
    margin: 40rem !important;
  }

  .lt-lg\:m-180 {
    margin: 45rem !important;
  }

  .lt-lg\:m-192 {
    margin: 48rem !important;
  }

  .lt-lg\:m-200 {
    margin: 50rem !important;
  }

  .lt-lg\:m-240 {
    margin: 60rem !important;
  }

  .lt-lg\:m-256 {
    margin: 64rem !important;
  }

  .lt-lg\:m-280 {
    margin: 70rem !important;
  }

  .lt-lg\:m-320 {
    margin: 80rem !important;
  }

  .lt-lg\:m-360 {
    margin: 90rem !important;
  }

  .lt-lg\:m-400 {
    margin: 100rem !important;
  }

  .lt-lg\:m-480 {
    margin: 120rem !important;
  }

  .lt-lg\:m-auto {
    margin: auto !important;
  }

  .lt-lg\:m-px {
    margin: 1px !important;
  }

  .lt-lg\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .lt-lg\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .lt-lg\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .lt-lg\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .lt-lg\:m-1\/2 {
    margin: 50% !important;
  }

  .lt-lg\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .lt-lg\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .lt-lg\:m-1\/4 {
    margin: 25% !important;
  }

  .lt-lg\:m-2\/4 {
    margin: 50% !important;
  }

  .lt-lg\:m-3\/4 {
    margin: 75% !important;
  }

  .lt-lg\:m-1\/5 {
    margin: 20% !important;
  }

  .lt-lg\:m-2\/5 {
    margin: 40% !important;
  }

  .lt-lg\:m-3\/5 {
    margin: 60% !important;
  }

  .lt-lg\:m-4\/5 {
    margin: 80% !important;
  }

  .lt-lg\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .lt-lg\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .lt-lg\:m-3\/6 {
    margin: 50% !important;
  }

  .lt-lg\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .lt-lg\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .lt-lg\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .lt-lg\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .lt-lg\:m-3\/12 {
    margin: 25% !important;
  }

  .lt-lg\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .lt-lg\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .lt-lg\:m-6\/12 {
    margin: 50% !important;
  }

  .lt-lg\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .lt-lg\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .lt-lg\:m-9\/12 {
    margin: 75% !important;
  }

  .lt-lg\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .lt-lg\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .lt-lg\:m-full {
    margin: 100% !important;
  }

  .lt-lg\:m-2px {
    margin: 2px !important;
  }

  .lt-lg\:-m-1 {
    margin: -0.25rem !important;
  }

  .lt-lg\:-m-2 {
    margin: -0.5rem !important;
  }

  .lt-lg\:-m-3 {
    margin: -0.75rem !important;
  }

  .lt-lg\:-m-4 {
    margin: -1rem !important;
  }

  .lt-lg\:-m-5 {
    margin: -1.25rem !important;
  }

  .lt-lg\:-m-6 {
    margin: -1.5rem !important;
  }

  .lt-lg\:-m-7 {
    margin: -1.75rem !important;
  }

  .lt-lg\:-m-8 {
    margin: -2rem !important;
  }

  .lt-lg\:-m-9 {
    margin: -2.25rem !important;
  }

  .lt-lg\:-m-10 {
    margin: -2.5rem !important;
  }

  .lt-lg\:-m-11 {
    margin: -2.75rem !important;
  }

  .lt-lg\:-m-12 {
    margin: -3rem !important;
  }

  .lt-lg\:-m-13 {
    margin: -3.25rem !important;
  }

  .lt-lg\:-m-14 {
    margin: -3.5rem !important;
  }

  .lt-lg\:-m-15 {
    margin: -3.75rem !important;
  }

  .lt-lg\:-m-16 {
    margin: -4rem !important;
  }

  .lt-lg\:-m-18 {
    margin: -4.5rem !important;
  }

  .lt-lg\:-m-20 {
    margin: -5rem !important;
  }

  .lt-lg\:-m-22 {
    margin: -5.5rem !important;
  }

  .lt-lg\:-m-24 {
    margin: -6rem !important;
  }

  .lt-lg\:-m-26 {
    margin: -6.5rem !important;
  }

  .lt-lg\:-m-28 {
    margin: -7rem !important;
  }

  .lt-lg\:-m-30 {
    margin: -7.5rem !important;
  }

  .lt-lg\:-m-32 {
    margin: -8rem !important;
  }

  .lt-lg\:-m-36 {
    margin: -9rem !important;
  }

  .lt-lg\:-m-40 {
    margin: -10rem !important;
  }

  .lt-lg\:-m-44 {
    margin: -11rem !important;
  }

  .lt-lg\:-m-48 {
    margin: -12rem !important;
  }

  .lt-lg\:-m-50 {
    margin: -12.5rem !important;
  }

  .lt-lg\:-m-52 {
    margin: -13rem !important;
  }

  .lt-lg\:-m-56 {
    margin: -14rem !important;
  }

  .lt-lg\:-m-60 {
    margin: -15rem !important;
  }

  .lt-lg\:-m-64 {
    margin: -16rem !important;
  }

  .lt-lg\:-m-72 {
    margin: -18rem !important;
  }

  .lt-lg\:-m-80 {
    margin: -20rem !important;
  }

  .lt-lg\:-m-90 {
    margin: -24rem !important;
  }

  .lt-lg\:-m-96 {
    margin: -24rem !important;
  }

  .lt-lg\:-m-100 {
    margin: -25rem !important;
  }

  .lt-lg\:-m-120 {
    margin: -30rem !important;
  }

  .lt-lg\:-m-128 {
    margin: -32rem !important;
  }

  .lt-lg\:-m-140 {
    margin: -35rem !important;
  }

  .lt-lg\:-m-160 {
    margin: -40rem !important;
  }

  .lt-lg\:-m-180 {
    margin: -45rem !important;
  }

  .lt-lg\:-m-192 {
    margin: -48rem !important;
  }

  .lt-lg\:-m-200 {
    margin: -50rem !important;
  }

  .lt-lg\:-m-240 {
    margin: -60rem !important;
  }

  .lt-lg\:-m-256 {
    margin: -64rem !important;
  }

  .lt-lg\:-m-280 {
    margin: -70rem !important;
  }

  .lt-lg\:-m-320 {
    margin: -80rem !important;
  }

  .lt-lg\:-m-360 {
    margin: -90rem !important;
  }

  .lt-lg\:-m-400 {
    margin: -100rem !important;
  }

  .lt-lg\:-m-480 {
    margin: -120rem !important;
  }

  .lt-lg\:-m-px {
    margin: -1px !important;
  }

  .lt-lg\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .lt-lg\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .lt-lg\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .lt-lg\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .lt-lg\:-m-1\/2 {
    margin: -50% !important;
  }

  .lt-lg\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .lt-lg\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .lt-lg\:-m-1\/4 {
    margin: -25% !important;
  }

  .lt-lg\:-m-2\/4 {
    margin: -50% !important;
  }

  .lt-lg\:-m-3\/4 {
    margin: -75% !important;
  }

  .lt-lg\:-m-1\/5 {
    margin: -20% !important;
  }

  .lt-lg\:-m-2\/5 {
    margin: -40% !important;
  }

  .lt-lg\:-m-3\/5 {
    margin: -60% !important;
  }

  .lt-lg\:-m-4\/5 {
    margin: -80% !important;
  }

  .lt-lg\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .lt-lg\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .lt-lg\:-m-3\/6 {
    margin: -50% !important;
  }

  .lt-lg\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .lt-lg\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .lt-lg\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .lt-lg\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .lt-lg\:-m-3\/12 {
    margin: -25% !important;
  }

  .lt-lg\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .lt-lg\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .lt-lg\:-m-6\/12 {
    margin: -50% !important;
  }

  .lt-lg\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .lt-lg\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .lt-lg\:-m-9\/12 {
    margin: -75% !important;
  }

  .lt-lg\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .lt-lg\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .lt-lg\:-m-full {
    margin: -100% !important;
  }

  .lt-lg\:-m-2px {
    margin: -2px !important;
  }

  .lt-lg\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .lt-lg\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .lt-lg\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .lt-lg\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .lt-lg\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .lt-lg\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .lt-lg\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .lt-lg\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .lt-lg\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .lt-lg\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .lt-lg\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .lt-lg\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .lt-lg\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .lt-lg\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .lt-lg\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .lt-lg\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .lt-lg\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lt-lg\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .lt-lg\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .lt-lg\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .lt-lg\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .lt-lg\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .lt-lg\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .lt-lg\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .lt-lg\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .lt-lg\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .lt-lg\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .lt-lg\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .lt-lg\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .lt-lg\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .lt-lg\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .lt-lg\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .lt-lg\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .lt-lg\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .lt-lg\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .lt-lg\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .lt-lg\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .lt-lg\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .lt-lg\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .lt-lg\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .lt-lg\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .lt-lg\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .lt-lg\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .lt-lg\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .lt-lg\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .lt-lg\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .lt-lg\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .lt-lg\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .lt-lg\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .lt-lg\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .lt-lg\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .lt-lg\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .lt-lg\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .lt-lg\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .lt-lg\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .lt-lg\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .lt-lg\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .lt-lg\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .lt-lg\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .lt-lg\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .lt-lg\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .lt-lg\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .lt-lg\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .lt-lg\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .lt-lg\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .lt-lg\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .lt-lg\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .lt-lg\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .lt-lg\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .lt-lg\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .lt-lg\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .lt-lg\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .lt-lg\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .lt-lg\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .lt-lg\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .lt-lg\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .lt-lg\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .lt-lg\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .lt-lg\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .lt-lg\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .lt-lg\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .lt-lg\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .lt-lg\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .lt-lg\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .lt-lg\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .lt-lg\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .lt-lg\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .lt-lg\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .lt-lg\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .lt-lg\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .lt-lg\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .lt-lg\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .lt-lg\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .lt-lg\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .lt-lg\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .lt-lg\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .lt-lg\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .lt-lg\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .lt-lg\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .lt-lg\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .lt-lg\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .lt-lg\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .lt-lg\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .lt-lg\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .lt-lg\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .lt-lg\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .lt-lg\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .lt-lg\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lt-lg\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .lt-lg\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .lt-lg\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .lt-lg\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .lt-lg\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .lt-lg\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .lt-lg\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .lt-lg\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .lt-lg\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .lt-lg\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .lt-lg\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-lg\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-lg\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lt-lg\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lt-lg\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lt-lg\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lt-lg\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .lt-lg\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .lt-lg\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-lg\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-lg\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .lt-lg\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .lt-lg\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .lt-lg\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .lt-lg\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .lt-lg\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .lt-lg\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .lt-lg\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .lt-lg\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .lt-lg\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .lt-lg\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .lt-lg\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .lt-lg\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lt-lg\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lt-lg\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-lg\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-lg\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lt-lg\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lt-lg\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .lt-lg\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .lt-lg\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .lt-lg\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .lt-lg\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .lt-lg\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .lt-lg\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .lt-lg\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .lt-lg\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lt-lg\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lt-lg\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .lt-lg\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .lt-lg\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-lg\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-lg\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .lt-lg\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .lt-lg\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lt-lg\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lt-lg\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .lt-lg\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .lt-lg\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .lt-lg\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .lt-lg\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .lt-lg\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .lt-lg\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .lt-lg\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .lt-lg\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .lt-lg\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .lt-lg\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .lt-lg\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .lt-lg\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .lt-lg\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .lt-lg\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .lt-lg\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .lt-lg\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .lt-lg\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .lt-lg\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .lt-lg\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .lt-lg\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .lt-lg\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .lt-lg\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .lt-lg\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .lt-lg\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .lt-lg\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .lt-lg\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .lt-lg\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .lt-lg\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .lt-lg\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .lt-lg\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .lt-lg\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .lt-lg\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .lt-lg\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .lt-lg\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .lt-lg\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .lt-lg\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .lt-lg\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .lt-lg\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .lt-lg\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .lt-lg\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .lt-lg\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .lt-lg\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .lt-lg\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .lt-lg\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .lt-lg\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .lt-lg\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .lt-lg\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .lt-lg\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .lt-lg\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .lt-lg\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .lt-lg\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .lt-lg\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .lt-lg\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .lt-lg\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .lt-lg\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .lt-lg\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .lt-lg\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .lt-lg\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .lt-lg\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .lt-lg\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .lt-lg\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .lt-lg\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .lt-lg\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .lt-lg\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .lt-lg\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .lt-lg\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .lt-lg\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .lt-lg\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .lt-lg\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .lt-lg\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .lt-lg\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .lt-lg\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .lt-lg\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .lt-lg\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .lt-lg\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .lt-lg\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .lt-lg\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .lt-lg\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .lt-lg\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .lt-lg\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .lt-lg\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .lt-lg\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .lt-lg\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .lt-lg\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .lt-lg\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .lt-lg\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .lt-lg\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .lt-lg\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .lt-lg\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .lt-lg\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .lt-lg\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .lt-lg\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .lt-lg\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .lt-lg\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .lt-lg\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .lt-lg\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .lt-lg\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .lt-lg\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .lt-lg\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .lt-lg\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .lt-lg\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .lt-lg\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .lt-lg\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .lt-lg\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .lt-lg\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .lt-lg\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .lt-lg\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .lt-lg\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .lt-lg\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .lt-lg\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .lt-lg\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .lt-lg\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .lt-lg\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .lt-lg\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .lt-lg\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .lt-lg\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .lt-lg\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .lt-lg\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .lt-lg\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .lt-lg\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .lt-lg\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .lt-lg\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .lt-lg\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .lt-lg\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-lg\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-lg\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lt-lg\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lt-lg\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lt-lg\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lt-lg\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .lt-lg\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .lt-lg\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-lg\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-lg\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .lt-lg\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .lt-lg\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .lt-lg\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .lt-lg\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .lt-lg\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .lt-lg\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .lt-lg\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .lt-lg\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .lt-lg\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .lt-lg\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .lt-lg\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .lt-lg\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lt-lg\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lt-lg\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-lg\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-lg\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lt-lg\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lt-lg\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .lt-lg\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .lt-lg\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .lt-lg\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .lt-lg\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .lt-lg\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .lt-lg\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .lt-lg\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .lt-lg\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lt-lg\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lt-lg\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .lt-lg\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .lt-lg\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-lg\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-lg\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .lt-lg\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .lt-lg\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lt-lg\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lt-lg\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .lt-lg\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .lt-lg\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .lt-lg\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .lt-lg\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .lt-lg\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .lt-lg\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .lt-lg\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .lt-lg\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .lt-lg\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .lt-lg\:mt-0 {
    margin-top: 0 !important;
  }

  .lt-lg\:mr-0 {
    margin-right: 0 !important;
  }

  .lt-lg\:mb-0 {
    margin-bottom: 0 !important;
  }

  .lt-lg\:ml-0 {
    margin-left: 0 !important;
  }

  .lt-lg\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .lt-lg\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .lt-lg\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .lt-lg\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .lt-lg\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .lt-lg\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .lt-lg\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .lt-lg\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .lt-lg\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .lt-lg\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .lt-lg\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .lt-lg\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .lt-lg\:mt-4 {
    margin-top: 1rem !important;
  }

  .lt-lg\:mr-4 {
    margin-right: 1rem !important;
  }

  .lt-lg\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .lt-lg\:ml-4 {
    margin-left: 1rem !important;
  }

  .lt-lg\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .lt-lg\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .lt-lg\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .lt-lg\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .lt-lg\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .lt-lg\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .lt-lg\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .lt-lg\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .lt-lg\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .lt-lg\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .lt-lg\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .lt-lg\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .lt-lg\:mt-8 {
    margin-top: 2rem !important;
  }

  .lt-lg\:mr-8 {
    margin-right: 2rem !important;
  }

  .lt-lg\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .lt-lg\:ml-8 {
    margin-left: 2rem !important;
  }

  .lt-lg\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .lt-lg\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .lt-lg\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .lt-lg\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .lt-lg\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .lt-lg\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .lt-lg\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .lt-lg\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .lt-lg\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .lt-lg\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .lt-lg\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .lt-lg\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .lt-lg\:mt-12 {
    margin-top: 3rem !important;
  }

  .lt-lg\:mr-12 {
    margin-right: 3rem !important;
  }

  .lt-lg\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .lt-lg\:ml-12 {
    margin-left: 3rem !important;
  }

  .lt-lg\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .lt-lg\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .lt-lg\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .lt-lg\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .lt-lg\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .lt-lg\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .lt-lg\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .lt-lg\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .lt-lg\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .lt-lg\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .lt-lg\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .lt-lg\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .lt-lg\:mt-16 {
    margin-top: 4rem !important;
  }

  .lt-lg\:mr-16 {
    margin-right: 4rem !important;
  }

  .lt-lg\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .lt-lg\:ml-16 {
    margin-left: 4rem !important;
  }

  .lt-lg\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .lt-lg\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .lt-lg\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .lt-lg\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .lt-lg\:mt-20 {
    margin-top: 5rem !important;
  }

  .lt-lg\:mr-20 {
    margin-right: 5rem !important;
  }

  .lt-lg\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .lt-lg\:ml-20 {
    margin-left: 5rem !important;
  }

  .lt-lg\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .lt-lg\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .lt-lg\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .lt-lg\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .lt-lg\:mt-24 {
    margin-top: 6rem !important;
  }

  .lt-lg\:mr-24 {
    margin-right: 6rem !important;
  }

  .lt-lg\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .lt-lg\:ml-24 {
    margin-left: 6rem !important;
  }

  .lt-lg\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .lt-lg\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .lt-lg\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .lt-lg\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .lt-lg\:mt-28 {
    margin-top: 7rem !important;
  }

  .lt-lg\:mr-28 {
    margin-right: 7rem !important;
  }

  .lt-lg\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .lt-lg\:ml-28 {
    margin-left: 7rem !important;
  }

  .lt-lg\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .lt-lg\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .lt-lg\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .lt-lg\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .lt-lg\:mt-32 {
    margin-top: 8rem !important;
  }

  .lt-lg\:mr-32 {
    margin-right: 8rem !important;
  }

  .lt-lg\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .lt-lg\:ml-32 {
    margin-left: 8rem !important;
  }

  .lt-lg\:mt-36 {
    margin-top: 9rem !important;
  }

  .lt-lg\:mr-36 {
    margin-right: 9rem !important;
  }

  .lt-lg\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .lt-lg\:ml-36 {
    margin-left: 9rem !important;
  }

  .lt-lg\:mt-40 {
    margin-top: 10rem !important;
  }

  .lt-lg\:mr-40 {
    margin-right: 10rem !important;
  }

  .lt-lg\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .lt-lg\:ml-40 {
    margin-left: 10rem !important;
  }

  .lt-lg\:mt-44 {
    margin-top: 11rem !important;
  }

  .lt-lg\:mr-44 {
    margin-right: 11rem !important;
  }

  .lt-lg\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .lt-lg\:ml-44 {
    margin-left: 11rem !important;
  }

  .lt-lg\:mt-48 {
    margin-top: 12rem !important;
  }

  .lt-lg\:mr-48 {
    margin-right: 12rem !important;
  }

  .lt-lg\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .lt-lg\:ml-48 {
    margin-left: 12rem !important;
  }

  .lt-lg\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .lt-lg\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .lt-lg\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .lt-lg\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .lt-lg\:mt-52 {
    margin-top: 13rem !important;
  }

  .lt-lg\:mr-52 {
    margin-right: 13rem !important;
  }

  .lt-lg\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .lt-lg\:ml-52 {
    margin-left: 13rem !important;
  }

  .lt-lg\:mt-56 {
    margin-top: 14rem !important;
  }

  .lt-lg\:mr-56 {
    margin-right: 14rem !important;
  }

  .lt-lg\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .lt-lg\:ml-56 {
    margin-left: 14rem !important;
  }

  .lt-lg\:mt-60 {
    margin-top: 15rem !important;
  }

  .lt-lg\:mr-60 {
    margin-right: 15rem !important;
  }

  .lt-lg\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .lt-lg\:ml-60 {
    margin-left: 15rem !important;
  }

  .lt-lg\:mt-64 {
    margin-top: 16rem !important;
  }

  .lt-lg\:mr-64 {
    margin-right: 16rem !important;
  }

  .lt-lg\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .lt-lg\:ml-64 {
    margin-left: 16rem !important;
  }

  .lt-lg\:mt-72 {
    margin-top: 18rem !important;
  }

  .lt-lg\:mr-72 {
    margin-right: 18rem !important;
  }

  .lt-lg\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .lt-lg\:ml-72 {
    margin-left: 18rem !important;
  }

  .lt-lg\:mt-80 {
    margin-top: 20rem !important;
  }

  .lt-lg\:mr-80 {
    margin-right: 20rem !important;
  }

  .lt-lg\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .lt-lg\:ml-80 {
    margin-left: 20rem !important;
  }

  .lt-lg\:mt-90 {
    margin-top: 24rem !important;
  }

  .lt-lg\:mr-90 {
    margin-right: 24rem !important;
  }

  .lt-lg\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .lt-lg\:ml-90 {
    margin-left: 24rem !important;
  }

  .lt-lg\:mt-96 {
    margin-top: 24rem !important;
  }

  .lt-lg\:mr-96 {
    margin-right: 24rem !important;
  }

  .lt-lg\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .lt-lg\:ml-96 {
    margin-left: 24rem !important;
  }

  .lt-lg\:mt-100 {
    margin-top: 25rem !important;
  }

  .lt-lg\:mr-100 {
    margin-right: 25rem !important;
  }

  .lt-lg\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .lt-lg\:ml-100 {
    margin-left: 25rem !important;
  }

  .lt-lg\:mt-120 {
    margin-top: 30rem !important;
  }

  .lt-lg\:mr-120 {
    margin-right: 30rem !important;
  }

  .lt-lg\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .lt-lg\:ml-120 {
    margin-left: 30rem !important;
  }

  .lt-lg\:mt-128 {
    margin-top: 32rem !important;
  }

  .lt-lg\:mr-128 {
    margin-right: 32rem !important;
  }

  .lt-lg\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .lt-lg\:ml-128 {
    margin-left: 32rem !important;
  }

  .lt-lg\:mt-140 {
    margin-top: 35rem !important;
  }

  .lt-lg\:mr-140 {
    margin-right: 35rem !important;
  }

  .lt-lg\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .lt-lg\:ml-140 {
    margin-left: 35rem !important;
  }

  .lt-lg\:mt-160 {
    margin-top: 40rem !important;
  }

  .lt-lg\:mr-160 {
    margin-right: 40rem !important;
  }

  .lt-lg\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .lt-lg\:ml-160 {
    margin-left: 40rem !important;
  }

  .lt-lg\:mt-180 {
    margin-top: 45rem !important;
  }

  .lt-lg\:mr-180 {
    margin-right: 45rem !important;
  }

  .lt-lg\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .lt-lg\:ml-180 {
    margin-left: 45rem !important;
  }

  .lt-lg\:mt-192 {
    margin-top: 48rem !important;
  }

  .lt-lg\:mr-192 {
    margin-right: 48rem !important;
  }

  .lt-lg\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .lt-lg\:ml-192 {
    margin-left: 48rem !important;
  }

  .lt-lg\:mt-200 {
    margin-top: 50rem !important;
  }

  .lt-lg\:mr-200 {
    margin-right: 50rem !important;
  }

  .lt-lg\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .lt-lg\:ml-200 {
    margin-left: 50rem !important;
  }

  .lt-lg\:mt-240 {
    margin-top: 60rem !important;
  }

  .lt-lg\:mr-240 {
    margin-right: 60rem !important;
  }

  .lt-lg\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .lt-lg\:ml-240 {
    margin-left: 60rem !important;
  }

  .lt-lg\:mt-256 {
    margin-top: 64rem !important;
  }

  .lt-lg\:mr-256 {
    margin-right: 64rem !important;
  }

  .lt-lg\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .lt-lg\:ml-256 {
    margin-left: 64rem !important;
  }

  .lt-lg\:mt-280 {
    margin-top: 70rem !important;
  }

  .lt-lg\:mr-280 {
    margin-right: 70rem !important;
  }

  .lt-lg\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .lt-lg\:ml-280 {
    margin-left: 70rem !important;
  }

  .lt-lg\:mt-320 {
    margin-top: 80rem !important;
  }

  .lt-lg\:mr-320 {
    margin-right: 80rem !important;
  }

  .lt-lg\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .lt-lg\:ml-320 {
    margin-left: 80rem !important;
  }

  .lt-lg\:mt-360 {
    margin-top: 90rem !important;
  }

  .lt-lg\:mr-360 {
    margin-right: 90rem !important;
  }

  .lt-lg\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .lt-lg\:ml-360 {
    margin-left: 90rem !important;
  }

  .lt-lg\:mt-400 {
    margin-top: 100rem !important;
  }

  .lt-lg\:mr-400 {
    margin-right: 100rem !important;
  }

  .lt-lg\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .lt-lg\:ml-400 {
    margin-left: 100rem !important;
  }

  .lt-lg\:mt-480 {
    margin-top: 120rem !important;
  }

  .lt-lg\:mr-480 {
    margin-right: 120rem !important;
  }

  .lt-lg\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .lt-lg\:ml-480 {
    margin-left: 120rem !important;
  }

  .lt-lg\:mt-auto {
    margin-top: auto !important;
  }

  .lt-lg\:mr-auto {
    margin-right: auto !important;
  }

  .lt-lg\:mb-auto {
    margin-bottom: auto !important;
  }

  .lt-lg\:ml-auto {
    margin-left: auto !important;
  }

  .lt-lg\:mt-px {
    margin-top: 1px !important;
  }

  .lt-lg\:mr-px {
    margin-right: 1px !important;
  }

  .lt-lg\:mb-px {
    margin-bottom: 1px !important;
  }

  .lt-lg\:ml-px {
    margin-left: 1px !important;
  }

  .lt-lg\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .lt-lg\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .lt-lg\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .lt-lg\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .lt-lg\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .lt-lg\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .lt-lg\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .lt-lg\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .lt-lg\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .lt-lg\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .lt-lg\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .lt-lg\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .lt-lg\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .lt-lg\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .lt-lg\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .lt-lg\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .lt-lg\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .lt-lg\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .lt-lg\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .lt-lg\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .lt-lg\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .lt-lg\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .lt-lg\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .lt-lg\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .lt-lg\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .lt-lg\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .lt-lg\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .lt-lg\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .lt-lg\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .lt-lg\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .lt-lg\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .lt-lg\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .lt-lg\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .lt-lg\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .lt-lg\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .lt-lg\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .lt-lg\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .lt-lg\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .lt-lg\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .lt-lg\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .lt-lg\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .lt-lg\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .lt-lg\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .lt-lg\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .lt-lg\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .lt-lg\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .lt-lg\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .lt-lg\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .lt-lg\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .lt-lg\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .lt-lg\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .lt-lg\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .lt-lg\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .lt-lg\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .lt-lg\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .lt-lg\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .lt-lg\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .lt-lg\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .lt-lg\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .lt-lg\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .lt-lg\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .lt-lg\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .lt-lg\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .lt-lg\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .lt-lg\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .lt-lg\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .lt-lg\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .lt-lg\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .lt-lg\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .lt-lg\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .lt-lg\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .lt-lg\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .lt-lg\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .lt-lg\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .lt-lg\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .lt-lg\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .lt-lg\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .lt-lg\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .lt-lg\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .lt-lg\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .lt-lg\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .lt-lg\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .lt-lg\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .lt-lg\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .lt-lg\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .lt-lg\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .lt-lg\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .lt-lg\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .lt-lg\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .lt-lg\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .lt-lg\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .lt-lg\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .lt-lg\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .lt-lg\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .lt-lg\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .lt-lg\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .lt-lg\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .lt-lg\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .lt-lg\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .lt-lg\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .lt-lg\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .lt-lg\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .lt-lg\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .lt-lg\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .lt-lg\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .lt-lg\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .lt-lg\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .lt-lg\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .lt-lg\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .lt-lg\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .lt-lg\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .lt-lg\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .lt-lg\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .lt-lg\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .lt-lg\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .lt-lg\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .lt-lg\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .lt-lg\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .lt-lg\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .lt-lg\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .lt-lg\:mt-full {
    margin-top: 100% !important;
  }

  .lt-lg\:mr-full {
    margin-right: 100% !important;
  }

  .lt-lg\:mb-full {
    margin-bottom: 100% !important;
  }

  .lt-lg\:ml-full {
    margin-left: 100% !important;
  }

  .lt-lg\:mt-2px {
    margin-top: 2px !important;
  }

  .lt-lg\:mr-2px {
    margin-right: 2px !important;
  }

  .lt-lg\:mb-2px {
    margin-bottom: 2px !important;
  }

  .lt-lg\:ml-2px {
    margin-left: 2px !important;
  }

  .lt-lg\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .lt-lg\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .lt-lg\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .lt-lg\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .lt-lg\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .lt-lg\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .lt-lg\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .lt-lg\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .lt-lg\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .lt-lg\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .lt-lg\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .lt-lg\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .lt-lg\:-mt-4 {
    margin-top: -1rem !important;
  }

  .lt-lg\:-mr-4 {
    margin-right: -1rem !important;
  }

  .lt-lg\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .lt-lg\:-ml-4 {
    margin-left: -1rem !important;
  }

  .lt-lg\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .lt-lg\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .lt-lg\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .lt-lg\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .lt-lg\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .lt-lg\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .lt-lg\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .lt-lg\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .lt-lg\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .lt-lg\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .lt-lg\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .lt-lg\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .lt-lg\:-mt-8 {
    margin-top: -2rem !important;
  }

  .lt-lg\:-mr-8 {
    margin-right: -2rem !important;
  }

  .lt-lg\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .lt-lg\:-ml-8 {
    margin-left: -2rem !important;
  }

  .lt-lg\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .lt-lg\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .lt-lg\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .lt-lg\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .lt-lg\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .lt-lg\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .lt-lg\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .lt-lg\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .lt-lg\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .lt-lg\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .lt-lg\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .lt-lg\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .lt-lg\:-mt-12 {
    margin-top: -3rem !important;
  }

  .lt-lg\:-mr-12 {
    margin-right: -3rem !important;
  }

  .lt-lg\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .lt-lg\:-ml-12 {
    margin-left: -3rem !important;
  }

  .lt-lg\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .lt-lg\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .lt-lg\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .lt-lg\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .lt-lg\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .lt-lg\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .lt-lg\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .lt-lg\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .lt-lg\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .lt-lg\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .lt-lg\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .lt-lg\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .lt-lg\:-mt-16 {
    margin-top: -4rem !important;
  }

  .lt-lg\:-mr-16 {
    margin-right: -4rem !important;
  }

  .lt-lg\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .lt-lg\:-ml-16 {
    margin-left: -4rem !important;
  }

  .lt-lg\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .lt-lg\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .lt-lg\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .lt-lg\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .lt-lg\:-mt-20 {
    margin-top: -5rem !important;
  }

  .lt-lg\:-mr-20 {
    margin-right: -5rem !important;
  }

  .lt-lg\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .lt-lg\:-ml-20 {
    margin-left: -5rem !important;
  }

  .lt-lg\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .lt-lg\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .lt-lg\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .lt-lg\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .lt-lg\:-mt-24 {
    margin-top: -6rem !important;
  }

  .lt-lg\:-mr-24 {
    margin-right: -6rem !important;
  }

  .lt-lg\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .lt-lg\:-ml-24 {
    margin-left: -6rem !important;
  }

  .lt-lg\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .lt-lg\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .lt-lg\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .lt-lg\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .lt-lg\:-mt-28 {
    margin-top: -7rem !important;
  }

  .lt-lg\:-mr-28 {
    margin-right: -7rem !important;
  }

  .lt-lg\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .lt-lg\:-ml-28 {
    margin-left: -7rem !important;
  }

  .lt-lg\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .lt-lg\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .lt-lg\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .lt-lg\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .lt-lg\:-mt-32 {
    margin-top: -8rem !important;
  }

  .lt-lg\:-mr-32 {
    margin-right: -8rem !important;
  }

  .lt-lg\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .lt-lg\:-ml-32 {
    margin-left: -8rem !important;
  }

  .lt-lg\:-mt-36 {
    margin-top: -9rem !important;
  }

  .lt-lg\:-mr-36 {
    margin-right: -9rem !important;
  }

  .lt-lg\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .lt-lg\:-ml-36 {
    margin-left: -9rem !important;
  }

  .lt-lg\:-mt-40 {
    margin-top: -10rem !important;
  }

  .lt-lg\:-mr-40 {
    margin-right: -10rem !important;
  }

  .lt-lg\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .lt-lg\:-ml-40 {
    margin-left: -10rem !important;
  }

  .lt-lg\:-mt-44 {
    margin-top: -11rem !important;
  }

  .lt-lg\:-mr-44 {
    margin-right: -11rem !important;
  }

  .lt-lg\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .lt-lg\:-ml-44 {
    margin-left: -11rem !important;
  }

  .lt-lg\:-mt-48 {
    margin-top: -12rem !important;
  }

  .lt-lg\:-mr-48 {
    margin-right: -12rem !important;
  }

  .lt-lg\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .lt-lg\:-ml-48 {
    margin-left: -12rem !important;
  }

  .lt-lg\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .lt-lg\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .lt-lg\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .lt-lg\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .lt-lg\:-mt-52 {
    margin-top: -13rem !important;
  }

  .lt-lg\:-mr-52 {
    margin-right: -13rem !important;
  }

  .lt-lg\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .lt-lg\:-ml-52 {
    margin-left: -13rem !important;
  }

  .lt-lg\:-mt-56 {
    margin-top: -14rem !important;
  }

  .lt-lg\:-mr-56 {
    margin-right: -14rem !important;
  }

  .lt-lg\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .lt-lg\:-ml-56 {
    margin-left: -14rem !important;
  }

  .lt-lg\:-mt-60 {
    margin-top: -15rem !important;
  }

  .lt-lg\:-mr-60 {
    margin-right: -15rem !important;
  }

  .lt-lg\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .lt-lg\:-ml-60 {
    margin-left: -15rem !important;
  }

  .lt-lg\:-mt-64 {
    margin-top: -16rem !important;
  }

  .lt-lg\:-mr-64 {
    margin-right: -16rem !important;
  }

  .lt-lg\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .lt-lg\:-ml-64 {
    margin-left: -16rem !important;
  }

  .lt-lg\:-mt-72 {
    margin-top: -18rem !important;
  }

  .lt-lg\:-mr-72 {
    margin-right: -18rem !important;
  }

  .lt-lg\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .lt-lg\:-ml-72 {
    margin-left: -18rem !important;
  }

  .lt-lg\:-mt-80 {
    margin-top: -20rem !important;
  }

  .lt-lg\:-mr-80 {
    margin-right: -20rem !important;
  }

  .lt-lg\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .lt-lg\:-ml-80 {
    margin-left: -20rem !important;
  }

  .lt-lg\:-mt-90 {
    margin-top: -24rem !important;
  }

  .lt-lg\:-mr-90 {
    margin-right: -24rem !important;
  }

  .lt-lg\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .lt-lg\:-ml-90 {
    margin-left: -24rem !important;
  }

  .lt-lg\:-mt-96 {
    margin-top: -24rem !important;
  }

  .lt-lg\:-mr-96 {
    margin-right: -24rem !important;
  }

  .lt-lg\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .lt-lg\:-ml-96 {
    margin-left: -24rem !important;
  }

  .lt-lg\:-mt-100 {
    margin-top: -25rem !important;
  }

  .lt-lg\:-mr-100 {
    margin-right: -25rem !important;
  }

  .lt-lg\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .lt-lg\:-ml-100 {
    margin-left: -25rem !important;
  }

  .lt-lg\:-mt-120 {
    margin-top: -30rem !important;
  }

  .lt-lg\:-mr-120 {
    margin-right: -30rem !important;
  }

  .lt-lg\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .lt-lg\:-ml-120 {
    margin-left: -30rem !important;
  }

  .lt-lg\:-mt-128 {
    margin-top: -32rem !important;
  }

  .lt-lg\:-mr-128 {
    margin-right: -32rem !important;
  }

  .lt-lg\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .lt-lg\:-ml-128 {
    margin-left: -32rem !important;
  }

  .lt-lg\:-mt-140 {
    margin-top: -35rem !important;
  }

  .lt-lg\:-mr-140 {
    margin-right: -35rem !important;
  }

  .lt-lg\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .lt-lg\:-ml-140 {
    margin-left: -35rem !important;
  }

  .lt-lg\:-mt-160 {
    margin-top: -40rem !important;
  }

  .lt-lg\:-mr-160 {
    margin-right: -40rem !important;
  }

  .lt-lg\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .lt-lg\:-ml-160 {
    margin-left: -40rem !important;
  }

  .lt-lg\:-mt-180 {
    margin-top: -45rem !important;
  }

  .lt-lg\:-mr-180 {
    margin-right: -45rem !important;
  }

  .lt-lg\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .lt-lg\:-ml-180 {
    margin-left: -45rem !important;
  }

  .lt-lg\:-mt-192 {
    margin-top: -48rem !important;
  }

  .lt-lg\:-mr-192 {
    margin-right: -48rem !important;
  }

  .lt-lg\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .lt-lg\:-ml-192 {
    margin-left: -48rem !important;
  }

  .lt-lg\:-mt-200 {
    margin-top: -50rem !important;
  }

  .lt-lg\:-mr-200 {
    margin-right: -50rem !important;
  }

  .lt-lg\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .lt-lg\:-ml-200 {
    margin-left: -50rem !important;
  }

  .lt-lg\:-mt-240 {
    margin-top: -60rem !important;
  }

  .lt-lg\:-mr-240 {
    margin-right: -60rem !important;
  }

  .lt-lg\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .lt-lg\:-ml-240 {
    margin-left: -60rem !important;
  }

  .lt-lg\:-mt-256 {
    margin-top: -64rem !important;
  }

  .lt-lg\:-mr-256 {
    margin-right: -64rem !important;
  }

  .lt-lg\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .lt-lg\:-ml-256 {
    margin-left: -64rem !important;
  }

  .lt-lg\:-mt-280 {
    margin-top: -70rem !important;
  }

  .lt-lg\:-mr-280 {
    margin-right: -70rem !important;
  }

  .lt-lg\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .lt-lg\:-ml-280 {
    margin-left: -70rem !important;
  }

  .lt-lg\:-mt-320 {
    margin-top: -80rem !important;
  }

  .lt-lg\:-mr-320 {
    margin-right: -80rem !important;
  }

  .lt-lg\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .lt-lg\:-ml-320 {
    margin-left: -80rem !important;
  }

  .lt-lg\:-mt-360 {
    margin-top: -90rem !important;
  }

  .lt-lg\:-mr-360 {
    margin-right: -90rem !important;
  }

  .lt-lg\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .lt-lg\:-ml-360 {
    margin-left: -90rem !important;
  }

  .lt-lg\:-mt-400 {
    margin-top: -100rem !important;
  }

  .lt-lg\:-mr-400 {
    margin-right: -100rem !important;
  }

  .lt-lg\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .lt-lg\:-ml-400 {
    margin-left: -100rem !important;
  }

  .lt-lg\:-mt-480 {
    margin-top: -120rem !important;
  }

  .lt-lg\:-mr-480 {
    margin-right: -120rem !important;
  }

  .lt-lg\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .lt-lg\:-ml-480 {
    margin-left: -120rem !important;
  }

  .lt-lg\:-mt-px {
    margin-top: -1px !important;
  }

  .lt-lg\:-mr-px {
    margin-right: -1px !important;
  }

  .lt-lg\:-mb-px {
    margin-bottom: -1px !important;
  }

  .lt-lg\:-ml-px {
    margin-left: -1px !important;
  }

  .lt-lg\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .lt-lg\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .lt-lg\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .lt-lg\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .lt-lg\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .lt-lg\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .lt-lg\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .lt-lg\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .lt-lg\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .lt-lg\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .lt-lg\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .lt-lg\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .lt-lg\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .lt-lg\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .lt-lg\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .lt-lg\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .lt-lg\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .lt-lg\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .lt-lg\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .lt-lg\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .lt-lg\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .lt-lg\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .lt-lg\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .lt-lg\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .lt-lg\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .lt-lg\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .lt-lg\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .lt-lg\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .lt-lg\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .lt-lg\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .lt-lg\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .lt-lg\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .lt-lg\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .lt-lg\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .lt-lg\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .lt-lg\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .lt-lg\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .lt-lg\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .lt-lg\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .lt-lg\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .lt-lg\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .lt-lg\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .lt-lg\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .lt-lg\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .lt-lg\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .lt-lg\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .lt-lg\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .lt-lg\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .lt-lg\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .lt-lg\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .lt-lg\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .lt-lg\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .lt-lg\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .lt-lg\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .lt-lg\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .lt-lg\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .lt-lg\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .lt-lg\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .lt-lg\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .lt-lg\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .lt-lg\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .lt-lg\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .lt-lg\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .lt-lg\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .lt-lg\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .lt-lg\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .lt-lg\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .lt-lg\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .lt-lg\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .lt-lg\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .lt-lg\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .lt-lg\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .lt-lg\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .lt-lg\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .lt-lg\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .lt-lg\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .lt-lg\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .lt-lg\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .lt-lg\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .lt-lg\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .lt-lg\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .lt-lg\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .lt-lg\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .lt-lg\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .lt-lg\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .lt-lg\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .lt-lg\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .lt-lg\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .lt-lg\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .lt-lg\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .lt-lg\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .lt-lg\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .lt-lg\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .lt-lg\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .lt-lg\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .lt-lg\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .lt-lg\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .lt-lg\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .lt-lg\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .lt-lg\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .lt-lg\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .lt-lg\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .lt-lg\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .lt-lg\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .lt-lg\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .lt-lg\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .lt-lg\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .lt-lg\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .lt-lg\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .lt-lg\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .lt-lg\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .lt-lg\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .lt-lg\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .lt-lg\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .lt-lg\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .lt-lg\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .lt-lg\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .lt-lg\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .lt-lg\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .lt-lg\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .lt-lg\:-mt-full {
    margin-top: -100% !important;
  }

  .lt-lg\:-mr-full {
    margin-right: -100% !important;
  }

  .lt-lg\:-mb-full {
    margin-bottom: -100% !important;
  }

  .lt-lg\:-ml-full {
    margin-left: -100% !important;
  }

  .lt-lg\:-mt-2px {
    margin-top: -2px !important;
  }

  .lt-lg\:-mr-2px {
    margin-right: -2px !important;
  }

  .lt-lg\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .lt-lg\:-ml-2px {
    margin-left: -2px !important;
  }

  .lt-lg\:max-h-0 {
    max-height: 0 !important;
  }

  .lt-lg\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .lt-lg\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .lt-lg\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .lt-lg\:max-h-4 {
    max-height: 1rem !important;
  }

  .lt-lg\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .lt-lg\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .lt-lg\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .lt-lg\:max-h-8 {
    max-height: 2rem !important;
  }

  .lt-lg\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .lt-lg\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .lt-lg\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .lt-lg\:max-h-12 {
    max-height: 3rem !important;
  }

  .lt-lg\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .lt-lg\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .lt-lg\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .lt-lg\:max-h-16 {
    max-height: 4rem !important;
  }

  .lt-lg\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .lt-lg\:max-h-20 {
    max-height: 5rem !important;
  }

  .lt-lg\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .lt-lg\:max-h-24 {
    max-height: 6rem !important;
  }

  .lt-lg\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .lt-lg\:max-h-28 {
    max-height: 7rem !important;
  }

  .lt-lg\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .lt-lg\:max-h-32 {
    max-height: 8rem !important;
  }

  .lt-lg\:max-h-36 {
    max-height: 9rem !important;
  }

  .lt-lg\:max-h-40 {
    max-height: 10rem !important;
  }

  .lt-lg\:max-h-44 {
    max-height: 11rem !important;
  }

  .lt-lg\:max-h-48 {
    max-height: 12rem !important;
  }

  .lt-lg\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .lt-lg\:max-h-52 {
    max-height: 13rem !important;
  }

  .lt-lg\:max-h-56 {
    max-height: 14rem !important;
  }

  .lt-lg\:max-h-60 {
    max-height: 15rem !important;
  }

  .lt-lg\:max-h-64 {
    max-height: 16rem !important;
  }

  .lt-lg\:max-h-72 {
    max-height: 18rem !important;
  }

  .lt-lg\:max-h-80 {
    max-height: 20rem !important;
  }

  .lt-lg\:max-h-90 {
    max-height: 24rem !important;
  }

  .lt-lg\:max-h-96 {
    max-height: 24rem !important;
  }

  .lt-lg\:max-h-100 {
    max-height: 25rem !important;
  }

  .lt-lg\:max-h-120 {
    max-height: 30rem !important;
  }

  .lt-lg\:max-h-128 {
    max-height: 32rem !important;
  }

  .lt-lg\:max-h-140 {
    max-height: 35rem !important;
  }

  .lt-lg\:max-h-160 {
    max-height: 40rem !important;
  }

  .lt-lg\:max-h-180 {
    max-height: 45rem !important;
  }

  .lt-lg\:max-h-192 {
    max-height: 48rem !important;
  }

  .lt-lg\:max-h-200 {
    max-height: 50rem !important;
  }

  .lt-lg\:max-h-240 {
    max-height: 60rem !important;
  }

  .lt-lg\:max-h-256 {
    max-height: 64rem !important;
  }

  .lt-lg\:max-h-280 {
    max-height: 70rem !important;
  }

  .lt-lg\:max-h-320 {
    max-height: 80rem !important;
  }

  .lt-lg\:max-h-360 {
    max-height: 90rem !important;
  }

  .lt-lg\:max-h-400 {
    max-height: 100rem !important;
  }

  .lt-lg\:max-h-480 {
    max-height: 120rem !important;
  }

  .lt-lg\:max-h-screen {
    max-height: 100vh !important;
  }

  .lt-lg\:max-h-px {
    max-height: 1px !important;
  }

  .lt-lg\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .lt-lg\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .lt-lg\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .lt-lg\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .lt-lg\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .lt-lg\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .lt-lg\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .lt-lg\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .lt-lg\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .lt-lg\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .lt-lg\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .lt-lg\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .lt-lg\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .lt-lg\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .lt-lg\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .lt-lg\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .lt-lg\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .lt-lg\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .lt-lg\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .lt-lg\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .lt-lg\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .lt-lg\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .lt-lg\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .lt-lg\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .lt-lg\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .lt-lg\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .lt-lg\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .lt-lg\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .lt-lg\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .lt-lg\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .lt-lg\:max-h-full {
    max-height: 100% !important;
  }

  .lt-lg\:max-h-2px {
    max-height: 2px !important;
  }

  .lt-lg\:max-h-none {
    max-height: none !important;
  }

  .lt-lg\:max-w-0 {
    max-width: 0 !important;
  }

  .lt-lg\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .lt-lg\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .lt-lg\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .lt-lg\:max-w-4 {
    max-width: 1rem !important;
  }

  .lt-lg\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .lt-lg\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .lt-lg\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .lt-lg\:max-w-8 {
    max-width: 2rem !important;
  }

  .lt-lg\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .lt-lg\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .lt-lg\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .lt-lg\:max-w-12 {
    max-width: 3rem !important;
  }

  .lt-lg\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .lt-lg\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .lt-lg\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .lt-lg\:max-w-16 {
    max-width: 4rem !important;
  }

  .lt-lg\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .lt-lg\:max-w-20 {
    max-width: 5rem !important;
  }

  .lt-lg\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .lt-lg\:max-w-24 {
    max-width: 6rem !important;
  }

  .lt-lg\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .lt-lg\:max-w-28 {
    max-width: 7rem !important;
  }

  .lt-lg\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .lt-lg\:max-w-32 {
    max-width: 8rem !important;
  }

  .lt-lg\:max-w-36 {
    max-width: 9rem !important;
  }

  .lt-lg\:max-w-40 {
    max-width: 10rem !important;
  }

  .lt-lg\:max-w-44 {
    max-width: 11rem !important;
  }

  .lt-lg\:max-w-48 {
    max-width: 12rem !important;
  }

  .lt-lg\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .lt-lg\:max-w-52 {
    max-width: 13rem !important;
  }

  .lt-lg\:max-w-56 {
    max-width: 14rem !important;
  }

  .lt-lg\:max-w-60 {
    max-width: 15rem !important;
  }

  .lt-lg\:max-w-64 {
    max-width: 16rem !important;
  }

  .lt-lg\:max-w-72 {
    max-width: 18rem !important;
  }

  .lt-lg\:max-w-80 {
    max-width: 20rem !important;
  }

  .lt-lg\:max-w-90 {
    max-width: 24rem !important;
  }

  .lt-lg\:max-w-96 {
    max-width: 24rem !important;
  }

  .lt-lg\:max-w-100 {
    max-width: 25rem !important;
  }

  .lt-lg\:max-w-120 {
    max-width: 30rem !important;
  }

  .lt-lg\:max-w-128 {
    max-width: 32rem !important;
  }

  .lt-lg\:max-w-140 {
    max-width: 35rem !important;
  }

  .lt-lg\:max-w-160 {
    max-width: 40rem !important;
  }

  .lt-lg\:max-w-180 {
    max-width: 45rem !important;
  }

  .lt-lg\:max-w-192 {
    max-width: 48rem !important;
  }

  .lt-lg\:max-w-200 {
    max-width: 50rem !important;
  }

  .lt-lg\:max-w-240 {
    max-width: 60rem !important;
  }

  .lt-lg\:max-w-256 {
    max-width: 64rem !important;
  }

  .lt-lg\:max-w-280 {
    max-width: 70rem !important;
  }

  .lt-lg\:max-w-320 {
    max-width: 80rem !important;
  }

  .lt-lg\:max-w-360 {
    max-width: 90rem !important;
  }

  .lt-lg\:max-w-400 {
    max-width: 100rem !important;
  }

  .lt-lg\:max-w-480 {
    max-width: 120rem !important;
  }

  .lt-lg\:max-w-none {
    max-width: none !important;
  }

  .lt-lg\:max-w-xs {
    max-width: 20rem !important;
  }

  .lt-lg\:max-w-sm {
    max-width: 24rem !important;
  }

  .lt-lg\:max-w-md {
    max-width: 28rem !important;
  }

  .lt-lg\:max-w-lg {
    max-width: 32rem !important;
  }

  .lt-lg\:max-w-xl {
    max-width: 36rem !important;
  }

  .lt-lg\:max-w-2xl {
    max-width: 42rem !important;
  }

  .lt-lg\:max-w-3xl {
    max-width: 48rem !important;
  }

  .lt-lg\:max-w-4xl {
    max-width: 56rem !important;
  }

  .lt-lg\:max-w-5xl {
    max-width: 64rem !important;
  }

  .lt-lg\:max-w-6xl {
    max-width: 72rem !important;
  }

  .lt-lg\:max-w-7xl {
    max-width: 80rem !important;
  }

  .lt-lg\:max-w-full {
    max-width: 100% !important;
  }

  .lt-lg\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .lt-lg\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .lt-lg\:max-w-screen {
    max-width: 100vw !important;
  }

  .lt-lg\:max-w-px {
    max-width: 1px !important;
  }

  .lt-lg\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .lt-lg\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .lt-lg\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .lt-lg\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .lt-lg\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .lt-lg\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .lt-lg\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .lt-lg\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .lt-lg\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .lt-lg\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .lt-lg\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .lt-lg\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .lt-lg\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .lt-lg\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .lt-lg\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .lt-lg\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .lt-lg\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .lt-lg\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .lt-lg\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .lt-lg\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .lt-lg\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .lt-lg\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .lt-lg\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .lt-lg\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .lt-lg\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .lt-lg\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .lt-lg\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .lt-lg\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .lt-lg\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .lt-lg\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .lt-lg\:max-w-2px {
    max-width: 2px !important;
  }

  .lt-lg\:min-h-0 {
    min-height: 0 !important;
  }

  .lt-lg\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .lt-lg\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .lt-lg\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .lt-lg\:min-h-4 {
    min-height: 1rem !important;
  }

  .lt-lg\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .lt-lg\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .lt-lg\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .lt-lg\:min-h-8 {
    min-height: 2rem !important;
  }

  .lt-lg\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .lt-lg\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .lt-lg\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .lt-lg\:min-h-12 {
    min-height: 3rem !important;
  }

  .lt-lg\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .lt-lg\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .lt-lg\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .lt-lg\:min-h-16 {
    min-height: 4rem !important;
  }

  .lt-lg\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .lt-lg\:min-h-20 {
    min-height: 5rem !important;
  }

  .lt-lg\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .lt-lg\:min-h-24 {
    min-height: 6rem !important;
  }

  .lt-lg\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .lt-lg\:min-h-28 {
    min-height: 7rem !important;
  }

  .lt-lg\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .lt-lg\:min-h-32 {
    min-height: 8rem !important;
  }

  .lt-lg\:min-h-36 {
    min-height: 9rem !important;
  }

  .lt-lg\:min-h-40 {
    min-height: 10rem !important;
  }

  .lt-lg\:min-h-44 {
    min-height: 11rem !important;
  }

  .lt-lg\:min-h-48 {
    min-height: 12rem !important;
  }

  .lt-lg\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .lt-lg\:min-h-52 {
    min-height: 13rem !important;
  }

  .lt-lg\:min-h-56 {
    min-height: 14rem !important;
  }

  .lt-lg\:min-h-60 {
    min-height: 15rem !important;
  }

  .lt-lg\:min-h-64 {
    min-height: 16rem !important;
  }

  .lt-lg\:min-h-72 {
    min-height: 18rem !important;
  }

  .lt-lg\:min-h-80 {
    min-height: 20rem !important;
  }

  .lt-lg\:min-h-90 {
    min-height: 24rem !important;
  }

  .lt-lg\:min-h-96 {
    min-height: 24rem !important;
  }

  .lt-lg\:min-h-100 {
    min-height: 25rem !important;
  }

  .lt-lg\:min-h-120 {
    min-height: 30rem !important;
  }

  .lt-lg\:min-h-128 {
    min-height: 32rem !important;
  }

  .lt-lg\:min-h-140 {
    min-height: 35rem !important;
  }

  .lt-lg\:min-h-160 {
    min-height: 40rem !important;
  }

  .lt-lg\:min-h-180 {
    min-height: 45rem !important;
  }

  .lt-lg\:min-h-192 {
    min-height: 48rem !important;
  }

  .lt-lg\:min-h-200 {
    min-height: 50rem !important;
  }

  .lt-lg\:min-h-240 {
    min-height: 60rem !important;
  }

  .lt-lg\:min-h-256 {
    min-height: 64rem !important;
  }

  .lt-lg\:min-h-280 {
    min-height: 70rem !important;
  }

  .lt-lg\:min-h-320 {
    min-height: 80rem !important;
  }

  .lt-lg\:min-h-360 {
    min-height: 90rem !important;
  }

  .lt-lg\:min-h-400 {
    min-height: 100rem !important;
  }

  .lt-lg\:min-h-480 {
    min-height: 120rem !important;
  }

  .lt-lg\:min-h-full {
    min-height: 100% !important;
  }

  .lt-lg\:min-h-screen {
    min-height: 100vh !important;
  }

  .lt-lg\:min-h-px {
    min-height: 1px !important;
  }

  .lt-lg\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .lt-lg\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .lt-lg\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .lt-lg\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .lt-lg\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .lt-lg\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .lt-lg\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .lt-lg\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .lt-lg\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .lt-lg\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .lt-lg\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .lt-lg\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .lt-lg\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .lt-lg\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .lt-lg\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .lt-lg\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .lt-lg\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .lt-lg\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .lt-lg\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .lt-lg\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .lt-lg\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .lt-lg\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .lt-lg\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .lt-lg\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .lt-lg\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .lt-lg\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .lt-lg\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .lt-lg\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .lt-lg\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .lt-lg\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .lt-lg\:min-h-2px {
    min-height: 2px !important;
  }

  .lt-lg\:min-w-0 {
    min-width: 0 !important;
  }

  .lt-lg\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .lt-lg\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .lt-lg\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .lt-lg\:min-w-4 {
    min-width: 1rem !important;
  }

  .lt-lg\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .lt-lg\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .lt-lg\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .lt-lg\:min-w-8 {
    min-width: 2rem !important;
  }

  .lt-lg\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .lt-lg\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .lt-lg\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .lt-lg\:min-w-12 {
    min-width: 3rem !important;
  }

  .lt-lg\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .lt-lg\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .lt-lg\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .lt-lg\:min-w-16 {
    min-width: 4rem !important;
  }

  .lt-lg\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .lt-lg\:min-w-20 {
    min-width: 5rem !important;
  }

  .lt-lg\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .lt-lg\:min-w-24 {
    min-width: 6rem !important;
  }

  .lt-lg\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .lt-lg\:min-w-28 {
    min-width: 7rem !important;
  }

  .lt-lg\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .lt-lg\:min-w-32 {
    min-width: 8rem !important;
  }

  .lt-lg\:min-w-36 {
    min-width: 9rem !important;
  }

  .lt-lg\:min-w-40 {
    min-width: 10rem !important;
  }

  .lt-lg\:min-w-44 {
    min-width: 11rem !important;
  }

  .lt-lg\:min-w-48 {
    min-width: 12rem !important;
  }

  .lt-lg\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .lt-lg\:min-w-52 {
    min-width: 13rem !important;
  }

  .lt-lg\:min-w-56 {
    min-width: 14rem !important;
  }

  .lt-lg\:min-w-60 {
    min-width: 15rem !important;
  }

  .lt-lg\:min-w-64 {
    min-width: 16rem !important;
  }

  .lt-lg\:min-w-72 {
    min-width: 18rem !important;
  }

  .lt-lg\:min-w-80 {
    min-width: 20rem !important;
  }

  .lt-lg\:min-w-90 {
    min-width: 24rem !important;
  }

  .lt-lg\:min-w-96 {
    min-width: 24rem !important;
  }

  .lt-lg\:min-w-100 {
    min-width: 25rem !important;
  }

  .lt-lg\:min-w-120 {
    min-width: 30rem !important;
  }

  .lt-lg\:min-w-128 {
    min-width: 32rem !important;
  }

  .lt-lg\:min-w-140 {
    min-width: 35rem !important;
  }

  .lt-lg\:min-w-160 {
    min-width: 40rem !important;
  }

  .lt-lg\:min-w-180 {
    min-width: 45rem !important;
  }

  .lt-lg\:min-w-192 {
    min-width: 48rem !important;
  }

  .lt-lg\:min-w-200 {
    min-width: 50rem !important;
  }

  .lt-lg\:min-w-240 {
    min-width: 60rem !important;
  }

  .lt-lg\:min-w-256 {
    min-width: 64rem !important;
  }

  .lt-lg\:min-w-280 {
    min-width: 70rem !important;
  }

  .lt-lg\:min-w-320 {
    min-width: 80rem !important;
  }

  .lt-lg\:min-w-360 {
    min-width: 90rem !important;
  }

  .lt-lg\:min-w-400 {
    min-width: 100rem !important;
  }

  .lt-lg\:min-w-480 {
    min-width: 120rem !important;
  }

  .lt-lg\:min-w-full {
    min-width: 100% !important;
  }

  .lt-lg\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .lt-lg\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .lt-lg\:min-w-screen {
    min-width: 100vw !important;
  }

  .lt-lg\:min-w-px {
    min-width: 1px !important;
  }

  .lt-lg\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .lt-lg\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .lt-lg\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .lt-lg\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .lt-lg\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .lt-lg\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .lt-lg\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .lt-lg\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .lt-lg\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .lt-lg\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .lt-lg\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .lt-lg\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .lt-lg\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .lt-lg\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .lt-lg\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .lt-lg\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .lt-lg\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .lt-lg\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .lt-lg\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .lt-lg\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .lt-lg\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .lt-lg\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .lt-lg\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .lt-lg\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .lt-lg\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .lt-lg\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .lt-lg\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .lt-lg\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .lt-lg\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .lt-lg\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .lt-lg\:min-w-2px {
    min-width: 2px !important;
  }

  .lt-lg\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .lt-lg\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .lt-lg\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .lt-lg\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .lt-lg\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .lt-lg\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .lt-lg\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .lt-lg\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .lt-lg\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .lt-lg\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .lt-lg\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .lt-lg\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .lt-lg\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .lt-lg\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .lt-lg\:opacity-0 {
    opacity: 0 !important;
  }

  .lt-lg\:opacity-12 {
    opacity: 0.12 !important;
  }

  .lt-lg\:opacity-25 {
    opacity: 0.25 !important;
  }

  .lt-lg\:opacity-38 {
    opacity: 0.38 !important;
  }

  .lt-lg\:opacity-50 {
    opacity: 0.5 !important;
  }

  .lt-lg\:opacity-54 {
    opacity: 0.54 !important;
  }

  .lt-lg\:opacity-70 {
    opacity: 0.7 !important;
  }

  .lt-lg\:opacity-75 {
    opacity: 0.75 !important;
  }

  .lt-lg\:opacity-84 {
    opacity: 0.84 !important;
  }

  .lt-lg\:opacity-100 {
    opacity: 1 !important;
  }

  .lt-lg\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .lt-lg\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .lt-lg\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .lt-lg\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .lt-lg\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .lt-lg\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .lt-lg\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .lt-lg\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .lt-lg\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .lt-lg\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .lt-lg\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .lt-lg\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .lt-lg\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .lt-lg\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .lt-lg\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .lt-lg\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .lt-lg\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .lt-lg\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .lt-lg\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .lt-lg\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .lt-lg\:overflow-auto {
    overflow: auto !important;
  }

  .lt-lg\:overflow-hidden {
    overflow: hidden !important;
  }

  .lt-lg\:overflow-visible {
    overflow: visible !important;
  }

  .lt-lg\:overflow-scroll {
    overflow: scroll !important;
  }

  .lt-lg\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .lt-lg\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .lt-lg\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .lt-lg\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .lt-lg\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .lt-lg\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .lt-lg\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .lt-lg\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .lt-lg\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .lt-lg\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .lt-lg\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .lt-lg\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .lt-lg\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .lt-lg\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .lt-lg\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .lt-lg\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .lt-lg\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .lt-lg\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .lt-lg\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .lt-lg\:p-0 {
    padding: 0 !important;
  }

  .lt-lg\:p-1 {
    padding: 0.25rem !important;
  }

  .lt-lg\:p-2 {
    padding: 0.5rem !important;
  }

  .lt-lg\:p-3 {
    padding: 0.75rem !important;
  }

  .lt-lg\:p-4 {
    padding: 1rem !important;
  }

  .lt-lg\:p-5 {
    padding: 1.25rem !important;
  }

  .lt-lg\:p-6 {
    padding: 1.5rem !important;
  }

  .lt-lg\:p-7 {
    padding: 1.75rem !important;
  }

  .lt-lg\:p-8 {
    padding: 2rem !important;
  }

  .lt-lg\:p-9 {
    padding: 2.25rem !important;
  }

  .lt-lg\:p-10 {
    padding: 2.5rem !important;
  }

  .lt-lg\:p-11 {
    padding: 2.75rem !important;
  }

  .lt-lg\:p-12 {
    padding: 3rem !important;
  }

  .lt-lg\:p-13 {
    padding: 3.25rem !important;
  }

  .lt-lg\:p-14 {
    padding: 3.5rem !important;
  }

  .lt-lg\:p-15 {
    padding: 3.75rem !important;
  }

  .lt-lg\:p-16 {
    padding: 4rem !important;
  }

  .lt-lg\:p-18 {
    padding: 4.5rem !important;
  }

  .lt-lg\:p-20 {
    padding: 5rem !important;
  }

  .lt-lg\:p-22 {
    padding: 5.5rem !important;
  }

  .lt-lg\:p-24 {
    padding: 6rem !important;
  }

  .lt-lg\:p-26 {
    padding: 6.5rem !important;
  }

  .lt-lg\:p-28 {
    padding: 7rem !important;
  }

  .lt-lg\:p-30 {
    padding: 7.5rem !important;
  }

  .lt-lg\:p-32 {
    padding: 8rem !important;
  }

  .lt-lg\:p-36 {
    padding: 9rem !important;
  }

  .lt-lg\:p-40 {
    padding: 10rem !important;
  }

  .lt-lg\:p-44 {
    padding: 11rem !important;
  }

  .lt-lg\:p-48 {
    padding: 12rem !important;
  }

  .lt-lg\:p-50 {
    padding: 12.5rem !important;
  }

  .lt-lg\:p-52 {
    padding: 13rem !important;
  }

  .lt-lg\:p-56 {
    padding: 14rem !important;
  }

  .lt-lg\:p-60 {
    padding: 15rem !important;
  }

  .lt-lg\:p-64 {
    padding: 16rem !important;
  }

  .lt-lg\:p-72 {
    padding: 18rem !important;
  }

  .lt-lg\:p-80 {
    padding: 20rem !important;
  }

  .lt-lg\:p-90 {
    padding: 24rem !important;
  }

  .lt-lg\:p-96 {
    padding: 24rem !important;
  }

  .lt-lg\:p-100 {
    padding: 25rem !important;
  }

  .lt-lg\:p-120 {
    padding: 30rem !important;
  }

  .lt-lg\:p-128 {
    padding: 32rem !important;
  }

  .lt-lg\:p-140 {
    padding: 35rem !important;
  }

  .lt-lg\:p-160 {
    padding: 40rem !important;
  }

  .lt-lg\:p-180 {
    padding: 45rem !important;
  }

  .lt-lg\:p-192 {
    padding: 48rem !important;
  }

  .lt-lg\:p-200 {
    padding: 50rem !important;
  }

  .lt-lg\:p-240 {
    padding: 60rem !important;
  }

  .lt-lg\:p-256 {
    padding: 64rem !important;
  }

  .lt-lg\:p-280 {
    padding: 70rem !important;
  }

  .lt-lg\:p-320 {
    padding: 80rem !important;
  }

  .lt-lg\:p-360 {
    padding: 90rem !important;
  }

  .lt-lg\:p-400 {
    padding: 100rem !important;
  }

  .lt-lg\:p-480 {
    padding: 120rem !important;
  }

  .lt-lg\:p-px {
    padding: 1px !important;
  }

  .lt-lg\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .lt-lg\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .lt-lg\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .lt-lg\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .lt-lg\:p-1\/2 {
    padding: 50% !important;
  }

  .lt-lg\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .lt-lg\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .lt-lg\:p-1\/4 {
    padding: 25% !important;
  }

  .lt-lg\:p-2\/4 {
    padding: 50% !important;
  }

  .lt-lg\:p-3\/4 {
    padding: 75% !important;
  }

  .lt-lg\:p-1\/5 {
    padding: 20% !important;
  }

  .lt-lg\:p-2\/5 {
    padding: 40% !important;
  }

  .lt-lg\:p-3\/5 {
    padding: 60% !important;
  }

  .lt-lg\:p-4\/5 {
    padding: 80% !important;
  }

  .lt-lg\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .lt-lg\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .lt-lg\:p-3\/6 {
    padding: 50% !important;
  }

  .lt-lg\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .lt-lg\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .lt-lg\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .lt-lg\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .lt-lg\:p-3\/12 {
    padding: 25% !important;
  }

  .lt-lg\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .lt-lg\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .lt-lg\:p-6\/12 {
    padding: 50% !important;
  }

  .lt-lg\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .lt-lg\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .lt-lg\:p-9\/12 {
    padding: 75% !important;
  }

  .lt-lg\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .lt-lg\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .lt-lg\:p-full {
    padding: 100% !important;
  }

  .lt-lg\:p-2px {
    padding: 2px !important;
  }

  .lt-lg\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .lt-lg\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .lt-lg\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .lt-lg\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .lt-lg\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .lt-lg\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .lt-lg\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .lt-lg\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .lt-lg\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .lt-lg\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .lt-lg\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .lt-lg\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .lt-lg\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .lt-lg\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .lt-lg\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .lt-lg\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .lt-lg\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lt-lg\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .lt-lg\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .lt-lg\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .lt-lg\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lt-lg\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .lt-lg\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .lt-lg\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .lt-lg\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lt-lg\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .lt-lg\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .lt-lg\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .lt-lg\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .lt-lg\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .lt-lg\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .lt-lg\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .lt-lg\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .lt-lg\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .lt-lg\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .lt-lg\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .lt-lg\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .lt-lg\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .lt-lg\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .lt-lg\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .lt-lg\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .lt-lg\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .lt-lg\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .lt-lg\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .lt-lg\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .lt-lg\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .lt-lg\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .lt-lg\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .lt-lg\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .lt-lg\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .lt-lg\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .lt-lg\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .lt-lg\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .lt-lg\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .lt-lg\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .lt-lg\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .lt-lg\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .lt-lg\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .lt-lg\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .lt-lg\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .lt-lg\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .lt-lg\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .lt-lg\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .lt-lg\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .lt-lg\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .lt-lg\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .lt-lg\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .lt-lg\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .lt-lg\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .lt-lg\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .lt-lg\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .lt-lg\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .lt-lg\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .lt-lg\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .lt-lg\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .lt-lg\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .lt-lg\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .lt-lg\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .lt-lg\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .lt-lg\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .lt-lg\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .lt-lg\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .lt-lg\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .lt-lg\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .lt-lg\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .lt-lg\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .lt-lg\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .lt-lg\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .lt-lg\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .lt-lg\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .lt-lg\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .lt-lg\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .lt-lg\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .lt-lg\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .lt-lg\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .lt-lg\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .lt-lg\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .lt-lg\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .lt-lg\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .lt-lg\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .lt-lg\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .lt-lg\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .lt-lg\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .lt-lg\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .lt-lg\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .lt-lg\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .lt-lg\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .lt-lg\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .lt-lg\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .lt-lg\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .lt-lg\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .lt-lg\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .lt-lg\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .lt-lg\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .lt-lg\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .lt-lg\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .lt-lg\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-lg\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-lg\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lt-lg\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lt-lg\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lt-lg\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lt-lg\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .lt-lg\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .lt-lg\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-lg\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-lg\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .lt-lg\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .lt-lg\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .lt-lg\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .lt-lg\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .lt-lg\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .lt-lg\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .lt-lg\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .lt-lg\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .lt-lg\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .lt-lg\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .lt-lg\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .lt-lg\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lt-lg\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lt-lg\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-lg\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-lg\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lt-lg\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lt-lg\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .lt-lg\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .lt-lg\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .lt-lg\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .lt-lg\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .lt-lg\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .lt-lg\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .lt-lg\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .lt-lg\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lt-lg\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lt-lg\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .lt-lg\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .lt-lg\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-lg\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-lg\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .lt-lg\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .lt-lg\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lt-lg\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lt-lg\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .lt-lg\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .lt-lg\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .lt-lg\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .lt-lg\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .lt-lg\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .lt-lg\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .lt-lg\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .lt-lg\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .lt-lg\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .lt-lg\:pt-0 {
    padding-top: 0 !important;
  }

  .lt-lg\:pr-0 {
    padding-right: 0 !important;
  }

  .lt-lg\:pb-0 {
    padding-bottom: 0 !important;
  }

  .lt-lg\:pl-0 {
    padding-left: 0 !important;
  }

  .lt-lg\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .lt-lg\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .lt-lg\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .lt-lg\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .lt-lg\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .lt-lg\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .lt-lg\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .lt-lg\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .lt-lg\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .lt-lg\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .lt-lg\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .lt-lg\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .lt-lg\:pt-4 {
    padding-top: 1rem !important;
  }

  .lt-lg\:pr-4 {
    padding-right: 1rem !important;
  }

  .lt-lg\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .lt-lg\:pl-4 {
    padding-left: 1rem !important;
  }

  .lt-lg\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .lt-lg\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .lt-lg\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .lt-lg\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .lt-lg\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .lt-lg\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .lt-lg\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .lt-lg\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .lt-lg\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .lt-lg\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .lt-lg\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .lt-lg\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .lt-lg\:pt-8 {
    padding-top: 2rem !important;
  }

  .lt-lg\:pr-8 {
    padding-right: 2rem !important;
  }

  .lt-lg\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .lt-lg\:pl-8 {
    padding-left: 2rem !important;
  }

  .lt-lg\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .lt-lg\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .lt-lg\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .lt-lg\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .lt-lg\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .lt-lg\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .lt-lg\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .lt-lg\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .lt-lg\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .lt-lg\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .lt-lg\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .lt-lg\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .lt-lg\:pt-12 {
    padding-top: 3rem !important;
  }

  .lt-lg\:pr-12 {
    padding-right: 3rem !important;
  }

  .lt-lg\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .lt-lg\:pl-12 {
    padding-left: 3rem !important;
  }

  .lt-lg\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .lt-lg\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .lt-lg\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .lt-lg\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .lt-lg\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .lt-lg\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .lt-lg\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .lt-lg\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .lt-lg\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .lt-lg\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .lt-lg\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .lt-lg\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .lt-lg\:pt-16 {
    padding-top: 4rem !important;
  }

  .lt-lg\:pr-16 {
    padding-right: 4rem !important;
  }

  .lt-lg\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .lt-lg\:pl-16 {
    padding-left: 4rem !important;
  }

  .lt-lg\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .lt-lg\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .lt-lg\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .lt-lg\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .lt-lg\:pt-20 {
    padding-top: 5rem !important;
  }

  .lt-lg\:pr-20 {
    padding-right: 5rem !important;
  }

  .lt-lg\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .lt-lg\:pl-20 {
    padding-left: 5rem !important;
  }

  .lt-lg\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .lt-lg\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .lt-lg\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .lt-lg\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .lt-lg\:pt-24 {
    padding-top: 6rem !important;
  }

  .lt-lg\:pr-24 {
    padding-right: 6rem !important;
  }

  .lt-lg\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .lt-lg\:pl-24 {
    padding-left: 6rem !important;
  }

  .lt-lg\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .lt-lg\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .lt-lg\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .lt-lg\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .lt-lg\:pt-28 {
    padding-top: 7rem !important;
  }

  .lt-lg\:pr-28 {
    padding-right: 7rem !important;
  }

  .lt-lg\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .lt-lg\:pl-28 {
    padding-left: 7rem !important;
  }

  .lt-lg\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .lt-lg\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .lt-lg\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .lt-lg\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .lt-lg\:pt-32 {
    padding-top: 8rem !important;
  }

  .lt-lg\:pr-32 {
    padding-right: 8rem !important;
  }

  .lt-lg\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .lt-lg\:pl-32 {
    padding-left: 8rem !important;
  }

  .lt-lg\:pt-36 {
    padding-top: 9rem !important;
  }

  .lt-lg\:pr-36 {
    padding-right: 9rem !important;
  }

  .lt-lg\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .lt-lg\:pl-36 {
    padding-left: 9rem !important;
  }

  .lt-lg\:pt-40 {
    padding-top: 10rem !important;
  }

  .lt-lg\:pr-40 {
    padding-right: 10rem !important;
  }

  .lt-lg\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .lt-lg\:pl-40 {
    padding-left: 10rem !important;
  }

  .lt-lg\:pt-44 {
    padding-top: 11rem !important;
  }

  .lt-lg\:pr-44 {
    padding-right: 11rem !important;
  }

  .lt-lg\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .lt-lg\:pl-44 {
    padding-left: 11rem !important;
  }

  .lt-lg\:pt-48 {
    padding-top: 12rem !important;
  }

  .lt-lg\:pr-48 {
    padding-right: 12rem !important;
  }

  .lt-lg\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .lt-lg\:pl-48 {
    padding-left: 12rem !important;
  }

  .lt-lg\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .lt-lg\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .lt-lg\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .lt-lg\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .lt-lg\:pt-52 {
    padding-top: 13rem !important;
  }

  .lt-lg\:pr-52 {
    padding-right: 13rem !important;
  }

  .lt-lg\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .lt-lg\:pl-52 {
    padding-left: 13rem !important;
  }

  .lt-lg\:pt-56 {
    padding-top: 14rem !important;
  }

  .lt-lg\:pr-56 {
    padding-right: 14rem !important;
  }

  .lt-lg\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .lt-lg\:pl-56 {
    padding-left: 14rem !important;
  }

  .lt-lg\:pt-60 {
    padding-top: 15rem !important;
  }

  .lt-lg\:pr-60 {
    padding-right: 15rem !important;
  }

  .lt-lg\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .lt-lg\:pl-60 {
    padding-left: 15rem !important;
  }

  .lt-lg\:pt-64 {
    padding-top: 16rem !important;
  }

  .lt-lg\:pr-64 {
    padding-right: 16rem !important;
  }

  .lt-lg\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .lt-lg\:pl-64 {
    padding-left: 16rem !important;
  }

  .lt-lg\:pt-72 {
    padding-top: 18rem !important;
  }

  .lt-lg\:pr-72 {
    padding-right: 18rem !important;
  }

  .lt-lg\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .lt-lg\:pl-72 {
    padding-left: 18rem !important;
  }

  .lt-lg\:pt-80 {
    padding-top: 20rem !important;
  }

  .lt-lg\:pr-80 {
    padding-right: 20rem !important;
  }

  .lt-lg\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .lt-lg\:pl-80 {
    padding-left: 20rem !important;
  }

  .lt-lg\:pt-90 {
    padding-top: 24rem !important;
  }

  .lt-lg\:pr-90 {
    padding-right: 24rem !important;
  }

  .lt-lg\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .lt-lg\:pl-90 {
    padding-left: 24rem !important;
  }

  .lt-lg\:pt-96 {
    padding-top: 24rem !important;
  }

  .lt-lg\:pr-96 {
    padding-right: 24rem !important;
  }

  .lt-lg\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .lt-lg\:pl-96 {
    padding-left: 24rem !important;
  }

  .lt-lg\:pt-100 {
    padding-top: 25rem !important;
  }

  .lt-lg\:pr-100 {
    padding-right: 25rem !important;
  }

  .lt-lg\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .lt-lg\:pl-100 {
    padding-left: 25rem !important;
  }

  .lt-lg\:pt-120 {
    padding-top: 30rem !important;
  }

  .lt-lg\:pr-120 {
    padding-right: 30rem !important;
  }

  .lt-lg\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .lt-lg\:pl-120 {
    padding-left: 30rem !important;
  }

  .lt-lg\:pt-128 {
    padding-top: 32rem !important;
  }

  .lt-lg\:pr-128 {
    padding-right: 32rem !important;
  }

  .lt-lg\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .lt-lg\:pl-128 {
    padding-left: 32rem !important;
  }

  .lt-lg\:pt-140 {
    padding-top: 35rem !important;
  }

  .lt-lg\:pr-140 {
    padding-right: 35rem !important;
  }

  .lt-lg\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .lt-lg\:pl-140 {
    padding-left: 35rem !important;
  }

  .lt-lg\:pt-160 {
    padding-top: 40rem !important;
  }

  .lt-lg\:pr-160 {
    padding-right: 40rem !important;
  }

  .lt-lg\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .lt-lg\:pl-160 {
    padding-left: 40rem !important;
  }

  .lt-lg\:pt-180 {
    padding-top: 45rem !important;
  }

  .lt-lg\:pr-180 {
    padding-right: 45rem !important;
  }

  .lt-lg\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .lt-lg\:pl-180 {
    padding-left: 45rem !important;
  }

  .lt-lg\:pt-192 {
    padding-top: 48rem !important;
  }

  .lt-lg\:pr-192 {
    padding-right: 48rem !important;
  }

  .lt-lg\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .lt-lg\:pl-192 {
    padding-left: 48rem !important;
  }

  .lt-lg\:pt-200 {
    padding-top: 50rem !important;
  }

  .lt-lg\:pr-200 {
    padding-right: 50rem !important;
  }

  .lt-lg\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .lt-lg\:pl-200 {
    padding-left: 50rem !important;
  }

  .lt-lg\:pt-240 {
    padding-top: 60rem !important;
  }

  .lt-lg\:pr-240 {
    padding-right: 60rem !important;
  }

  .lt-lg\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .lt-lg\:pl-240 {
    padding-left: 60rem !important;
  }

  .lt-lg\:pt-256 {
    padding-top: 64rem !important;
  }

  .lt-lg\:pr-256 {
    padding-right: 64rem !important;
  }

  .lt-lg\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .lt-lg\:pl-256 {
    padding-left: 64rem !important;
  }

  .lt-lg\:pt-280 {
    padding-top: 70rem !important;
  }

  .lt-lg\:pr-280 {
    padding-right: 70rem !important;
  }

  .lt-lg\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .lt-lg\:pl-280 {
    padding-left: 70rem !important;
  }

  .lt-lg\:pt-320 {
    padding-top: 80rem !important;
  }

  .lt-lg\:pr-320 {
    padding-right: 80rem !important;
  }

  .lt-lg\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .lt-lg\:pl-320 {
    padding-left: 80rem !important;
  }

  .lt-lg\:pt-360 {
    padding-top: 90rem !important;
  }

  .lt-lg\:pr-360 {
    padding-right: 90rem !important;
  }

  .lt-lg\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .lt-lg\:pl-360 {
    padding-left: 90rem !important;
  }

  .lt-lg\:pt-400 {
    padding-top: 100rem !important;
  }

  .lt-lg\:pr-400 {
    padding-right: 100rem !important;
  }

  .lt-lg\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .lt-lg\:pl-400 {
    padding-left: 100rem !important;
  }

  .lt-lg\:pt-480 {
    padding-top: 120rem !important;
  }

  .lt-lg\:pr-480 {
    padding-right: 120rem !important;
  }

  .lt-lg\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .lt-lg\:pl-480 {
    padding-left: 120rem !important;
  }

  .lt-lg\:pt-px {
    padding-top: 1px !important;
  }

  .lt-lg\:pr-px {
    padding-right: 1px !important;
  }

  .lt-lg\:pb-px {
    padding-bottom: 1px !important;
  }

  .lt-lg\:pl-px {
    padding-left: 1px !important;
  }

  .lt-lg\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .lt-lg\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .lt-lg\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .lt-lg\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .lt-lg\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .lt-lg\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .lt-lg\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .lt-lg\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .lt-lg\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .lt-lg\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .lt-lg\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .lt-lg\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .lt-lg\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .lt-lg\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .lt-lg\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .lt-lg\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .lt-lg\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .lt-lg\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .lt-lg\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .lt-lg\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .lt-lg\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .lt-lg\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .lt-lg\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .lt-lg\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .lt-lg\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .lt-lg\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .lt-lg\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .lt-lg\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .lt-lg\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .lt-lg\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .lt-lg\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .lt-lg\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .lt-lg\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .lt-lg\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .lt-lg\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .lt-lg\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .lt-lg\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .lt-lg\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .lt-lg\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .lt-lg\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .lt-lg\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .lt-lg\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .lt-lg\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .lt-lg\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .lt-lg\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .lt-lg\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .lt-lg\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .lt-lg\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .lt-lg\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .lt-lg\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .lt-lg\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .lt-lg\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .lt-lg\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .lt-lg\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .lt-lg\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .lt-lg\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .lt-lg\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .lt-lg\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .lt-lg\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .lt-lg\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .lt-lg\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .lt-lg\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .lt-lg\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .lt-lg\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .lt-lg\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .lt-lg\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .lt-lg\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .lt-lg\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .lt-lg\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .lt-lg\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .lt-lg\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .lt-lg\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .lt-lg\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .lt-lg\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .lt-lg\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .lt-lg\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .lt-lg\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .lt-lg\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .lt-lg\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .lt-lg\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .lt-lg\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .lt-lg\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .lt-lg\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .lt-lg\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .lt-lg\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .lt-lg\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .lt-lg\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .lt-lg\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .lt-lg\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .lt-lg\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .lt-lg\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .lt-lg\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .lt-lg\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .lt-lg\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .lt-lg\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .lt-lg\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .lt-lg\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .lt-lg\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .lt-lg\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .lt-lg\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .lt-lg\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .lt-lg\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .lt-lg\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .lt-lg\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .lt-lg\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .lt-lg\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .lt-lg\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .lt-lg\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .lt-lg\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .lt-lg\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .lt-lg\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .lt-lg\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .lt-lg\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .lt-lg\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .lt-lg\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .lt-lg\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .lt-lg\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .lt-lg\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .lt-lg\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .lt-lg\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .lt-lg\:pt-full {
    padding-top: 100% !important;
  }

  .lt-lg\:pr-full {
    padding-right: 100% !important;
  }

  .lt-lg\:pb-full {
    padding-bottom: 100% !important;
  }

  .lt-lg\:pl-full {
    padding-left: 100% !important;
  }

  .lt-lg\:pt-2px {
    padding-top: 2px !important;
  }

  .lt-lg\:pr-2px {
    padding-right: 2px !important;
  }

  .lt-lg\:pb-2px {
    padding-bottom: 2px !important;
  }

  .lt-lg\:pl-2px {
    padding-left: 2px !important;
  }

  .lt-lg\:static {
    position: static !important;
  }

  .lt-lg\:fixed {
    position: fixed !important;
  }

  .lt-lg\:absolute {
    position: absolute !important;
  }

  .lt-lg\:relative {
    position: relative !important;
  }

  .lt-lg\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .lt-lg\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .lt-lg\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .lt-lg\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .lt-lg\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .lt-lg\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .lt-lg\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .lt-lg\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .lt-lg\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .lt-lg\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .lt-lg\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .lt-lg\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .lt-lg\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .lt-lg\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .lt-lg\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .lt-lg\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .lt-lg\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .lt-lg\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .lt-lg\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .lt-lg\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .lt-lg\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .lt-lg\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .lt-lg\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .lt-lg\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .lt-lg\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .lt-lg\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .lt-lg\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .lt-lg\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .lt-lg\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .lt-lg\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .lt-lg\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .lt-lg\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .lt-lg\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .lt-lg\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .lt-lg\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .lt-lg\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .lt-lg\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .lt-lg\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .lt-lg\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .lt-lg\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .lt-lg\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .lt-lg\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .lt-lg\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .lt-lg\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .lt-lg\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .lt-lg\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .lt-lg\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .lt-lg\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .lt-lg\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .lt-lg\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .lt-lg\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .lt-lg\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .lt-lg\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .lt-lg\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .lt-lg\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .lt-lg\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .lt-lg\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .lt-lg\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .lt-lg\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .lt-lg\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .lt-lg\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-lg\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-lg\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-lg\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .lt-lg\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-lg\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .lt-lg\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .lt-lg\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .lt-lg\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .lt-lg\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .lt-lg\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-lg\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-lg\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-lg\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-lg\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-lg\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .lt-lg\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-lg\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .lt-lg\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-lg\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .lt-lg\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-lg\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .lt-lg\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-lg\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .lt-lg\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-lg\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .lt-lg\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .lt-lg\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .lt-lg\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .lt-lg\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .lt-lg\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .lt-lg\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .lt-lg\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .lt-lg\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .lt-lg\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .lt-lg\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .lt-lg\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .lt-lg\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .lt-lg\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .lt-lg\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .lt-lg\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .lt-lg\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .lt-lg\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .lt-lg\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .lt-lg\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .lt-lg\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .lt-lg\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .lt-lg\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .lt-lg\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .lt-lg\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .lt-lg\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .lt-lg\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .lt-lg\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .lt-lg\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .lt-lg\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .lt-lg\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .lt-lg\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .lt-lg\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .lt-lg\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .lt-lg\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .lt-lg\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .lt-lg\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .lt-lg\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .lt-lg\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .lt-lg\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .lt-lg\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .lt-lg\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .lt-lg\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .lt-lg\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .lt-lg\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .lt-lg\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .lt-lg\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .lt-lg\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .lt-lg\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .lt-lg\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .lt-lg\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .lt-lg\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .lt-lg\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .lt-lg\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .lt-lg\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .lt-lg\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .lt-lg\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .lt-lg\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .lt-lg\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .lt-lg\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .lt-lg\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .lt-lg\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .lt-lg\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .lt-lg\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .lt-lg\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .lt-lg\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .lt-lg\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .lt-lg\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .lt-lg\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .lt-lg\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .lt-lg\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .lt-lg\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .lt-lg\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .lt-lg\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .lt-lg\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .lt-lg\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .lt-lg\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .lt-lg\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .lt-lg\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .lt-lg\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .lt-lg\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .lt-lg\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .lt-lg\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .lt-lg\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .lt-lg\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .lt-lg\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .lt-lg\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .lt-lg\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .lt-lg\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .lt-lg\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .lt-lg\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .lt-lg\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .lt-lg\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .lt-lg\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .lt-lg\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .lt-lg\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .lt-lg\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .lt-lg\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .lt-lg\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .lt-lg\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .lt-lg\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .lt-lg\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .lt-lg\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .lt-lg\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .lt-lg\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .lt-lg\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .lt-lg\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .lt-lg\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .lt-lg\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .lt-lg\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .lt-lg\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .lt-lg\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .lt-lg\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .lt-lg\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .lt-lg\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .lt-lg\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .lt-lg\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .lt-lg\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .lt-lg\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .lt-lg\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .lt-lg\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .lt-lg\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-lg\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-lg\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lt-lg\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-lg\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lt-lg\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-lg\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .lt-lg\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .lt-lg\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-lg\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-lg\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .lt-lg\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .lt-lg\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .lt-lg\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .lt-lg\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .lt-lg\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .lt-lg\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .lt-lg\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .lt-lg\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .lt-lg\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .lt-lg\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .lt-lg\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-lg\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lt-lg\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-lg\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-lg\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-lg\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lt-lg\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-lg\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .lt-lg\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-lg\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .lt-lg\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .lt-lg\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .lt-lg\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-lg\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .lt-lg\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .lt-lg\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lt-lg\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-lg\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .lt-lg\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .lt-lg\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-lg\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-lg\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .lt-lg\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .lt-lg\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lt-lg\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-lg\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .lt-lg\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .lt-lg\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .lt-lg\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-lg\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .lt-lg\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .lt-lg\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .lt-lg\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .lt-lg\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .lt-lg\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .lt-lg\:top-0 {
    top: 0 !important;
  }

  .lt-lg\:right-0 {
    right: 0 !important;
  }

  .lt-lg\:bottom-0 {
    bottom: 0 !important;
  }

  .lt-lg\:left-0 {
    left: 0 !important;
  }

  .lt-lg\:top-1 {
    top: 0.25rem !important;
  }

  .lt-lg\:right-1 {
    right: 0.25rem !important;
  }

  .lt-lg\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .lt-lg\:left-1 {
    left: 0.25rem !important;
  }

  .lt-lg\:top-2 {
    top: 0.5rem !important;
  }

  .lt-lg\:right-2 {
    right: 0.5rem !important;
  }

  .lt-lg\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .lt-lg\:left-2 {
    left: 0.5rem !important;
  }

  .lt-lg\:top-3 {
    top: 0.75rem !important;
  }

  .lt-lg\:right-3 {
    right: 0.75rem !important;
  }

  .lt-lg\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .lt-lg\:left-3 {
    left: 0.75rem !important;
  }

  .lt-lg\:top-4 {
    top: 1rem !important;
  }

  .lt-lg\:right-4 {
    right: 1rem !important;
  }

  .lt-lg\:bottom-4 {
    bottom: 1rem !important;
  }

  .lt-lg\:left-4 {
    left: 1rem !important;
  }

  .lt-lg\:top-5 {
    top: 1.25rem !important;
  }

  .lt-lg\:right-5 {
    right: 1.25rem !important;
  }

  .lt-lg\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .lt-lg\:left-5 {
    left: 1.25rem !important;
  }

  .lt-lg\:top-6 {
    top: 1.5rem !important;
  }

  .lt-lg\:right-6 {
    right: 1.5rem !important;
  }

  .lt-lg\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .lt-lg\:left-6 {
    left: 1.5rem !important;
  }

  .lt-lg\:top-7 {
    top: 1.75rem !important;
  }

  .lt-lg\:right-7 {
    right: 1.75rem !important;
  }

  .lt-lg\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .lt-lg\:left-7 {
    left: 1.75rem !important;
  }

  .lt-lg\:top-8 {
    top: 2rem !important;
  }

  .lt-lg\:right-8 {
    right: 2rem !important;
  }

  .lt-lg\:bottom-8 {
    bottom: 2rem !important;
  }

  .lt-lg\:left-8 {
    left: 2rem !important;
  }

  .lt-lg\:top-9 {
    top: 2.25rem !important;
  }

  .lt-lg\:right-9 {
    right: 2.25rem !important;
  }

  .lt-lg\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .lt-lg\:left-9 {
    left: 2.25rem !important;
  }

  .lt-lg\:top-10 {
    top: 2.5rem !important;
  }

  .lt-lg\:right-10 {
    right: 2.5rem !important;
  }

  .lt-lg\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .lt-lg\:left-10 {
    left: 2.5rem !important;
  }

  .lt-lg\:top-11 {
    top: 2.75rem !important;
  }

  .lt-lg\:right-11 {
    right: 2.75rem !important;
  }

  .lt-lg\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .lt-lg\:left-11 {
    left: 2.75rem !important;
  }

  .lt-lg\:top-12 {
    top: 3rem !important;
  }

  .lt-lg\:right-12 {
    right: 3rem !important;
  }

  .lt-lg\:bottom-12 {
    bottom: 3rem !important;
  }

  .lt-lg\:left-12 {
    left: 3rem !important;
  }

  .lt-lg\:top-13 {
    top: 3.25rem !important;
  }

  .lt-lg\:right-13 {
    right: 3.25rem !important;
  }

  .lt-lg\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .lt-lg\:left-13 {
    left: 3.25rem !important;
  }

  .lt-lg\:top-14 {
    top: 3.5rem !important;
  }

  .lt-lg\:right-14 {
    right: 3.5rem !important;
  }

  .lt-lg\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .lt-lg\:left-14 {
    left: 3.5rem !important;
  }

  .lt-lg\:top-15 {
    top: 3.75rem !important;
  }

  .lt-lg\:right-15 {
    right: 3.75rem !important;
  }

  .lt-lg\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .lt-lg\:left-15 {
    left: 3.75rem !important;
  }

  .lt-lg\:top-16 {
    top: 4rem !important;
  }

  .lt-lg\:right-16 {
    right: 4rem !important;
  }

  .lt-lg\:bottom-16 {
    bottom: 4rem !important;
  }

  .lt-lg\:left-16 {
    left: 4rem !important;
  }

  .lt-lg\:top-18 {
    top: 4.5rem !important;
  }

  .lt-lg\:right-18 {
    right: 4.5rem !important;
  }

  .lt-lg\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .lt-lg\:left-18 {
    left: 4.5rem !important;
  }

  .lt-lg\:top-20 {
    top: 5rem !important;
  }

  .lt-lg\:right-20 {
    right: 5rem !important;
  }

  .lt-lg\:bottom-20 {
    bottom: 5rem !important;
  }

  .lt-lg\:left-20 {
    left: 5rem !important;
  }

  .lt-lg\:top-22 {
    top: 5.5rem !important;
  }

  .lt-lg\:right-22 {
    right: 5.5rem !important;
  }

  .lt-lg\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .lt-lg\:left-22 {
    left: 5.5rem !important;
  }

  .lt-lg\:top-24 {
    top: 6rem !important;
  }

  .lt-lg\:right-24 {
    right: 6rem !important;
  }

  .lt-lg\:bottom-24 {
    bottom: 6rem !important;
  }

  .lt-lg\:left-24 {
    left: 6rem !important;
  }

  .lt-lg\:top-26 {
    top: 6.5rem !important;
  }

  .lt-lg\:right-26 {
    right: 6.5rem !important;
  }

  .lt-lg\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .lt-lg\:left-26 {
    left: 6.5rem !important;
  }

  .lt-lg\:top-28 {
    top: 7rem !important;
  }

  .lt-lg\:right-28 {
    right: 7rem !important;
  }

  .lt-lg\:bottom-28 {
    bottom: 7rem !important;
  }

  .lt-lg\:left-28 {
    left: 7rem !important;
  }

  .lt-lg\:top-30 {
    top: 7.5rem !important;
  }

  .lt-lg\:right-30 {
    right: 7.5rem !important;
  }

  .lt-lg\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .lt-lg\:left-30 {
    left: 7.5rem !important;
  }

  .lt-lg\:top-32 {
    top: 8rem !important;
  }

  .lt-lg\:right-32 {
    right: 8rem !important;
  }

  .lt-lg\:bottom-32 {
    bottom: 8rem !important;
  }

  .lt-lg\:left-32 {
    left: 8rem !important;
  }

  .lt-lg\:top-36 {
    top: 9rem !important;
  }

  .lt-lg\:right-36 {
    right: 9rem !important;
  }

  .lt-lg\:bottom-36 {
    bottom: 9rem !important;
  }

  .lt-lg\:left-36 {
    left: 9rem !important;
  }

  .lt-lg\:top-40 {
    top: 10rem !important;
  }

  .lt-lg\:right-40 {
    right: 10rem !important;
  }

  .lt-lg\:bottom-40 {
    bottom: 10rem !important;
  }

  .lt-lg\:left-40 {
    left: 10rem !important;
  }

  .lt-lg\:top-44 {
    top: 11rem !important;
  }

  .lt-lg\:right-44 {
    right: 11rem !important;
  }

  .lt-lg\:bottom-44 {
    bottom: 11rem !important;
  }

  .lt-lg\:left-44 {
    left: 11rem !important;
  }

  .lt-lg\:top-48 {
    top: 12rem !important;
  }

  .lt-lg\:right-48 {
    right: 12rem !important;
  }

  .lt-lg\:bottom-48 {
    bottom: 12rem !important;
  }

  .lt-lg\:left-48 {
    left: 12rem !important;
  }

  .lt-lg\:top-50 {
    top: 12.5rem !important;
  }

  .lt-lg\:right-50 {
    right: 12.5rem !important;
  }

  .lt-lg\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .lt-lg\:left-50 {
    left: 12.5rem !important;
  }

  .lt-lg\:top-52 {
    top: 13rem !important;
  }

  .lt-lg\:right-52 {
    right: 13rem !important;
  }

  .lt-lg\:bottom-52 {
    bottom: 13rem !important;
  }

  .lt-lg\:left-52 {
    left: 13rem !important;
  }

  .lt-lg\:top-56 {
    top: 14rem !important;
  }

  .lt-lg\:right-56 {
    right: 14rem !important;
  }

  .lt-lg\:bottom-56 {
    bottom: 14rem !important;
  }

  .lt-lg\:left-56 {
    left: 14rem !important;
  }

  .lt-lg\:top-60 {
    top: 15rem !important;
  }

  .lt-lg\:right-60 {
    right: 15rem !important;
  }

  .lt-lg\:bottom-60 {
    bottom: 15rem !important;
  }

  .lt-lg\:left-60 {
    left: 15rem !important;
  }

  .lt-lg\:top-64 {
    top: 16rem !important;
  }

  .lt-lg\:right-64 {
    right: 16rem !important;
  }

  .lt-lg\:bottom-64 {
    bottom: 16rem !important;
  }

  .lt-lg\:left-64 {
    left: 16rem !important;
  }

  .lt-lg\:top-72 {
    top: 18rem !important;
  }

  .lt-lg\:right-72 {
    right: 18rem !important;
  }

  .lt-lg\:bottom-72 {
    bottom: 18rem !important;
  }

  .lt-lg\:left-72 {
    left: 18rem !important;
  }

  .lt-lg\:top-80 {
    top: 20rem !important;
  }

  .lt-lg\:right-80 {
    right: 20rem !important;
  }

  .lt-lg\:bottom-80 {
    bottom: 20rem !important;
  }

  .lt-lg\:left-80 {
    left: 20rem !important;
  }

  .lt-lg\:top-90 {
    top: 24rem !important;
  }

  .lt-lg\:right-90 {
    right: 24rem !important;
  }

  .lt-lg\:bottom-90 {
    bottom: 24rem !important;
  }

  .lt-lg\:left-90 {
    left: 24rem !important;
  }

  .lt-lg\:top-96 {
    top: 24rem !important;
  }

  .lt-lg\:right-96 {
    right: 24rem !important;
  }

  .lt-lg\:bottom-96 {
    bottom: 24rem !important;
  }

  .lt-lg\:left-96 {
    left: 24rem !important;
  }

  .lt-lg\:top-100 {
    top: 25rem !important;
  }

  .lt-lg\:right-100 {
    right: 25rem !important;
  }

  .lt-lg\:bottom-100 {
    bottom: 25rem !important;
  }

  .lt-lg\:left-100 {
    left: 25rem !important;
  }

  .lt-lg\:top-120 {
    top: 30rem !important;
  }

  .lt-lg\:right-120 {
    right: 30rem !important;
  }

  .lt-lg\:bottom-120 {
    bottom: 30rem !important;
  }

  .lt-lg\:left-120 {
    left: 30rem !important;
  }

  .lt-lg\:top-128 {
    top: 32rem !important;
  }

  .lt-lg\:right-128 {
    right: 32rem !important;
  }

  .lt-lg\:bottom-128 {
    bottom: 32rem !important;
  }

  .lt-lg\:left-128 {
    left: 32rem !important;
  }

  .lt-lg\:top-140 {
    top: 35rem !important;
  }

  .lt-lg\:right-140 {
    right: 35rem !important;
  }

  .lt-lg\:bottom-140 {
    bottom: 35rem !important;
  }

  .lt-lg\:left-140 {
    left: 35rem !important;
  }

  .lt-lg\:top-160 {
    top: 40rem !important;
  }

  .lt-lg\:right-160 {
    right: 40rem !important;
  }

  .lt-lg\:bottom-160 {
    bottom: 40rem !important;
  }

  .lt-lg\:left-160 {
    left: 40rem !important;
  }

  .lt-lg\:top-180 {
    top: 45rem !important;
  }

  .lt-lg\:right-180 {
    right: 45rem !important;
  }

  .lt-lg\:bottom-180 {
    bottom: 45rem !important;
  }

  .lt-lg\:left-180 {
    left: 45rem !important;
  }

  .lt-lg\:top-192 {
    top: 48rem !important;
  }

  .lt-lg\:right-192 {
    right: 48rem !important;
  }

  .lt-lg\:bottom-192 {
    bottom: 48rem !important;
  }

  .lt-lg\:left-192 {
    left: 48rem !important;
  }

  .lt-lg\:top-200 {
    top: 50rem !important;
  }

  .lt-lg\:right-200 {
    right: 50rem !important;
  }

  .lt-lg\:bottom-200 {
    bottom: 50rem !important;
  }

  .lt-lg\:left-200 {
    left: 50rem !important;
  }

  .lt-lg\:top-240 {
    top: 60rem !important;
  }

  .lt-lg\:right-240 {
    right: 60rem !important;
  }

  .lt-lg\:bottom-240 {
    bottom: 60rem !important;
  }

  .lt-lg\:left-240 {
    left: 60rem !important;
  }

  .lt-lg\:top-256 {
    top: 64rem !important;
  }

  .lt-lg\:right-256 {
    right: 64rem !important;
  }

  .lt-lg\:bottom-256 {
    bottom: 64rem !important;
  }

  .lt-lg\:left-256 {
    left: 64rem !important;
  }

  .lt-lg\:top-280 {
    top: 70rem !important;
  }

  .lt-lg\:right-280 {
    right: 70rem !important;
  }

  .lt-lg\:bottom-280 {
    bottom: 70rem !important;
  }

  .lt-lg\:left-280 {
    left: 70rem !important;
  }

  .lt-lg\:top-320 {
    top: 80rem !important;
  }

  .lt-lg\:right-320 {
    right: 80rem !important;
  }

  .lt-lg\:bottom-320 {
    bottom: 80rem !important;
  }

  .lt-lg\:left-320 {
    left: 80rem !important;
  }

  .lt-lg\:top-360 {
    top: 90rem !important;
  }

  .lt-lg\:right-360 {
    right: 90rem !important;
  }

  .lt-lg\:bottom-360 {
    bottom: 90rem !important;
  }

  .lt-lg\:left-360 {
    left: 90rem !important;
  }

  .lt-lg\:top-400 {
    top: 100rem !important;
  }

  .lt-lg\:right-400 {
    right: 100rem !important;
  }

  .lt-lg\:bottom-400 {
    bottom: 100rem !important;
  }

  .lt-lg\:left-400 {
    left: 100rem !important;
  }

  .lt-lg\:top-480 {
    top: 120rem !important;
  }

  .lt-lg\:right-480 {
    right: 120rem !important;
  }

  .lt-lg\:bottom-480 {
    bottom: 120rem !important;
  }

  .lt-lg\:left-480 {
    left: 120rem !important;
  }

  .lt-lg\:top-auto {
    top: auto !important;
  }

  .lt-lg\:right-auto {
    right: auto !important;
  }

  .lt-lg\:bottom-auto {
    bottom: auto !important;
  }

  .lt-lg\:left-auto {
    left: auto !important;
  }

  .lt-lg\:top-px {
    top: 1px !important;
  }

  .lt-lg\:right-px {
    right: 1px !important;
  }

  .lt-lg\:bottom-px {
    bottom: 1px !important;
  }

  .lt-lg\:left-px {
    left: 1px !important;
  }

  .lt-lg\:top-0\.5 {
    top: 0.125rem !important;
  }

  .lt-lg\:right-0\.5 {
    right: 0.125rem !important;
  }

  .lt-lg\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .lt-lg\:left-0\.5 {
    left: 0.125rem !important;
  }

  .lt-lg\:top-1\.5 {
    top: 0.375rem !important;
  }

  .lt-lg\:right-1\.5 {
    right: 0.375rem !important;
  }

  .lt-lg\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .lt-lg\:left-1\.5 {
    left: 0.375rem !important;
  }

  .lt-lg\:top-2\.5 {
    top: 0.625rem !important;
  }

  .lt-lg\:right-2\.5 {
    right: 0.625rem !important;
  }

  .lt-lg\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .lt-lg\:left-2\.5 {
    left: 0.625rem !important;
  }

  .lt-lg\:top-3\.5 {
    top: 0.875rem !important;
  }

  .lt-lg\:right-3\.5 {
    right: 0.875rem !important;
  }

  .lt-lg\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .lt-lg\:left-3\.5 {
    left: 0.875rem !important;
  }

  .lt-lg\:top-1\/2 {
    top: 50% !important;
  }

  .lt-lg\:right-1\/2 {
    right: 50% !important;
  }

  .lt-lg\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .lt-lg\:left-1\/2 {
    left: 50% !important;
  }

  .lt-lg\:top-1\/3 {
    top: 33.333333% !important;
  }

  .lt-lg\:right-1\/3 {
    right: 33.333333% !important;
  }

  .lt-lg\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .lt-lg\:left-1\/3 {
    left: 33.333333% !important;
  }

  .lt-lg\:top-2\/3 {
    top: 66.666667% !important;
  }

  .lt-lg\:right-2\/3 {
    right: 66.666667% !important;
  }

  .lt-lg\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .lt-lg\:left-2\/3 {
    left: 66.666667% !important;
  }

  .lt-lg\:top-1\/4 {
    top: 25% !important;
  }

  .lt-lg\:right-1\/4 {
    right: 25% !important;
  }

  .lt-lg\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .lt-lg\:left-1\/4 {
    left: 25% !important;
  }

  .lt-lg\:top-2\/4 {
    top: 50% !important;
  }

  .lt-lg\:right-2\/4 {
    right: 50% !important;
  }

  .lt-lg\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .lt-lg\:left-2\/4 {
    left: 50% !important;
  }

  .lt-lg\:top-3\/4 {
    top: 75% !important;
  }

  .lt-lg\:right-3\/4 {
    right: 75% !important;
  }

  .lt-lg\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .lt-lg\:left-3\/4 {
    left: 75% !important;
  }

  .lt-lg\:top-1\/5 {
    top: 20% !important;
  }

  .lt-lg\:right-1\/5 {
    right: 20% !important;
  }

  .lt-lg\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .lt-lg\:left-1\/5 {
    left: 20% !important;
  }

  .lt-lg\:top-2\/5 {
    top: 40% !important;
  }

  .lt-lg\:right-2\/5 {
    right: 40% !important;
  }

  .lt-lg\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .lt-lg\:left-2\/5 {
    left: 40% !important;
  }

  .lt-lg\:top-3\/5 {
    top: 60% !important;
  }

  .lt-lg\:right-3\/5 {
    right: 60% !important;
  }

  .lt-lg\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .lt-lg\:left-3\/5 {
    left: 60% !important;
  }

  .lt-lg\:top-4\/5 {
    top: 80% !important;
  }

  .lt-lg\:right-4\/5 {
    right: 80% !important;
  }

  .lt-lg\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .lt-lg\:left-4\/5 {
    left: 80% !important;
  }

  .lt-lg\:top-1\/6 {
    top: 16.666667% !important;
  }

  .lt-lg\:right-1\/6 {
    right: 16.666667% !important;
  }

  .lt-lg\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .lt-lg\:left-1\/6 {
    left: 16.666667% !important;
  }

  .lt-lg\:top-2\/6 {
    top: 33.333333% !important;
  }

  .lt-lg\:right-2\/6 {
    right: 33.333333% !important;
  }

  .lt-lg\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .lt-lg\:left-2\/6 {
    left: 33.333333% !important;
  }

  .lt-lg\:top-3\/6 {
    top: 50% !important;
  }

  .lt-lg\:right-3\/6 {
    right: 50% !important;
  }

  .lt-lg\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .lt-lg\:left-3\/6 {
    left: 50% !important;
  }

  .lt-lg\:top-4\/6 {
    top: 66.666667% !important;
  }

  .lt-lg\:right-4\/6 {
    right: 66.666667% !important;
  }

  .lt-lg\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .lt-lg\:left-4\/6 {
    left: 66.666667% !important;
  }

  .lt-lg\:top-5\/6 {
    top: 83.333333% !important;
  }

  .lt-lg\:right-5\/6 {
    right: 83.333333% !important;
  }

  .lt-lg\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .lt-lg\:left-5\/6 {
    left: 83.333333% !important;
  }

  .lt-lg\:top-1\/12 {
    top: 8.333333% !important;
  }

  .lt-lg\:right-1\/12 {
    right: 8.333333% !important;
  }

  .lt-lg\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .lt-lg\:left-1\/12 {
    left: 8.333333% !important;
  }

  .lt-lg\:top-2\/12 {
    top: 16.666667% !important;
  }

  .lt-lg\:right-2\/12 {
    right: 16.666667% !important;
  }

  .lt-lg\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .lt-lg\:left-2\/12 {
    left: 16.666667% !important;
  }

  .lt-lg\:top-3\/12 {
    top: 25% !important;
  }

  .lt-lg\:right-3\/12 {
    right: 25% !important;
  }

  .lt-lg\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .lt-lg\:left-3\/12 {
    left: 25% !important;
  }

  .lt-lg\:top-4\/12 {
    top: 33.333333% !important;
  }

  .lt-lg\:right-4\/12 {
    right: 33.333333% !important;
  }

  .lt-lg\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .lt-lg\:left-4\/12 {
    left: 33.333333% !important;
  }

  .lt-lg\:top-5\/12 {
    top: 41.666667% !important;
  }

  .lt-lg\:right-5\/12 {
    right: 41.666667% !important;
  }

  .lt-lg\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .lt-lg\:left-5\/12 {
    left: 41.666667% !important;
  }

  .lt-lg\:top-6\/12 {
    top: 50% !important;
  }

  .lt-lg\:right-6\/12 {
    right: 50% !important;
  }

  .lt-lg\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .lt-lg\:left-6\/12 {
    left: 50% !important;
  }

  .lt-lg\:top-7\/12 {
    top: 58.333333% !important;
  }

  .lt-lg\:right-7\/12 {
    right: 58.333333% !important;
  }

  .lt-lg\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .lt-lg\:left-7\/12 {
    left: 58.333333% !important;
  }

  .lt-lg\:top-8\/12 {
    top: 66.666667% !important;
  }

  .lt-lg\:right-8\/12 {
    right: 66.666667% !important;
  }

  .lt-lg\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .lt-lg\:left-8\/12 {
    left: 66.666667% !important;
  }

  .lt-lg\:top-9\/12 {
    top: 75% !important;
  }

  .lt-lg\:right-9\/12 {
    right: 75% !important;
  }

  .lt-lg\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .lt-lg\:left-9\/12 {
    left: 75% !important;
  }

  .lt-lg\:top-10\/12 {
    top: 83.333333% !important;
  }

  .lt-lg\:right-10\/12 {
    right: 83.333333% !important;
  }

  .lt-lg\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .lt-lg\:left-10\/12 {
    left: 83.333333% !important;
  }

  .lt-lg\:top-11\/12 {
    top: 91.666667% !important;
  }

  .lt-lg\:right-11\/12 {
    right: 91.666667% !important;
  }

  .lt-lg\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .lt-lg\:left-11\/12 {
    left: 91.666667% !important;
  }

  .lt-lg\:top-full {
    top: 100% !important;
  }

  .lt-lg\:right-full {
    right: 100% !important;
  }

  .lt-lg\:bottom-full {
    bottom: 100% !important;
  }

  .lt-lg\:left-full {
    left: 100% !important;
  }

  .lt-lg\:top-2px {
    top: 2px !important;
  }

  .lt-lg\:right-2px {
    right: 2px !important;
  }

  .lt-lg\:bottom-2px {
    bottom: 2px !important;
  }

  .lt-lg\:left-2px {
    left: 2px !important;
  }

  .lt-lg\:text-left {
    text-align: left !important;
  }

  .lt-lg\:text-center {
    text-align: center !important;
  }

  .lt-lg\:text-right {
    text-align: right !important;
  }

  .lt-lg\:text-justify {
    text-align: justify !important;
  }

  .lt-lg\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .lt-lg\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .lt-lg\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .lt-lg\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .lt-lg\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .lt-lg\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .lt-lg\:visible {
    visibility: visible !important;
  }

  .lt-lg\:invisible {
    visibility: hidden !important;
  }

  .lt-lg\:whitespace-normal {
    white-space: normal !important;
  }

  .lt-lg\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .lt-lg\:whitespace-pre {
    white-space: pre !important;
  }

  .lt-lg\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .lt-lg\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .lt-lg\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .lt-lg\:break-words {
    overflow-wrap: break-word !important;
  }

  .lt-lg\:break-all {
    word-break: break-all !important;
  }

  .lt-lg\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .lt-lg\:w-0 {
    width: 0 !important;
  }

  .lt-lg\:w-1 {
    width: 0.25rem !important;
  }

  .lt-lg\:w-2 {
    width: 0.5rem !important;
  }

  .lt-lg\:w-3 {
    width: 0.75rem !important;
  }

  .lt-lg\:w-4 {
    width: 1rem !important;
  }

  .lt-lg\:w-5 {
    width: 1.25rem !important;
  }

  .lt-lg\:w-6 {
    width: 1.5rem !important;
  }

  .lt-lg\:w-7 {
    width: 1.75rem !important;
  }

  .lt-lg\:w-8 {
    width: 2rem !important;
  }

  .lt-lg\:w-9 {
    width: 2.25rem !important;
  }

  .lt-lg\:w-10 {
    width: 2.5rem !important;
  }

  .lt-lg\:w-11 {
    width: 2.75rem !important;
  }

  .lt-lg\:w-12 {
    width: 3rem !important;
  }

  .lt-lg\:w-13 {
    width: 3.25rem !important;
  }

  .lt-lg\:w-14 {
    width: 3.5rem !important;
  }

  .lt-lg\:w-15 {
    width: 3.75rem !important;
  }

  .lt-lg\:w-16 {
    width: 4rem !important;
  }

  .lt-lg\:w-18 {
    width: 4.5rem !important;
  }

  .lt-lg\:w-20 {
    width: 5rem !important;
  }

  .lt-lg\:w-22 {
    width: 5.5rem !important;
  }

  .lt-lg\:w-24 {
    width: 6rem !important;
  }

  .lt-lg\:w-26 {
    width: 6.5rem !important;
  }

  .lt-lg\:w-28 {
    width: 7rem !important;
  }

  .lt-lg\:w-30 {
    width: 7.5rem !important;
  }

  .lt-lg\:w-32 {
    width: 8rem !important;
  }

  .lt-lg\:w-36 {
    width: 9rem !important;
  }

  .lt-lg\:w-40 {
    width: 10rem !important;
  }

  .lt-lg\:w-44 {
    width: 11rem !important;
  }

  .lt-lg\:w-48 {
    width: 12rem !important;
  }

  .lt-lg\:w-50 {
    width: 12.5rem !important;
  }

  .lt-lg\:w-52 {
    width: 13rem !important;
  }

  .lt-lg\:w-56 {
    width: 14rem !important;
  }

  .lt-lg\:w-60 {
    width: 15rem !important;
  }

  .lt-lg\:w-64 {
    width: 16rem !important;
  }

  .lt-lg\:w-72 {
    width: 18rem !important;
  }

  .lt-lg\:w-80 {
    width: 20rem !important;
  }

  .lt-lg\:w-90 {
    width: 24rem !important;
  }

  .lt-lg\:w-96 {
    width: 24rem !important;
  }

  .lt-lg\:w-100 {
    width: 25rem !important;
  }

  .lt-lg\:w-120 {
    width: 30rem !important;
  }

  .lt-lg\:w-128 {
    width: 32rem !important;
  }

  .lt-lg\:w-140 {
    width: 35rem !important;
  }

  .lt-lg\:w-160 {
    width: 40rem !important;
  }

  .lt-lg\:w-180 {
    width: 45rem !important;
  }

  .lt-lg\:w-192 {
    width: 48rem !important;
  }

  .lt-lg\:w-200 {
    width: 50rem !important;
  }

  .lt-lg\:w-240 {
    width: 60rem !important;
  }

  .lt-lg\:w-256 {
    width: 64rem !important;
  }

  .lt-lg\:w-280 {
    width: 70rem !important;
  }

  .lt-lg\:w-320 {
    width: 80rem !important;
  }

  .lt-lg\:w-360 {
    width: 90rem !important;
  }

  .lt-lg\:w-400 {
    width: 100rem !important;
  }

  .lt-lg\:w-480 {
    width: 120rem !important;
  }

  .lt-lg\:w-auto {
    width: auto !important;
  }

  .lt-lg\:w-px {
    width: 1px !important;
  }

  .lt-lg\:w-0\.5 {
    width: 0.125rem !important;
  }

  .lt-lg\:w-1\.5 {
    width: 0.375rem !important;
  }

  .lt-lg\:w-2\.5 {
    width: 0.625rem !important;
  }

  .lt-lg\:w-3\.5 {
    width: 0.875rem !important;
  }

  .lt-lg\:w-1\/2 {
    width: 50% !important;
  }

  .lt-lg\:w-1\/3 {
    width: 33.333333% !important;
  }

  .lt-lg\:w-2\/3 {
    width: 66.666667% !important;
  }

  .lt-lg\:w-1\/4 {
    width: 25% !important;
  }

  .lt-lg\:w-2\/4 {
    width: 50% !important;
  }

  .lt-lg\:w-3\/4 {
    width: 75% !important;
  }

  .lt-lg\:w-1\/5 {
    width: 20% !important;
  }

  .lt-lg\:w-2\/5 {
    width: 40% !important;
  }

  .lt-lg\:w-3\/5 {
    width: 60% !important;
  }

  .lt-lg\:w-4\/5 {
    width: 80% !important;
  }

  .lt-lg\:w-1\/6 {
    width: 16.666667% !important;
  }

  .lt-lg\:w-2\/6 {
    width: 33.333333% !important;
  }

  .lt-lg\:w-3\/6 {
    width: 50% !important;
  }

  .lt-lg\:w-4\/6 {
    width: 66.666667% !important;
  }

  .lt-lg\:w-5\/6 {
    width: 83.333333% !important;
  }

  .lt-lg\:w-1\/12 {
    width: 8.333333% !important;
  }

  .lt-lg\:w-2\/12 {
    width: 16.666667% !important;
  }

  .lt-lg\:w-3\/12 {
    width: 25% !important;
  }

  .lt-lg\:w-4\/12 {
    width: 33.333333% !important;
  }

  .lt-lg\:w-5\/12 {
    width: 41.666667% !important;
  }

  .lt-lg\:w-6\/12 {
    width: 50% !important;
  }

  .lt-lg\:w-7\/12 {
    width: 58.333333% !important;
  }

  .lt-lg\:w-8\/12 {
    width: 66.666667% !important;
  }

  .lt-lg\:w-9\/12 {
    width: 75% !important;
  }

  .lt-lg\:w-10\/12 {
    width: 83.333333% !important;
  }

  .lt-lg\:w-11\/12 {
    width: 91.666667% !important;
  }

  .lt-lg\:w-full {
    width: 100% !important;
  }

  .lt-lg\:w-2px {
    width: 2px !important;
  }

  .lt-lg\:w-screen {
    width: 100vw !important;
  }

  .lt-lg\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .lt-lg\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .lt-lg\:z-0 {
    z-index: 0 !important;
  }

  .lt-lg\:z-10 {
    z-index: 10 !important;
  }

  .lt-lg\:z-20 {
    z-index: 20 !important;
  }

  .lt-lg\:z-30 {
    z-index: 30 !important;
  }

  .lt-lg\:z-40 {
    z-index: 40 !important;
  }

  .lt-lg\:z-50 {
    z-index: 50 !important;
  }

  .lt-lg\:z-60 {
    z-index: 60 !important;
  }

  .lt-lg\:z-70 {
    z-index: 70 !important;
  }

  .lt-lg\:z-80 {
    z-index: 80 !important;
  }

  .lt-lg\:z-90 {
    z-index: 90 !important;
  }

  .lt-lg\:z-99 {
    z-index: 99 !important;
  }

  .lt-lg\:z-999 {
    z-index: 999 !important;
  }

  .lt-lg\:z-9999 {
    z-index: 9999 !important;
  }

  .lt-lg\:z-99999 {
    z-index: 99999 !important;
  }

  .lt-lg\:z-auto {
    z-index: auto !important;
  }

  .lt-lg\:-z-1 {
    z-index: -1 !important;
  }

  .lt-lg\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .lt-lg\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .lt-lg\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .lt-lg\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .lt-lg\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .lt-lg\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .lt-lg\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .lt-lg\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .lt-lg\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .lt-lg\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .lt-lg\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .lt-lg\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .lt-lg\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .lt-lg\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .lt-lg\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .lt-lg\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .lt-lg\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .lt-lg\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .lt-lg\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .lt-lg\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .lt-lg\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .lt-lg\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .lt-lg\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .lt-lg\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .lt-lg\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .lt-lg\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .lt-lg\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .lt-lg\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .lt-lg\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .lt-lg\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .lt-lg\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .lt-lg\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .lt-lg\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .lt-lg\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .lt-lg\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .lt-lg\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .lt-lg\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .lt-lg\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .lt-lg\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .lt-lg\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .lt-lg\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .lt-lg\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .lt-lg\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .lt-lg\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .lt-lg\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .lt-lg\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .lt-lg\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .lt-lg\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .lt-lg\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .lt-lg\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .lt-lg\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .lt-lg\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .lt-lg\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .lt-lg\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .lt-lg\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .lt-lg\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .lt-lg\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .lt-lg\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .lt-lg\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-lg\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lt-lg\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lt-lg\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .lt-lg\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-lg\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .lt-lg\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .lt-lg\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .lt-lg\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .lt-lg\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .lt-lg\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .lt-lg\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lt-lg\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-lg\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lt-lg\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .lt-lg\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .lt-lg\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .lt-lg\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .lt-lg\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lt-lg\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .lt-lg\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-lg\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .lt-lg\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lt-lg\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .lt-lg\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .lt-lg\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .lt-lg\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .lt-lg\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .lt-lg\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .lt-lg\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .lt-lg\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .lt-lg\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .lt-lg\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .lt-lg\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .lt-lg\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .lt-lg\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .lt-lg\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .lt-lg\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .lt-lg\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .lt-lg\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .lt-lg\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .lt-lg\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .lt-lg\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .lt-lg\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .lt-lg\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .lt-lg\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .lt-lg\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .lt-lg\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .lt-lg\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .lt-lg\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .lt-lg\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .lt-lg\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .lt-lg\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .lt-lg\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .lt-lg\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .lt-lg\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .lt-lg\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .lt-lg\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .lt-lg\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .lt-lg\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .lt-lg\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .lt-lg\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .lt-lg\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .lt-lg\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .lt-lg\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .lt-lg\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .lt-lg\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .lt-lg\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .lt-lg\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .lt-lg\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .lt-lg\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .lt-lg\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .lt-lg\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .lt-lg\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .lt-lg\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .lt-lg\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .lt-lg\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .lt-lg\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .lt-lg\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .lt-lg\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .lt-lg\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .lt-lg\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .lt-lg\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .lt-lg\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .lt-lg\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .lt-lg\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .lt-lg\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-lg\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lt-lg\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lt-lg\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .lt-lg\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-lg\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .lt-lg\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .lt-lg\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .lt-lg\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .lt-lg\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .lt-lg\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .lt-lg\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lt-lg\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-lg\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lt-lg\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .lt-lg\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .lt-lg\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .lt-lg\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .lt-lg\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lt-lg\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .lt-lg\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-lg\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .lt-lg\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lt-lg\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .lt-lg\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .lt-lg\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .lt-lg\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .lt-lg\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .lt-lg\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .lt-lg\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .lt-lg\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .lt-lg\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .lt-lg\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .lt-lg\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .lt-lg\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .lt-lg\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .lt-lg\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .lt-lg\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .lt-lg\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .lt-lg\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .lt-lg\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .lt-lg\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .lt-lg\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .lt-lg\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .lt-lg\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .lt-lg\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .lt-lg\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .lt-lg\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .lt-lg\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .lt-lg\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .lt-lg\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .lt-lg\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .lt-lg\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .lt-lg\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .lt-lg\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .lt-lg\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .lt-lg\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .lt-lg\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .lt-lg\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .lt-lg\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .lt-lg\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .lt-lg\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .lt-lg\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .lt-lg\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .lt-lg\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .lt-lg\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .lt-lg\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .lt-lg\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .lt-lg\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .lt-lg\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .lt-lg\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .lt-lg\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .lt-lg\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .lt-lg\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .lt-lg\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .lt-lg\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .lt-lg\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .lt-lg\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .lt-lg\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .lt-lg\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .lt-lg\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .lt-lg\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .lt-lg\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .lt-lg\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .lt-lg\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .lt-lg\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .lt-lg\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-lg\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lt-lg\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lt-lg\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .lt-lg\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-lg\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .lt-lg\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .lt-lg\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .lt-lg\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .lt-lg\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .lt-lg\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .lt-lg\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lt-lg\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-lg\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lt-lg\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .lt-lg\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .lt-lg\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .lt-lg\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .lt-lg\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lt-lg\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .lt-lg\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-lg\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .lt-lg\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lt-lg\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .lt-lg\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .lt-lg\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .lt-lg\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .lt-lg\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .lt-lg\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .lt-lg\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .lt-lg\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .lt-lg\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .lt-lg\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .lt-lg\:col-auto {
    grid-column: auto !important;
  }

  .lt-lg\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

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

  .lt-lg\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .lt-lg\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .lt-lg\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .lt-lg\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .lt-lg\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .lt-lg\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .lt-lg\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .lt-lg\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .lt-lg\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .lt-lg\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .lt-lg\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .lt-lg\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .lt-lg\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .lt-lg\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .lt-lg\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .lt-lg\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .lt-lg\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .lt-lg\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .lt-lg\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .lt-lg\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .lt-lg\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .lt-lg\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .lt-lg\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .lt-lg\:col-start-auto {
    grid-column-start: auto !important;
  }

  .lt-lg\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .lt-lg\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .lt-lg\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .lt-lg\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .lt-lg\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .lt-lg\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .lt-lg\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .lt-lg\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .lt-lg\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .lt-lg\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .lt-lg\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .lt-lg\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .lt-lg\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .lt-lg\:col-end-auto {
    grid-column-end: auto !important;
  }

  .lt-lg\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .lt-lg\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .lt-lg\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .lt-lg\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .lt-lg\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .lt-lg\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .lt-lg\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .lt-lg\:row-auto {
    grid-row: auto !important;
  }

  .lt-lg\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .lt-lg\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .lt-lg\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .lt-lg\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .lt-lg\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .lt-lg\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .lt-lg\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .lt-lg\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .lt-lg\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .lt-lg\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .lt-lg\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .lt-lg\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .lt-lg\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .lt-lg\:row-start-auto {
    grid-row-start: auto !important;
  }

  .lt-lg\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .lt-lg\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .lt-lg\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .lt-lg\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .lt-lg\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .lt-lg\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .lt-lg\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .lt-lg\:row-end-auto {
    grid-row-end: auto !important;
  }

  .lt-lg\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .lt-lg\:transform-none {
    transform: none !important;
  }

  .lt-lg\:origin-center {
    transform-origin: center !important;
  }

  .lt-lg\:origin-top {
    transform-origin: top !important;
  }

  .lt-lg\:origin-top-right {
    transform-origin: top right !important;
  }

  .lt-lg\:origin-right {
    transform-origin: right !important;
  }

  .lt-lg\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .lt-lg\:origin-bottom {
    transform-origin: bottom !important;
  }

  .lt-lg\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .lt-lg\:origin-left {
    transform-origin: left !important;
  }

  .lt-lg\:origin-top-left {
    transform-origin: top left !important;
  }

  .lt-lg\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .lt-lg\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .lt-lg\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .lt-lg\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .lt-lg\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .lt-lg\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .lt-lg\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .lt-lg\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .lt-lg\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .lt-lg\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .lt-lg\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .lt-lg\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .lt-lg\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .lt-lg\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .lt-lg\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .lt-lg\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .lt-lg\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .lt-lg\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .lt-lg\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .lt-lg\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .lt-lg\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .lt-lg\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .lt-lg\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .lt-lg\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .lt-lg\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .lt-lg\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .lt-lg\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .lt-lg\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .lt-lg\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .lt-lg\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (max-width: 1439px) {
  .lt-xl\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .lt-xl\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .lt-xl\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lt-xl\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .lt-xl\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .lt-xl\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lt-xl\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lt-xl\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lt-xl\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lt-xl\:rounded-none {
    border-radius: 0 !important;
  }

  .lt-xl\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .lt-xl\:rounded {
    border-radius: 0.25rem !important;
  }

  .lt-xl\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .lt-xl\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .lt-xl\:rounded-full {
    border-radius: 9999px !important;
  }

  .lt-xl\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .lt-xl\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .lt-xl\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lt-xl\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lt-xl\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .lt-xl\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .lt-xl\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lt-xl\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lt-xl\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .lt-xl\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .lt-xl\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lt-xl\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lt-xl\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .lt-xl\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .lt-xl\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lt-xl\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lt-xl\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .lt-xl\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .lt-xl\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lt-xl\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lt-xl\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .lt-xl\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .lt-xl\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lt-xl\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lt-xl\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .lt-xl\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .lt-xl\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .lt-xl\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .lt-xl\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .lt-xl\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .lt-xl\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .lt-xl\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .lt-xl\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .lt-xl\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .lt-xl\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .lt-xl\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .lt-xl\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .lt-xl\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .lt-xl\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .lt-xl\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .lt-xl\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .lt-xl\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .lt-xl\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .lt-xl\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .lt-xl\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .lt-xl\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .lt-xl\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .lt-xl\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .lt-xl\:border-0 {
    border-width: 0 !important;
  }

  .lt-xl\:border-2 {
    border-width: 2px !important;
  }

  .lt-xl\:border-4 {
    border-width: 4px !important;
  }

  .lt-xl\:border-8 {
    border-width: 8px !important;
  }

  .lt-xl\:border {
    border-width: 1px !important;
  }

  .lt-xl\:border-t-0 {
    border-top-width: 0 !important;
  }

  .lt-xl\:border-r-0 {
    border-right-width: 0 !important;
  }

  .lt-xl\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .lt-xl\:border-l-0 {
    border-left-width: 0 !important;
  }

  .lt-xl\:border-t-2 {
    border-top-width: 2px !important;
  }

  .lt-xl\:border-r-2 {
    border-right-width: 2px !important;
  }

  .lt-xl\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .lt-xl\:border-l-2 {
    border-left-width: 2px !important;
  }

  .lt-xl\:border-t-4 {
    border-top-width: 4px !important;
  }

  .lt-xl\:border-r-4 {
    border-right-width: 4px !important;
  }

  .lt-xl\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .lt-xl\:border-l-4 {
    border-left-width: 4px !important;
  }

  .lt-xl\:border-t-8 {
    border-top-width: 8px !important;
  }

  .lt-xl\:border-r-8 {
    border-right-width: 8px !important;
  }

  .lt-xl\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .lt-xl\:border-l-8 {
    border-left-width: 8px !important;
  }

  .lt-xl\:border-t {
    border-top-width: 1px !important;
  }

  .lt-xl\:border-r {
    border-right-width: 1px !important;
  }

  .lt-xl\:border-b {
    border-bottom-width: 1px !important;
  }

  .lt-xl\:border-l {
    border-left-width: 1px !important;
  }

  .lt-xl\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .lt-xl\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .lt-xl\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .lt-xl\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .lt-xl\:first\:border:first-child {
    border-width: 1px !important;
  }

  .lt-xl\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .lt-xl\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .lt-xl\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .lt-xl\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .lt-xl\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .lt-xl\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .lt-xl\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .lt-xl\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .lt-xl\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .lt-xl\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .lt-xl\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .lt-xl\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .lt-xl\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .lt-xl\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .lt-xl\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .lt-xl\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .lt-xl\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .lt-xl\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .lt-xl\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .lt-xl\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .lt-xl\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .lt-xl\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .lt-xl\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .lt-xl\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .lt-xl\:last\:border:last-child {
    border-width: 1px !important;
  }

  .lt-xl\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .lt-xl\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .lt-xl\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .lt-xl\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .lt-xl\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .lt-xl\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .lt-xl\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .lt-xl\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .lt-xl\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .lt-xl\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .lt-xl\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .lt-xl\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .lt-xl\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .lt-xl\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .lt-xl\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .lt-xl\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .lt-xl\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .lt-xl\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .lt-xl\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .lt-xl\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .lt-xl\:block {
    display: block !important;
  }

  .lt-xl\:inline-block {
    display: inline-block !important;
  }

  .lt-xl\:inline {
    display: inline !important;
  }

  .lt-xl\:flex {
    display: flex !important;
  }

  .lt-xl\:inline-flex {
    display: inline-flex !important;
  }

  .lt-xl\:table {
    display: table !important;
  }

  .lt-xl\:table-caption {
    display: table-caption !important;
  }

  .lt-xl\:table-cell {
    display: table-cell !important;
  }

  .lt-xl\:table-column {
    display: table-column !important;
  }

  .lt-xl\:table-column-group {
    display: table-column-group !important;
  }

  .lt-xl\:table-footer-group {
    display: table-footer-group !important;
  }

  .lt-xl\:table-header-group {
    display: table-header-group !important;
  }

  .lt-xl\:table-row-group {
    display: table-row-group !important;
  }

  .lt-xl\:table-row {
    display: table-row !important;
  }

  .lt-xl\:flow-root {
    display: flow-root !important;
  }

  .lt-xl\:grid {
    display: grid !important;
  }

  .lt-xl\:inline-grid {
    display: inline-grid !important;
  }

  .lt-xl\:contents {
    display: contents !important;
  }

  .lt-xl\:hidden {
    display: none !important;
  }

  .lt-xl\:flex-row {
    flex-direction: row !important;
  }

  .lt-xl\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .lt-xl\:flex-col {
    flex-direction: column !important;
  }

  .lt-xl\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .lt-xl\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .lt-xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .lt-xl\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .lt-xl\:items-start {
    align-items: flex-start !important;
  }

  .lt-xl\:items-end {
    align-items: flex-end !important;
  }

  .lt-xl\:items-center {
    align-items: center !important;
  }

  .lt-xl\:items-baseline {
    align-items: baseline !important;
  }

  .lt-xl\:items-stretch {
    align-items: stretch !important;
  }

  .lt-xl\:self-auto {
    align-self: auto !important;
  }

  .lt-xl\:self-start {
    align-self: flex-start !important;
  }

  .lt-xl\:self-end {
    align-self: flex-end !important;
  }

  .lt-xl\:self-center {
    align-self: center !important;
  }

  .lt-xl\:self-stretch {
    align-self: stretch !important;
  }

  .lt-xl\:justify-start {
    justify-content: flex-start !important;
  }

  .lt-xl\:justify-end {
    justify-content: flex-end !important;
  }

  .lt-xl\:justify-center {
    justify-content: center !important;
  }

  .lt-xl\:justify-between {
    justify-content: space-between !important;
  }

  .lt-xl\:justify-around {
    justify-content: space-around !important;
  }

  .lt-xl\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .lt-xl\:content-center {
    align-content: center !important;
  }

  .lt-xl\:content-start {
    align-content: flex-start !important;
  }

  .lt-xl\:content-end {
    align-content: flex-end !important;
  }

  .lt-xl\:content-between {
    align-content: space-between !important;
  }

  .lt-xl\:content-around {
    align-content: space-around !important;
  }

  .lt-xl\:flex-0 {
    flex: 0 0 auto !important;
  }

  .lt-xl\:flex-1 {
    flex: 1 1 0% !important;
  }

  .lt-xl\:flex-auto {
    flex: 1 1 auto !important;
  }

  .lt-xl\:flex-initial {
    flex: 0 1 auto !important;
  }

  .lt-xl\:flex-none {
    flex: none !important;
  }

  .lt-xl\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .lt-xl\:flex-grow {
    flex-grow: 1 !important;
  }

  .lt-xl\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .lt-xl\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .lt-xl\:order-1 {
    order: 1 !important;
  }

  .lt-xl\:order-2 {
    order: 2 !important;
  }

  .lt-xl\:order-3 {
    order: 3 !important;
  }

  .lt-xl\:order-4 {
    order: 4 !important;
  }

  .lt-xl\:order-5 {
    order: 5 !important;
  }

  .lt-xl\:order-6 {
    order: 6 !important;
  }

  .lt-xl\:order-7 {
    order: 7 !important;
  }

  .lt-xl\:order-8 {
    order: 8 !important;
  }

  .lt-xl\:order-9 {
    order: 9 !important;
  }

  .lt-xl\:order-10 {
    order: 10 !important;
  }

  .lt-xl\:order-11 {
    order: 11 !important;
  }

  .lt-xl\:order-12 {
    order: 12 !important;
  }

  .lt-xl\:order-first {
    order: -9999 !important;
  }

  .lt-xl\:order-last {
    order: 9999 !important;
  }

  .lt-xl\:order-none {
    order: 0 !important;
  }

  .lt-xl\:font-hairline {
    font-weight: 100 !important;
  }

  .lt-xl\:font-thin {
    font-weight: 200 !important;
  }

  .lt-xl\:font-light {
    font-weight: 300 !important;
  }

  .lt-xl\:font-normal {
    font-weight: 400 !important;
  }

  .lt-xl\:font-medium {
    font-weight: 500 !important;
  }

  .lt-xl\:font-semibold {
    font-weight: 600 !important;
  }

  .lt-xl\:font-bold {
    font-weight: 700 !important;
  }

  .lt-xl\:font-extrabold {
    font-weight: 800 !important;
  }

  .lt-xl\:font-black {
    font-weight: 900 !important;
  }

  .lt-xl\:h-0 {
    height: 0 !important;
  }

  .lt-xl\:h-1 {
    height: 0.25rem !important;
  }

  .lt-xl\:h-2 {
    height: 0.5rem !important;
  }

  .lt-xl\:h-3 {
    height: 0.75rem !important;
  }

  .lt-xl\:h-4 {
    height: 1rem !important;
  }

  .lt-xl\:h-5 {
    height: 1.25rem !important;
  }

  .lt-xl\:h-6 {
    height: 1.5rem !important;
  }

  .lt-xl\:h-7 {
    height: 1.75rem !important;
  }

  .lt-xl\:h-8 {
    height: 2rem !important;
  }

  .lt-xl\:h-9 {
    height: 2.25rem !important;
  }

  .lt-xl\:h-10 {
    height: 2.5rem !important;
  }

  .lt-xl\:h-11 {
    height: 2.75rem !important;
  }

  .lt-xl\:h-12 {
    height: 3rem !important;
  }

  .lt-xl\:h-13 {
    height: 3.25rem !important;
  }

  .lt-xl\:h-14 {
    height: 3.5rem !important;
  }

  .lt-xl\:h-15 {
    height: 3.75rem !important;
  }

  .lt-xl\:h-16 {
    height: 4rem !important;
  }

  .lt-xl\:h-18 {
    height: 4.5rem !important;
  }

  .lt-xl\:h-20 {
    height: 5rem !important;
  }

  .lt-xl\:h-22 {
    height: 5.5rem !important;
  }

  .lt-xl\:h-24 {
    height: 6rem !important;
  }

  .lt-xl\:h-26 {
    height: 6.5rem !important;
  }

  .lt-xl\:h-28 {
    height: 7rem !important;
  }

  .lt-xl\:h-30 {
    height: 7.5rem !important;
  }

  .lt-xl\:h-32 {
    height: 8rem !important;
  }

  .lt-xl\:h-36 {
    height: 9rem !important;
  }

  .lt-xl\:h-40 {
    height: 10rem !important;
  }

  .lt-xl\:h-44 {
    height: 11rem !important;
  }

  .lt-xl\:h-48 {
    height: 12rem !important;
  }

  .lt-xl\:h-50 {
    height: 12.5rem !important;
  }

  .lt-xl\:h-52 {
    height: 13rem !important;
  }

  .lt-xl\:h-56 {
    height: 14rem !important;
  }

  .lt-xl\:h-60 {
    height: 15rem !important;
  }

  .lt-xl\:h-64 {
    height: 16rem !important;
  }

  .lt-xl\:h-72 {
    height: 18rem !important;
  }

  .lt-xl\:h-80 {
    height: 20rem !important;
  }

  .lt-xl\:h-90 {
    height: 24rem !important;
  }

  .lt-xl\:h-96 {
    height: 24rem !important;
  }

  .lt-xl\:h-100 {
    height: 25rem !important;
  }

  .lt-xl\:h-120 {
    height: 30rem !important;
  }

  .lt-xl\:h-128 {
    height: 32rem !important;
  }

  .lt-xl\:h-140 {
    height: 35rem !important;
  }

  .lt-xl\:h-160 {
    height: 40rem !important;
  }

  .lt-xl\:h-180 {
    height: 45rem !important;
  }

  .lt-xl\:h-192 {
    height: 48rem !important;
  }

  .lt-xl\:h-200 {
    height: 50rem !important;
  }

  .lt-xl\:h-240 {
    height: 60rem !important;
  }

  .lt-xl\:h-256 {
    height: 64rem !important;
  }

  .lt-xl\:h-280 {
    height: 70rem !important;
  }

  .lt-xl\:h-320 {
    height: 80rem !important;
  }

  .lt-xl\:h-360 {
    height: 90rem !important;
  }

  .lt-xl\:h-400 {
    height: 100rem !important;
  }

  .lt-xl\:h-480 {
    height: 120rem !important;
  }

  .lt-xl\:h-auto {
    height: auto !important;
  }

  .lt-xl\:h-px {
    height: 1px !important;
  }

  .lt-xl\:h-0\.5 {
    height: 0.125rem !important;
  }

  .lt-xl\:h-1\.5 {
    height: 0.375rem !important;
  }

  .lt-xl\:h-2\.5 {
    height: 0.625rem !important;
  }

  .lt-xl\:h-3\.5 {
    height: 0.875rem !important;
  }

  .lt-xl\:h-1\/2 {
    height: 50% !important;
  }

  .lt-xl\:h-1\/3 {
    height: 33.333333% !important;
  }

  .lt-xl\:h-2\/3 {
    height: 66.666667% !important;
  }

  .lt-xl\:h-1\/4 {
    height: 25% !important;
  }

  .lt-xl\:h-2\/4 {
    height: 50% !important;
  }

  .lt-xl\:h-3\/4 {
    height: 75% !important;
  }

  .lt-xl\:h-1\/5 {
    height: 20% !important;
  }

  .lt-xl\:h-2\/5 {
    height: 40% !important;
  }

  .lt-xl\:h-3\/5 {
    height: 60% !important;
  }

  .lt-xl\:h-4\/5 {
    height: 80% !important;
  }

  .lt-xl\:h-1\/6 {
    height: 16.666667% !important;
  }

  .lt-xl\:h-2\/6 {
    height: 33.333333% !important;
  }

  .lt-xl\:h-3\/6 {
    height: 50% !important;
  }

  .lt-xl\:h-4\/6 {
    height: 66.666667% !important;
  }

  .lt-xl\:h-5\/6 {
    height: 83.333333% !important;
  }

  .lt-xl\:h-1\/12 {
    height: 8.333333% !important;
  }

  .lt-xl\:h-2\/12 {
    height: 16.666667% !important;
  }

  .lt-xl\:h-3\/12 {
    height: 25% !important;
  }

  .lt-xl\:h-4\/12 {
    height: 33.333333% !important;
  }

  .lt-xl\:h-5\/12 {
    height: 41.666667% !important;
  }

  .lt-xl\:h-6\/12 {
    height: 50% !important;
  }

  .lt-xl\:h-7\/12 {
    height: 58.333333% !important;
  }

  .lt-xl\:h-8\/12 {
    height: 66.666667% !important;
  }

  .lt-xl\:h-9\/12 {
    height: 75% !important;
  }

  .lt-xl\:h-10\/12 {
    height: 83.333333% !important;
  }

  .lt-xl\:h-11\/12 {
    height: 91.666667% !important;
  }

  .lt-xl\:h-full {
    height: 100% !important;
  }

  .lt-xl\:h-2px {
    height: 2px !important;
  }

  .lt-xl\:h-screen {
    height: 100vh !important;
  }

  .lt-xl\:text-xs {
    font-size: 0.625rem !important;
  }

  .lt-xl\:text-sm {
    font-size: 0.75rem !important;
  }

  .lt-xl\:text-md {
    font-size: 0.8125rem !important;
  }

  .lt-xl\:text-base {
    font-size: 0.875rem !important;
  }

  .lt-xl\:text-lg {
    font-size: 1rem !important;
  }

  .lt-xl\:text-xl {
    font-size: 1.125rem !important;
  }

  .lt-xl\:text-2xl {
    font-size: 1.25rem !important;
  }

  .lt-xl\:text-3xl {
    font-size: 1.5rem !important;
  }

  .lt-xl\:text-4xl {
    font-size: 2rem !important;
  }

  .lt-xl\:text-5xl {
    font-size: 2.25rem !important;
  }

  .lt-xl\:text-6xl {
    font-size: 2.5rem !important;
  }

  .lt-xl\:text-7xl {
    font-size: 3rem !important;
  }

  .lt-xl\:text-8xl {
    font-size: 4rem !important;
  }

  .lt-xl\:text-9xl {
    font-size: 6rem !important;
  }

  .lt-xl\:text-10xl {
    font-size: 8rem !important;
  }

  .lt-xl\:leading-3 {
    line-height: 0.75rem !important;
  }

  .lt-xl\:leading-4 {
    line-height: 1rem !important;
  }

  .lt-xl\:leading-5 {
    line-height: 1.25rem !important;
  }

  .lt-xl\:leading-6 {
    line-height: 1.5rem !important;
  }

  .lt-xl\:leading-7 {
    line-height: 1.75rem !important;
  }

  .lt-xl\:leading-8 {
    line-height: 2rem !important;
  }

  .lt-xl\:leading-9 {
    line-height: 2.25rem !important;
  }

  .lt-xl\:leading-10 {
    line-height: 2.5rem !important;
  }

  .lt-xl\:leading-none {
    line-height: 1 !important;
  }

  .lt-xl\:leading-tight {
    line-height: 1.25 !important;
  }

  .lt-xl\:leading-snug {
    line-height: 1.375 !important;
  }

  .lt-xl\:leading-normal {
    line-height: 1.5 !important;
  }

  .lt-xl\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .lt-xl\:leading-loose {
    line-height: 2 !important;
  }

  .lt-xl\:m-0 {
    margin: 0 !important;
  }

  .lt-xl\:m-1 {
    margin: 0.25rem !important;
  }

  .lt-xl\:m-2 {
    margin: 0.5rem !important;
  }

  .lt-xl\:m-3 {
    margin: 0.75rem !important;
  }

  .lt-xl\:m-4 {
    margin: 1rem !important;
  }

  .lt-xl\:m-5 {
    margin: 1.25rem !important;
  }

  .lt-xl\:m-6 {
    margin: 1.5rem !important;
  }

  .lt-xl\:m-7 {
    margin: 1.75rem !important;
  }

  .lt-xl\:m-8 {
    margin: 2rem !important;
  }

  .lt-xl\:m-9 {
    margin: 2.25rem !important;
  }

  .lt-xl\:m-10 {
    margin: 2.5rem !important;
  }

  .lt-xl\:m-11 {
    margin: 2.75rem !important;
  }

  .lt-xl\:m-12 {
    margin: 3rem !important;
  }

  .lt-xl\:m-13 {
    margin: 3.25rem !important;
  }

  .lt-xl\:m-14 {
    margin: 3.5rem !important;
  }

  .lt-xl\:m-15 {
    margin: 3.75rem !important;
  }

  .lt-xl\:m-16 {
    margin: 4rem !important;
  }

  .lt-xl\:m-18 {
    margin: 4.5rem !important;
  }

  .lt-xl\:m-20 {
    margin: 5rem !important;
  }

  .lt-xl\:m-22 {
    margin: 5.5rem !important;
  }

  .lt-xl\:m-24 {
    margin: 6rem !important;
  }

  .lt-xl\:m-26 {
    margin: 6.5rem !important;
  }

  .lt-xl\:m-28 {
    margin: 7rem !important;
  }

  .lt-xl\:m-30 {
    margin: 7.5rem !important;
  }

  .lt-xl\:m-32 {
    margin: 8rem !important;
  }

  .lt-xl\:m-36 {
    margin: 9rem !important;
  }

  .lt-xl\:m-40 {
    margin: 10rem !important;
  }

  .lt-xl\:m-44 {
    margin: 11rem !important;
  }

  .lt-xl\:m-48 {
    margin: 12rem !important;
  }

  .lt-xl\:m-50 {
    margin: 12.5rem !important;
  }

  .lt-xl\:m-52 {
    margin: 13rem !important;
  }

  .lt-xl\:m-56 {
    margin: 14rem !important;
  }

  .lt-xl\:m-60 {
    margin: 15rem !important;
  }

  .lt-xl\:m-64 {
    margin: 16rem !important;
  }

  .lt-xl\:m-72 {
    margin: 18rem !important;
  }

  .lt-xl\:m-80 {
    margin: 20rem !important;
  }

  .lt-xl\:m-90 {
    margin: 24rem !important;
  }

  .lt-xl\:m-96 {
    margin: 24rem !important;
  }

  .lt-xl\:m-100 {
    margin: 25rem !important;
  }

  .lt-xl\:m-120 {
    margin: 30rem !important;
  }

  .lt-xl\:m-128 {
    margin: 32rem !important;
  }

  .lt-xl\:m-140 {
    margin: 35rem !important;
  }

  .lt-xl\:m-160 {
    margin: 40rem !important;
  }

  .lt-xl\:m-180 {
    margin: 45rem !important;
  }

  .lt-xl\:m-192 {
    margin: 48rem !important;
  }

  .lt-xl\:m-200 {
    margin: 50rem !important;
  }

  .lt-xl\:m-240 {
    margin: 60rem !important;
  }

  .lt-xl\:m-256 {
    margin: 64rem !important;
  }

  .lt-xl\:m-280 {
    margin: 70rem !important;
  }

  .lt-xl\:m-320 {
    margin: 80rem !important;
  }

  .lt-xl\:m-360 {
    margin: 90rem !important;
  }

  .lt-xl\:m-400 {
    margin: 100rem !important;
  }

  .lt-xl\:m-480 {
    margin: 120rem !important;
  }

  .lt-xl\:m-auto {
    margin: auto !important;
  }

  .lt-xl\:m-px {
    margin: 1px !important;
  }

  .lt-xl\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .lt-xl\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .lt-xl\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .lt-xl\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .lt-xl\:m-1\/2 {
    margin: 50% !important;
  }

  .lt-xl\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .lt-xl\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .lt-xl\:m-1\/4 {
    margin: 25% !important;
  }

  .lt-xl\:m-2\/4 {
    margin: 50% !important;
  }

  .lt-xl\:m-3\/4 {
    margin: 75% !important;
  }

  .lt-xl\:m-1\/5 {
    margin: 20% !important;
  }

  .lt-xl\:m-2\/5 {
    margin: 40% !important;
  }

  .lt-xl\:m-3\/5 {
    margin: 60% !important;
  }

  .lt-xl\:m-4\/5 {
    margin: 80% !important;
  }

  .lt-xl\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .lt-xl\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .lt-xl\:m-3\/6 {
    margin: 50% !important;
  }

  .lt-xl\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .lt-xl\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .lt-xl\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .lt-xl\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .lt-xl\:m-3\/12 {
    margin: 25% !important;
  }

  .lt-xl\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .lt-xl\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .lt-xl\:m-6\/12 {
    margin: 50% !important;
  }

  .lt-xl\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .lt-xl\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .lt-xl\:m-9\/12 {
    margin: 75% !important;
  }

  .lt-xl\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .lt-xl\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .lt-xl\:m-full {
    margin: 100% !important;
  }

  .lt-xl\:m-2px {
    margin: 2px !important;
  }

  .lt-xl\:-m-1 {
    margin: -0.25rem !important;
  }

  .lt-xl\:-m-2 {
    margin: -0.5rem !important;
  }

  .lt-xl\:-m-3 {
    margin: -0.75rem !important;
  }

  .lt-xl\:-m-4 {
    margin: -1rem !important;
  }

  .lt-xl\:-m-5 {
    margin: -1.25rem !important;
  }

  .lt-xl\:-m-6 {
    margin: -1.5rem !important;
  }

  .lt-xl\:-m-7 {
    margin: -1.75rem !important;
  }

  .lt-xl\:-m-8 {
    margin: -2rem !important;
  }

  .lt-xl\:-m-9 {
    margin: -2.25rem !important;
  }

  .lt-xl\:-m-10 {
    margin: -2.5rem !important;
  }

  .lt-xl\:-m-11 {
    margin: -2.75rem !important;
  }

  .lt-xl\:-m-12 {
    margin: -3rem !important;
  }

  .lt-xl\:-m-13 {
    margin: -3.25rem !important;
  }

  .lt-xl\:-m-14 {
    margin: -3.5rem !important;
  }

  .lt-xl\:-m-15 {
    margin: -3.75rem !important;
  }

  .lt-xl\:-m-16 {
    margin: -4rem !important;
  }

  .lt-xl\:-m-18 {
    margin: -4.5rem !important;
  }

  .lt-xl\:-m-20 {
    margin: -5rem !important;
  }

  .lt-xl\:-m-22 {
    margin: -5.5rem !important;
  }

  .lt-xl\:-m-24 {
    margin: -6rem !important;
  }

  .lt-xl\:-m-26 {
    margin: -6.5rem !important;
  }

  .lt-xl\:-m-28 {
    margin: -7rem !important;
  }

  .lt-xl\:-m-30 {
    margin: -7.5rem !important;
  }

  .lt-xl\:-m-32 {
    margin: -8rem !important;
  }

  .lt-xl\:-m-36 {
    margin: -9rem !important;
  }

  .lt-xl\:-m-40 {
    margin: -10rem !important;
  }

  .lt-xl\:-m-44 {
    margin: -11rem !important;
  }

  .lt-xl\:-m-48 {
    margin: -12rem !important;
  }

  .lt-xl\:-m-50 {
    margin: -12.5rem !important;
  }

  .lt-xl\:-m-52 {
    margin: -13rem !important;
  }

  .lt-xl\:-m-56 {
    margin: -14rem !important;
  }

  .lt-xl\:-m-60 {
    margin: -15rem !important;
  }

  .lt-xl\:-m-64 {
    margin: -16rem !important;
  }

  .lt-xl\:-m-72 {
    margin: -18rem !important;
  }

  .lt-xl\:-m-80 {
    margin: -20rem !important;
  }

  .lt-xl\:-m-90 {
    margin: -24rem !important;
  }

  .lt-xl\:-m-96 {
    margin: -24rem !important;
  }

  .lt-xl\:-m-100 {
    margin: -25rem !important;
  }

  .lt-xl\:-m-120 {
    margin: -30rem !important;
  }

  .lt-xl\:-m-128 {
    margin: -32rem !important;
  }

  .lt-xl\:-m-140 {
    margin: -35rem !important;
  }

  .lt-xl\:-m-160 {
    margin: -40rem !important;
  }

  .lt-xl\:-m-180 {
    margin: -45rem !important;
  }

  .lt-xl\:-m-192 {
    margin: -48rem !important;
  }

  .lt-xl\:-m-200 {
    margin: -50rem !important;
  }

  .lt-xl\:-m-240 {
    margin: -60rem !important;
  }

  .lt-xl\:-m-256 {
    margin: -64rem !important;
  }

  .lt-xl\:-m-280 {
    margin: -70rem !important;
  }

  .lt-xl\:-m-320 {
    margin: -80rem !important;
  }

  .lt-xl\:-m-360 {
    margin: -90rem !important;
  }

  .lt-xl\:-m-400 {
    margin: -100rem !important;
  }

  .lt-xl\:-m-480 {
    margin: -120rem !important;
  }

  .lt-xl\:-m-px {
    margin: -1px !important;
  }

  .lt-xl\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .lt-xl\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .lt-xl\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .lt-xl\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .lt-xl\:-m-1\/2 {
    margin: -50% !important;
  }

  .lt-xl\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .lt-xl\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .lt-xl\:-m-1\/4 {
    margin: -25% !important;
  }

  .lt-xl\:-m-2\/4 {
    margin: -50% !important;
  }

  .lt-xl\:-m-3\/4 {
    margin: -75% !important;
  }

  .lt-xl\:-m-1\/5 {
    margin: -20% !important;
  }

  .lt-xl\:-m-2\/5 {
    margin: -40% !important;
  }

  .lt-xl\:-m-3\/5 {
    margin: -60% !important;
  }

  .lt-xl\:-m-4\/5 {
    margin: -80% !important;
  }

  .lt-xl\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .lt-xl\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .lt-xl\:-m-3\/6 {
    margin: -50% !important;
  }

  .lt-xl\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .lt-xl\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .lt-xl\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .lt-xl\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .lt-xl\:-m-3\/12 {
    margin: -25% !important;
  }

  .lt-xl\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .lt-xl\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .lt-xl\:-m-6\/12 {
    margin: -50% !important;
  }

  .lt-xl\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .lt-xl\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .lt-xl\:-m-9\/12 {
    margin: -75% !important;
  }

  .lt-xl\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .lt-xl\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .lt-xl\:-m-full {
    margin: -100% !important;
  }

  .lt-xl\:-m-2px {
    margin: -2px !important;
  }

  .lt-xl\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .lt-xl\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .lt-xl\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .lt-xl\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .lt-xl\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .lt-xl\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .lt-xl\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .lt-xl\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .lt-xl\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .lt-xl\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .lt-xl\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .lt-xl\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .lt-xl\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .lt-xl\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .lt-xl\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .lt-xl\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .lt-xl\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lt-xl\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .lt-xl\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .lt-xl\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .lt-xl\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .lt-xl\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .lt-xl\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .lt-xl\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .lt-xl\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .lt-xl\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .lt-xl\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .lt-xl\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .lt-xl\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .lt-xl\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .lt-xl\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .lt-xl\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .lt-xl\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .lt-xl\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .lt-xl\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .lt-xl\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .lt-xl\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .lt-xl\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .lt-xl\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .lt-xl\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .lt-xl\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .lt-xl\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .lt-xl\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .lt-xl\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .lt-xl\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .lt-xl\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .lt-xl\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .lt-xl\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .lt-xl\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .lt-xl\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .lt-xl\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .lt-xl\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .lt-xl\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .lt-xl\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .lt-xl\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .lt-xl\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .lt-xl\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .lt-xl\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .lt-xl\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .lt-xl\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .lt-xl\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .lt-xl\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .lt-xl\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .lt-xl\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .lt-xl\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .lt-xl\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .lt-xl\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .lt-xl\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .lt-xl\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .lt-xl\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .lt-xl\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .lt-xl\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .lt-xl\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .lt-xl\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .lt-xl\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .lt-xl\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .lt-xl\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .lt-xl\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .lt-xl\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .lt-xl\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .lt-xl\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .lt-xl\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .lt-xl\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .lt-xl\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .lt-xl\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .lt-xl\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .lt-xl\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .lt-xl\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .lt-xl\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .lt-xl\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .lt-xl\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .lt-xl\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .lt-xl\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .lt-xl\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .lt-xl\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .lt-xl\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .lt-xl\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .lt-xl\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .lt-xl\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .lt-xl\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .lt-xl\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .lt-xl\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .lt-xl\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .lt-xl\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .lt-xl\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .lt-xl\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .lt-xl\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .lt-xl\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lt-xl\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .lt-xl\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .lt-xl\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .lt-xl\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .lt-xl\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .lt-xl\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .lt-xl\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .lt-xl\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .lt-xl\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .lt-xl\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .lt-xl\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-xl\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-xl\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lt-xl\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lt-xl\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lt-xl\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lt-xl\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .lt-xl\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .lt-xl\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-xl\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-xl\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .lt-xl\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .lt-xl\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .lt-xl\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .lt-xl\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .lt-xl\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .lt-xl\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .lt-xl\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .lt-xl\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .lt-xl\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .lt-xl\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .lt-xl\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .lt-xl\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lt-xl\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lt-xl\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-xl\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-xl\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lt-xl\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lt-xl\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .lt-xl\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .lt-xl\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .lt-xl\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .lt-xl\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .lt-xl\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .lt-xl\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .lt-xl\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .lt-xl\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .lt-xl\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .lt-xl\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .lt-xl\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .lt-xl\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .lt-xl\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .lt-xl\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .lt-xl\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .lt-xl\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .lt-xl\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .lt-xl\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .lt-xl\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .lt-xl\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .lt-xl\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .lt-xl\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .lt-xl\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .lt-xl\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .lt-xl\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .lt-xl\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .lt-xl\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .lt-xl\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .lt-xl\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .lt-xl\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .lt-xl\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .lt-xl\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .lt-xl\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .lt-xl\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .lt-xl\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .lt-xl\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .lt-xl\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .lt-xl\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .lt-xl\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .lt-xl\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .lt-xl\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .lt-xl\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .lt-xl\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .lt-xl\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .lt-xl\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .lt-xl\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .lt-xl\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .lt-xl\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .lt-xl\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .lt-xl\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .lt-xl\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .lt-xl\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .lt-xl\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .lt-xl\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .lt-xl\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .lt-xl\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .lt-xl\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .lt-xl\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .lt-xl\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .lt-xl\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .lt-xl\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .lt-xl\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .lt-xl\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .lt-xl\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .lt-xl\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .lt-xl\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .lt-xl\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .lt-xl\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .lt-xl\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .lt-xl\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .lt-xl\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .lt-xl\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .lt-xl\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .lt-xl\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .lt-xl\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .lt-xl\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .lt-xl\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .lt-xl\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .lt-xl\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .lt-xl\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .lt-xl\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .lt-xl\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .lt-xl\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .lt-xl\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .lt-xl\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .lt-xl\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .lt-xl\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .lt-xl\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .lt-xl\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .lt-xl\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .lt-xl\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .lt-xl\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .lt-xl\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .lt-xl\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .lt-xl\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .lt-xl\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .lt-xl\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .lt-xl\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .lt-xl\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .lt-xl\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .lt-xl\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .lt-xl\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .lt-xl\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .lt-xl\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .lt-xl\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .lt-xl\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .lt-xl\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .lt-xl\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .lt-xl\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .lt-xl\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .lt-xl\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .lt-xl\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .lt-xl\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .lt-xl\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .lt-xl\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .lt-xl\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .lt-xl\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .lt-xl\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .lt-xl\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .lt-xl\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .lt-xl\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .lt-xl\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .lt-xl\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .lt-xl\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .lt-xl\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .lt-xl\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .lt-xl\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .lt-xl\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .lt-xl\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .lt-xl\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .lt-xl\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .lt-xl\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .lt-xl\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .lt-xl\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .lt-xl\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .lt-xl\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .lt-xl\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .lt-xl\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .lt-xl\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .lt-xl\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .lt-xl\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .lt-xl\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-xl\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-xl\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lt-xl\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lt-xl\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lt-xl\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lt-xl\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .lt-xl\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .lt-xl\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-xl\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-xl\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .lt-xl\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .lt-xl\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .lt-xl\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .lt-xl\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .lt-xl\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .lt-xl\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .lt-xl\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .lt-xl\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .lt-xl\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .lt-xl\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .lt-xl\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .lt-xl\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lt-xl\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lt-xl\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-xl\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-xl\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lt-xl\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lt-xl\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .lt-xl\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .lt-xl\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .lt-xl\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .lt-xl\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .lt-xl\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .lt-xl\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .lt-xl\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .lt-xl\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .lt-xl\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .lt-xl\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .lt-xl\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .lt-xl\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .lt-xl\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .lt-xl\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .lt-xl\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .lt-xl\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .lt-xl\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .lt-xl\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .lt-xl\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .lt-xl\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .lt-xl\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .lt-xl\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .lt-xl\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .lt-xl\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .lt-xl\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .lt-xl\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .lt-xl\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .lt-xl\:mt-0 {
    margin-top: 0 !important;
  }

  .lt-xl\:mr-0 {
    margin-right: 0 !important;
  }

  .lt-xl\:mb-0 {
    margin-bottom: 0 !important;
  }

  .lt-xl\:ml-0 {
    margin-left: 0 !important;
  }

  .lt-xl\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .lt-xl\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .lt-xl\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .lt-xl\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .lt-xl\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .lt-xl\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .lt-xl\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .lt-xl\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .lt-xl\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .lt-xl\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .lt-xl\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .lt-xl\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .lt-xl\:mt-4 {
    margin-top: 1rem !important;
  }

  .lt-xl\:mr-4 {
    margin-right: 1rem !important;
  }

  .lt-xl\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .lt-xl\:ml-4 {
    margin-left: 1rem !important;
  }

  .lt-xl\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .lt-xl\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .lt-xl\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .lt-xl\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .lt-xl\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .lt-xl\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .lt-xl\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .lt-xl\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .lt-xl\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .lt-xl\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .lt-xl\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .lt-xl\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .lt-xl\:mt-8 {
    margin-top: 2rem !important;
  }

  .lt-xl\:mr-8 {
    margin-right: 2rem !important;
  }

  .lt-xl\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .lt-xl\:ml-8 {
    margin-left: 2rem !important;
  }

  .lt-xl\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .lt-xl\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .lt-xl\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .lt-xl\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .lt-xl\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .lt-xl\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .lt-xl\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .lt-xl\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .lt-xl\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .lt-xl\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .lt-xl\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .lt-xl\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .lt-xl\:mt-12 {
    margin-top: 3rem !important;
  }

  .lt-xl\:mr-12 {
    margin-right: 3rem !important;
  }

  .lt-xl\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .lt-xl\:ml-12 {
    margin-left: 3rem !important;
  }

  .lt-xl\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .lt-xl\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .lt-xl\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .lt-xl\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .lt-xl\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .lt-xl\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .lt-xl\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .lt-xl\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .lt-xl\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .lt-xl\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .lt-xl\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .lt-xl\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .lt-xl\:mt-16 {
    margin-top: 4rem !important;
  }

  .lt-xl\:mr-16 {
    margin-right: 4rem !important;
  }

  .lt-xl\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .lt-xl\:ml-16 {
    margin-left: 4rem !important;
  }

  .lt-xl\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .lt-xl\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .lt-xl\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .lt-xl\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .lt-xl\:mt-20 {
    margin-top: 5rem !important;
  }

  .lt-xl\:mr-20 {
    margin-right: 5rem !important;
  }

  .lt-xl\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .lt-xl\:ml-20 {
    margin-left: 5rem !important;
  }

  .lt-xl\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .lt-xl\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .lt-xl\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .lt-xl\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .lt-xl\:mt-24 {
    margin-top: 6rem !important;
  }

  .lt-xl\:mr-24 {
    margin-right: 6rem !important;
  }

  .lt-xl\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .lt-xl\:ml-24 {
    margin-left: 6rem !important;
  }

  .lt-xl\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .lt-xl\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .lt-xl\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .lt-xl\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .lt-xl\:mt-28 {
    margin-top: 7rem !important;
  }

  .lt-xl\:mr-28 {
    margin-right: 7rem !important;
  }

  .lt-xl\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .lt-xl\:ml-28 {
    margin-left: 7rem !important;
  }

  .lt-xl\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .lt-xl\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .lt-xl\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .lt-xl\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .lt-xl\:mt-32 {
    margin-top: 8rem !important;
  }

  .lt-xl\:mr-32 {
    margin-right: 8rem !important;
  }

  .lt-xl\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .lt-xl\:ml-32 {
    margin-left: 8rem !important;
  }

  .lt-xl\:mt-36 {
    margin-top: 9rem !important;
  }

  .lt-xl\:mr-36 {
    margin-right: 9rem !important;
  }

  .lt-xl\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .lt-xl\:ml-36 {
    margin-left: 9rem !important;
  }

  .lt-xl\:mt-40 {
    margin-top: 10rem !important;
  }

  .lt-xl\:mr-40 {
    margin-right: 10rem !important;
  }

  .lt-xl\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .lt-xl\:ml-40 {
    margin-left: 10rem !important;
  }

  .lt-xl\:mt-44 {
    margin-top: 11rem !important;
  }

  .lt-xl\:mr-44 {
    margin-right: 11rem !important;
  }

  .lt-xl\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .lt-xl\:ml-44 {
    margin-left: 11rem !important;
  }

  .lt-xl\:mt-48 {
    margin-top: 12rem !important;
  }

  .lt-xl\:mr-48 {
    margin-right: 12rem !important;
  }

  .lt-xl\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .lt-xl\:ml-48 {
    margin-left: 12rem !important;
  }

  .lt-xl\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .lt-xl\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .lt-xl\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .lt-xl\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .lt-xl\:mt-52 {
    margin-top: 13rem !important;
  }

  .lt-xl\:mr-52 {
    margin-right: 13rem !important;
  }

  .lt-xl\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .lt-xl\:ml-52 {
    margin-left: 13rem !important;
  }

  .lt-xl\:mt-56 {
    margin-top: 14rem !important;
  }

  .lt-xl\:mr-56 {
    margin-right: 14rem !important;
  }

  .lt-xl\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .lt-xl\:ml-56 {
    margin-left: 14rem !important;
  }

  .lt-xl\:mt-60 {
    margin-top: 15rem !important;
  }

  .lt-xl\:mr-60 {
    margin-right: 15rem !important;
  }

  .lt-xl\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .lt-xl\:ml-60 {
    margin-left: 15rem !important;
  }

  .lt-xl\:mt-64 {
    margin-top: 16rem !important;
  }

  .lt-xl\:mr-64 {
    margin-right: 16rem !important;
  }

  .lt-xl\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .lt-xl\:ml-64 {
    margin-left: 16rem !important;
  }

  .lt-xl\:mt-72 {
    margin-top: 18rem !important;
  }

  .lt-xl\:mr-72 {
    margin-right: 18rem !important;
  }

  .lt-xl\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .lt-xl\:ml-72 {
    margin-left: 18rem !important;
  }

  .lt-xl\:mt-80 {
    margin-top: 20rem !important;
  }

  .lt-xl\:mr-80 {
    margin-right: 20rem !important;
  }

  .lt-xl\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .lt-xl\:ml-80 {
    margin-left: 20rem !important;
  }

  .lt-xl\:mt-90 {
    margin-top: 24rem !important;
  }

  .lt-xl\:mr-90 {
    margin-right: 24rem !important;
  }

  .lt-xl\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .lt-xl\:ml-90 {
    margin-left: 24rem !important;
  }

  .lt-xl\:mt-96 {
    margin-top: 24rem !important;
  }

  .lt-xl\:mr-96 {
    margin-right: 24rem !important;
  }

  .lt-xl\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .lt-xl\:ml-96 {
    margin-left: 24rem !important;
  }

  .lt-xl\:mt-100 {
    margin-top: 25rem !important;
  }

  .lt-xl\:mr-100 {
    margin-right: 25rem !important;
  }

  .lt-xl\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .lt-xl\:ml-100 {
    margin-left: 25rem !important;
  }

  .lt-xl\:mt-120 {
    margin-top: 30rem !important;
  }

  .lt-xl\:mr-120 {
    margin-right: 30rem !important;
  }

  .lt-xl\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .lt-xl\:ml-120 {
    margin-left: 30rem !important;
  }

  .lt-xl\:mt-128 {
    margin-top: 32rem !important;
  }

  .lt-xl\:mr-128 {
    margin-right: 32rem !important;
  }

  .lt-xl\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .lt-xl\:ml-128 {
    margin-left: 32rem !important;
  }

  .lt-xl\:mt-140 {
    margin-top: 35rem !important;
  }

  .lt-xl\:mr-140 {
    margin-right: 35rem !important;
  }

  .lt-xl\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .lt-xl\:ml-140 {
    margin-left: 35rem !important;
  }

  .lt-xl\:mt-160 {
    margin-top: 40rem !important;
  }

  .lt-xl\:mr-160 {
    margin-right: 40rem !important;
  }

  .lt-xl\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .lt-xl\:ml-160 {
    margin-left: 40rem !important;
  }

  .lt-xl\:mt-180 {
    margin-top: 45rem !important;
  }

  .lt-xl\:mr-180 {
    margin-right: 45rem !important;
  }

  .lt-xl\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .lt-xl\:ml-180 {
    margin-left: 45rem !important;
  }

  .lt-xl\:mt-192 {
    margin-top: 48rem !important;
  }

  .lt-xl\:mr-192 {
    margin-right: 48rem !important;
  }

  .lt-xl\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .lt-xl\:ml-192 {
    margin-left: 48rem !important;
  }

  .lt-xl\:mt-200 {
    margin-top: 50rem !important;
  }

  .lt-xl\:mr-200 {
    margin-right: 50rem !important;
  }

  .lt-xl\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .lt-xl\:ml-200 {
    margin-left: 50rem !important;
  }

  .lt-xl\:mt-240 {
    margin-top: 60rem !important;
  }

  .lt-xl\:mr-240 {
    margin-right: 60rem !important;
  }

  .lt-xl\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .lt-xl\:ml-240 {
    margin-left: 60rem !important;
  }

  .lt-xl\:mt-256 {
    margin-top: 64rem !important;
  }

  .lt-xl\:mr-256 {
    margin-right: 64rem !important;
  }

  .lt-xl\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .lt-xl\:ml-256 {
    margin-left: 64rem !important;
  }

  .lt-xl\:mt-280 {
    margin-top: 70rem !important;
  }

  .lt-xl\:mr-280 {
    margin-right: 70rem !important;
  }

  .lt-xl\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .lt-xl\:ml-280 {
    margin-left: 70rem !important;
  }

  .lt-xl\:mt-320 {
    margin-top: 80rem !important;
  }

  .lt-xl\:mr-320 {
    margin-right: 80rem !important;
  }

  .lt-xl\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .lt-xl\:ml-320 {
    margin-left: 80rem !important;
  }

  .lt-xl\:mt-360 {
    margin-top: 90rem !important;
  }

  .lt-xl\:mr-360 {
    margin-right: 90rem !important;
  }

  .lt-xl\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .lt-xl\:ml-360 {
    margin-left: 90rem !important;
  }

  .lt-xl\:mt-400 {
    margin-top: 100rem !important;
  }

  .lt-xl\:mr-400 {
    margin-right: 100rem !important;
  }

  .lt-xl\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .lt-xl\:ml-400 {
    margin-left: 100rem !important;
  }

  .lt-xl\:mt-480 {
    margin-top: 120rem !important;
  }

  .lt-xl\:mr-480 {
    margin-right: 120rem !important;
  }

  .lt-xl\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .lt-xl\:ml-480 {
    margin-left: 120rem !important;
  }

  .lt-xl\:mt-auto {
    margin-top: auto !important;
  }

  .lt-xl\:mr-auto {
    margin-right: auto !important;
  }

  .lt-xl\:mb-auto {
    margin-bottom: auto !important;
  }

  .lt-xl\:ml-auto {
    margin-left: auto !important;
  }

  .lt-xl\:mt-px {
    margin-top: 1px !important;
  }

  .lt-xl\:mr-px {
    margin-right: 1px !important;
  }

  .lt-xl\:mb-px {
    margin-bottom: 1px !important;
  }

  .lt-xl\:ml-px {
    margin-left: 1px !important;
  }

  .lt-xl\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .lt-xl\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .lt-xl\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .lt-xl\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .lt-xl\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .lt-xl\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .lt-xl\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .lt-xl\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .lt-xl\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .lt-xl\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .lt-xl\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .lt-xl\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .lt-xl\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .lt-xl\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .lt-xl\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .lt-xl\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .lt-xl\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .lt-xl\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .lt-xl\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .lt-xl\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .lt-xl\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .lt-xl\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .lt-xl\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .lt-xl\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .lt-xl\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .lt-xl\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .lt-xl\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .lt-xl\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .lt-xl\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .lt-xl\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .lt-xl\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .lt-xl\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .lt-xl\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .lt-xl\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .lt-xl\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .lt-xl\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .lt-xl\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .lt-xl\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .lt-xl\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .lt-xl\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .lt-xl\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .lt-xl\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .lt-xl\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .lt-xl\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .lt-xl\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .lt-xl\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .lt-xl\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .lt-xl\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .lt-xl\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .lt-xl\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .lt-xl\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .lt-xl\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .lt-xl\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .lt-xl\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .lt-xl\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .lt-xl\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .lt-xl\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .lt-xl\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .lt-xl\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .lt-xl\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .lt-xl\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .lt-xl\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .lt-xl\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .lt-xl\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .lt-xl\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .lt-xl\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .lt-xl\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .lt-xl\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .lt-xl\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .lt-xl\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .lt-xl\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .lt-xl\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .lt-xl\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .lt-xl\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .lt-xl\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .lt-xl\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .lt-xl\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .lt-xl\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .lt-xl\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .lt-xl\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .lt-xl\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .lt-xl\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .lt-xl\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .lt-xl\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .lt-xl\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .lt-xl\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .lt-xl\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .lt-xl\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .lt-xl\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .lt-xl\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .lt-xl\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .lt-xl\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .lt-xl\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .lt-xl\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .lt-xl\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .lt-xl\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .lt-xl\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .lt-xl\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .lt-xl\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .lt-xl\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .lt-xl\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .lt-xl\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .lt-xl\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .lt-xl\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .lt-xl\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .lt-xl\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .lt-xl\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .lt-xl\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .lt-xl\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .lt-xl\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .lt-xl\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .lt-xl\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .lt-xl\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .lt-xl\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .lt-xl\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .lt-xl\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .lt-xl\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .lt-xl\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .lt-xl\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .lt-xl\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .lt-xl\:mt-full {
    margin-top: 100% !important;
  }

  .lt-xl\:mr-full {
    margin-right: 100% !important;
  }

  .lt-xl\:mb-full {
    margin-bottom: 100% !important;
  }

  .lt-xl\:ml-full {
    margin-left: 100% !important;
  }

  .lt-xl\:mt-2px {
    margin-top: 2px !important;
  }

  .lt-xl\:mr-2px {
    margin-right: 2px !important;
  }

  .lt-xl\:mb-2px {
    margin-bottom: 2px !important;
  }

  .lt-xl\:ml-2px {
    margin-left: 2px !important;
  }

  .lt-xl\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .lt-xl\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .lt-xl\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .lt-xl\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .lt-xl\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .lt-xl\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .lt-xl\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .lt-xl\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .lt-xl\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .lt-xl\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .lt-xl\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .lt-xl\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .lt-xl\:-mt-4 {
    margin-top: -1rem !important;
  }

  .lt-xl\:-mr-4 {
    margin-right: -1rem !important;
  }

  .lt-xl\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .lt-xl\:-ml-4 {
    margin-left: -1rem !important;
  }

  .lt-xl\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .lt-xl\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .lt-xl\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .lt-xl\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .lt-xl\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .lt-xl\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .lt-xl\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .lt-xl\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .lt-xl\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .lt-xl\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .lt-xl\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .lt-xl\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .lt-xl\:-mt-8 {
    margin-top: -2rem !important;
  }

  .lt-xl\:-mr-8 {
    margin-right: -2rem !important;
  }

  .lt-xl\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .lt-xl\:-ml-8 {
    margin-left: -2rem !important;
  }

  .lt-xl\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .lt-xl\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .lt-xl\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .lt-xl\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .lt-xl\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .lt-xl\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .lt-xl\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .lt-xl\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .lt-xl\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .lt-xl\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .lt-xl\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .lt-xl\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .lt-xl\:-mt-12 {
    margin-top: -3rem !important;
  }

  .lt-xl\:-mr-12 {
    margin-right: -3rem !important;
  }

  .lt-xl\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .lt-xl\:-ml-12 {
    margin-left: -3rem !important;
  }

  .lt-xl\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .lt-xl\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .lt-xl\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .lt-xl\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .lt-xl\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .lt-xl\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .lt-xl\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .lt-xl\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .lt-xl\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .lt-xl\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .lt-xl\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .lt-xl\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .lt-xl\:-mt-16 {
    margin-top: -4rem !important;
  }

  .lt-xl\:-mr-16 {
    margin-right: -4rem !important;
  }

  .lt-xl\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .lt-xl\:-ml-16 {
    margin-left: -4rem !important;
  }

  .lt-xl\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .lt-xl\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .lt-xl\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .lt-xl\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .lt-xl\:-mt-20 {
    margin-top: -5rem !important;
  }

  .lt-xl\:-mr-20 {
    margin-right: -5rem !important;
  }

  .lt-xl\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .lt-xl\:-ml-20 {
    margin-left: -5rem !important;
  }

  .lt-xl\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .lt-xl\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .lt-xl\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .lt-xl\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .lt-xl\:-mt-24 {
    margin-top: -6rem !important;
  }

  .lt-xl\:-mr-24 {
    margin-right: -6rem !important;
  }

  .lt-xl\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .lt-xl\:-ml-24 {
    margin-left: -6rem !important;
  }

  .lt-xl\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .lt-xl\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .lt-xl\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .lt-xl\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .lt-xl\:-mt-28 {
    margin-top: -7rem !important;
  }

  .lt-xl\:-mr-28 {
    margin-right: -7rem !important;
  }

  .lt-xl\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .lt-xl\:-ml-28 {
    margin-left: -7rem !important;
  }

  .lt-xl\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .lt-xl\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .lt-xl\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .lt-xl\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .lt-xl\:-mt-32 {
    margin-top: -8rem !important;
  }

  .lt-xl\:-mr-32 {
    margin-right: -8rem !important;
  }

  .lt-xl\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .lt-xl\:-ml-32 {
    margin-left: -8rem !important;
  }

  .lt-xl\:-mt-36 {
    margin-top: -9rem !important;
  }

  .lt-xl\:-mr-36 {
    margin-right: -9rem !important;
  }

  .lt-xl\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .lt-xl\:-ml-36 {
    margin-left: -9rem !important;
  }

  .lt-xl\:-mt-40 {
    margin-top: -10rem !important;
  }

  .lt-xl\:-mr-40 {
    margin-right: -10rem !important;
  }

  .lt-xl\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .lt-xl\:-ml-40 {
    margin-left: -10rem !important;
  }

  .lt-xl\:-mt-44 {
    margin-top: -11rem !important;
  }

  .lt-xl\:-mr-44 {
    margin-right: -11rem !important;
  }

  .lt-xl\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .lt-xl\:-ml-44 {
    margin-left: -11rem !important;
  }

  .lt-xl\:-mt-48 {
    margin-top: -12rem !important;
  }

  .lt-xl\:-mr-48 {
    margin-right: -12rem !important;
  }

  .lt-xl\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .lt-xl\:-ml-48 {
    margin-left: -12rem !important;
  }

  .lt-xl\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .lt-xl\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .lt-xl\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .lt-xl\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .lt-xl\:-mt-52 {
    margin-top: -13rem !important;
  }

  .lt-xl\:-mr-52 {
    margin-right: -13rem !important;
  }

  .lt-xl\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .lt-xl\:-ml-52 {
    margin-left: -13rem !important;
  }

  .lt-xl\:-mt-56 {
    margin-top: -14rem !important;
  }

  .lt-xl\:-mr-56 {
    margin-right: -14rem !important;
  }

  .lt-xl\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .lt-xl\:-ml-56 {
    margin-left: -14rem !important;
  }

  .lt-xl\:-mt-60 {
    margin-top: -15rem !important;
  }

  .lt-xl\:-mr-60 {
    margin-right: -15rem !important;
  }

  .lt-xl\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .lt-xl\:-ml-60 {
    margin-left: -15rem !important;
  }

  .lt-xl\:-mt-64 {
    margin-top: -16rem !important;
  }

  .lt-xl\:-mr-64 {
    margin-right: -16rem !important;
  }

  .lt-xl\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .lt-xl\:-ml-64 {
    margin-left: -16rem !important;
  }

  .lt-xl\:-mt-72 {
    margin-top: -18rem !important;
  }

  .lt-xl\:-mr-72 {
    margin-right: -18rem !important;
  }

  .lt-xl\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .lt-xl\:-ml-72 {
    margin-left: -18rem !important;
  }

  .lt-xl\:-mt-80 {
    margin-top: -20rem !important;
  }

  .lt-xl\:-mr-80 {
    margin-right: -20rem !important;
  }

  .lt-xl\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .lt-xl\:-ml-80 {
    margin-left: -20rem !important;
  }

  .lt-xl\:-mt-90 {
    margin-top: -24rem !important;
  }

  .lt-xl\:-mr-90 {
    margin-right: -24rem !important;
  }

  .lt-xl\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .lt-xl\:-ml-90 {
    margin-left: -24rem !important;
  }

  .lt-xl\:-mt-96 {
    margin-top: -24rem !important;
  }

  .lt-xl\:-mr-96 {
    margin-right: -24rem !important;
  }

  .lt-xl\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .lt-xl\:-ml-96 {
    margin-left: -24rem !important;
  }

  .lt-xl\:-mt-100 {
    margin-top: -25rem !important;
  }

  .lt-xl\:-mr-100 {
    margin-right: -25rem !important;
  }

  .lt-xl\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .lt-xl\:-ml-100 {
    margin-left: -25rem !important;
  }

  .lt-xl\:-mt-120 {
    margin-top: -30rem !important;
  }

  .lt-xl\:-mr-120 {
    margin-right: -30rem !important;
  }

  .lt-xl\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .lt-xl\:-ml-120 {
    margin-left: -30rem !important;
  }

  .lt-xl\:-mt-128 {
    margin-top: -32rem !important;
  }

  .lt-xl\:-mr-128 {
    margin-right: -32rem !important;
  }

  .lt-xl\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .lt-xl\:-ml-128 {
    margin-left: -32rem !important;
  }

  .lt-xl\:-mt-140 {
    margin-top: -35rem !important;
  }

  .lt-xl\:-mr-140 {
    margin-right: -35rem !important;
  }

  .lt-xl\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .lt-xl\:-ml-140 {
    margin-left: -35rem !important;
  }

  .lt-xl\:-mt-160 {
    margin-top: -40rem !important;
  }

  .lt-xl\:-mr-160 {
    margin-right: -40rem !important;
  }

  .lt-xl\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .lt-xl\:-ml-160 {
    margin-left: -40rem !important;
  }

  .lt-xl\:-mt-180 {
    margin-top: -45rem !important;
  }

  .lt-xl\:-mr-180 {
    margin-right: -45rem !important;
  }

  .lt-xl\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .lt-xl\:-ml-180 {
    margin-left: -45rem !important;
  }

  .lt-xl\:-mt-192 {
    margin-top: -48rem !important;
  }

  .lt-xl\:-mr-192 {
    margin-right: -48rem !important;
  }

  .lt-xl\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .lt-xl\:-ml-192 {
    margin-left: -48rem !important;
  }

  .lt-xl\:-mt-200 {
    margin-top: -50rem !important;
  }

  .lt-xl\:-mr-200 {
    margin-right: -50rem !important;
  }

  .lt-xl\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .lt-xl\:-ml-200 {
    margin-left: -50rem !important;
  }

  .lt-xl\:-mt-240 {
    margin-top: -60rem !important;
  }

  .lt-xl\:-mr-240 {
    margin-right: -60rem !important;
  }

  .lt-xl\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .lt-xl\:-ml-240 {
    margin-left: -60rem !important;
  }

  .lt-xl\:-mt-256 {
    margin-top: -64rem !important;
  }

  .lt-xl\:-mr-256 {
    margin-right: -64rem !important;
  }

  .lt-xl\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .lt-xl\:-ml-256 {
    margin-left: -64rem !important;
  }

  .lt-xl\:-mt-280 {
    margin-top: -70rem !important;
  }

  .lt-xl\:-mr-280 {
    margin-right: -70rem !important;
  }

  .lt-xl\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .lt-xl\:-ml-280 {
    margin-left: -70rem !important;
  }

  .lt-xl\:-mt-320 {
    margin-top: -80rem !important;
  }

  .lt-xl\:-mr-320 {
    margin-right: -80rem !important;
  }

  .lt-xl\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .lt-xl\:-ml-320 {
    margin-left: -80rem !important;
  }

  .lt-xl\:-mt-360 {
    margin-top: -90rem !important;
  }

  .lt-xl\:-mr-360 {
    margin-right: -90rem !important;
  }

  .lt-xl\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .lt-xl\:-ml-360 {
    margin-left: -90rem !important;
  }

  .lt-xl\:-mt-400 {
    margin-top: -100rem !important;
  }

  .lt-xl\:-mr-400 {
    margin-right: -100rem !important;
  }

  .lt-xl\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .lt-xl\:-ml-400 {
    margin-left: -100rem !important;
  }

  .lt-xl\:-mt-480 {
    margin-top: -120rem !important;
  }

  .lt-xl\:-mr-480 {
    margin-right: -120rem !important;
  }

  .lt-xl\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .lt-xl\:-ml-480 {
    margin-left: -120rem !important;
  }

  .lt-xl\:-mt-px {
    margin-top: -1px !important;
  }

  .lt-xl\:-mr-px {
    margin-right: -1px !important;
  }

  .lt-xl\:-mb-px {
    margin-bottom: -1px !important;
  }

  .lt-xl\:-ml-px {
    margin-left: -1px !important;
  }

  .lt-xl\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .lt-xl\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .lt-xl\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .lt-xl\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .lt-xl\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .lt-xl\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .lt-xl\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .lt-xl\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .lt-xl\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .lt-xl\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .lt-xl\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .lt-xl\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .lt-xl\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .lt-xl\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .lt-xl\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .lt-xl\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .lt-xl\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .lt-xl\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .lt-xl\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .lt-xl\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .lt-xl\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .lt-xl\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .lt-xl\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .lt-xl\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .lt-xl\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .lt-xl\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .lt-xl\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .lt-xl\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .lt-xl\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .lt-xl\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .lt-xl\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .lt-xl\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .lt-xl\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .lt-xl\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .lt-xl\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .lt-xl\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .lt-xl\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .lt-xl\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .lt-xl\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .lt-xl\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .lt-xl\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .lt-xl\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .lt-xl\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .lt-xl\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .lt-xl\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .lt-xl\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .lt-xl\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .lt-xl\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .lt-xl\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .lt-xl\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .lt-xl\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .lt-xl\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .lt-xl\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .lt-xl\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .lt-xl\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .lt-xl\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .lt-xl\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .lt-xl\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .lt-xl\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .lt-xl\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .lt-xl\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .lt-xl\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .lt-xl\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .lt-xl\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .lt-xl\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .lt-xl\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .lt-xl\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .lt-xl\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .lt-xl\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .lt-xl\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .lt-xl\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .lt-xl\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .lt-xl\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .lt-xl\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .lt-xl\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .lt-xl\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .lt-xl\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .lt-xl\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .lt-xl\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .lt-xl\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .lt-xl\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .lt-xl\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .lt-xl\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .lt-xl\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .lt-xl\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .lt-xl\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .lt-xl\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .lt-xl\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .lt-xl\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .lt-xl\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .lt-xl\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .lt-xl\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .lt-xl\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .lt-xl\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .lt-xl\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .lt-xl\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .lt-xl\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .lt-xl\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .lt-xl\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .lt-xl\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .lt-xl\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .lt-xl\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .lt-xl\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .lt-xl\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .lt-xl\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .lt-xl\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .lt-xl\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .lt-xl\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .lt-xl\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .lt-xl\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .lt-xl\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .lt-xl\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .lt-xl\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .lt-xl\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .lt-xl\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .lt-xl\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .lt-xl\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .lt-xl\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .lt-xl\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .lt-xl\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .lt-xl\:-mt-full {
    margin-top: -100% !important;
  }

  .lt-xl\:-mr-full {
    margin-right: -100% !important;
  }

  .lt-xl\:-mb-full {
    margin-bottom: -100% !important;
  }

  .lt-xl\:-ml-full {
    margin-left: -100% !important;
  }

  .lt-xl\:-mt-2px {
    margin-top: -2px !important;
  }

  .lt-xl\:-mr-2px {
    margin-right: -2px !important;
  }

  .lt-xl\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .lt-xl\:-ml-2px {
    margin-left: -2px !important;
  }

  .lt-xl\:max-h-0 {
    max-height: 0 !important;
  }

  .lt-xl\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .lt-xl\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .lt-xl\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .lt-xl\:max-h-4 {
    max-height: 1rem !important;
  }

  .lt-xl\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .lt-xl\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .lt-xl\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .lt-xl\:max-h-8 {
    max-height: 2rem !important;
  }

  .lt-xl\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .lt-xl\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .lt-xl\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .lt-xl\:max-h-12 {
    max-height: 3rem !important;
  }

  .lt-xl\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .lt-xl\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .lt-xl\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .lt-xl\:max-h-16 {
    max-height: 4rem !important;
  }

  .lt-xl\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .lt-xl\:max-h-20 {
    max-height: 5rem !important;
  }

  .lt-xl\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .lt-xl\:max-h-24 {
    max-height: 6rem !important;
  }

  .lt-xl\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .lt-xl\:max-h-28 {
    max-height: 7rem !important;
  }

  .lt-xl\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .lt-xl\:max-h-32 {
    max-height: 8rem !important;
  }

  .lt-xl\:max-h-36 {
    max-height: 9rem !important;
  }

  .lt-xl\:max-h-40 {
    max-height: 10rem !important;
  }

  .lt-xl\:max-h-44 {
    max-height: 11rem !important;
  }

  .lt-xl\:max-h-48 {
    max-height: 12rem !important;
  }

  .lt-xl\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .lt-xl\:max-h-52 {
    max-height: 13rem !important;
  }

  .lt-xl\:max-h-56 {
    max-height: 14rem !important;
  }

  .lt-xl\:max-h-60 {
    max-height: 15rem !important;
  }

  .lt-xl\:max-h-64 {
    max-height: 16rem !important;
  }

  .lt-xl\:max-h-72 {
    max-height: 18rem !important;
  }

  .lt-xl\:max-h-80 {
    max-height: 20rem !important;
  }

  .lt-xl\:max-h-90 {
    max-height: 24rem !important;
  }

  .lt-xl\:max-h-96 {
    max-height: 24rem !important;
  }

  .lt-xl\:max-h-100 {
    max-height: 25rem !important;
  }

  .lt-xl\:max-h-120 {
    max-height: 30rem !important;
  }

  .lt-xl\:max-h-128 {
    max-height: 32rem !important;
  }

  .lt-xl\:max-h-140 {
    max-height: 35rem !important;
  }

  .lt-xl\:max-h-160 {
    max-height: 40rem !important;
  }

  .lt-xl\:max-h-180 {
    max-height: 45rem !important;
  }

  .lt-xl\:max-h-192 {
    max-height: 48rem !important;
  }

  .lt-xl\:max-h-200 {
    max-height: 50rem !important;
  }

  .lt-xl\:max-h-240 {
    max-height: 60rem !important;
  }

  .lt-xl\:max-h-256 {
    max-height: 64rem !important;
  }

  .lt-xl\:max-h-280 {
    max-height: 70rem !important;
  }

  .lt-xl\:max-h-320 {
    max-height: 80rem !important;
  }

  .lt-xl\:max-h-360 {
    max-height: 90rem !important;
  }

  .lt-xl\:max-h-400 {
    max-height: 100rem !important;
  }

  .lt-xl\:max-h-480 {
    max-height: 120rem !important;
  }

  .lt-xl\:max-h-screen {
    max-height: 100vh !important;
  }

  .lt-xl\:max-h-px {
    max-height: 1px !important;
  }

  .lt-xl\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .lt-xl\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .lt-xl\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .lt-xl\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .lt-xl\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .lt-xl\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .lt-xl\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .lt-xl\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .lt-xl\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .lt-xl\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .lt-xl\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .lt-xl\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .lt-xl\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .lt-xl\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .lt-xl\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .lt-xl\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .lt-xl\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .lt-xl\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .lt-xl\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .lt-xl\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .lt-xl\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .lt-xl\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .lt-xl\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .lt-xl\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .lt-xl\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .lt-xl\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .lt-xl\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .lt-xl\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .lt-xl\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .lt-xl\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .lt-xl\:max-h-full {
    max-height: 100% !important;
  }

  .lt-xl\:max-h-2px {
    max-height: 2px !important;
  }

  .lt-xl\:max-h-none {
    max-height: none !important;
  }

  .lt-xl\:max-w-0 {
    max-width: 0 !important;
  }

  .lt-xl\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .lt-xl\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .lt-xl\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .lt-xl\:max-w-4 {
    max-width: 1rem !important;
  }

  .lt-xl\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .lt-xl\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .lt-xl\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .lt-xl\:max-w-8 {
    max-width: 2rem !important;
  }

  .lt-xl\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .lt-xl\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .lt-xl\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .lt-xl\:max-w-12 {
    max-width: 3rem !important;
  }

  .lt-xl\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .lt-xl\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .lt-xl\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .lt-xl\:max-w-16 {
    max-width: 4rem !important;
  }

  .lt-xl\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .lt-xl\:max-w-20 {
    max-width: 5rem !important;
  }

  .lt-xl\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .lt-xl\:max-w-24 {
    max-width: 6rem !important;
  }

  .lt-xl\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .lt-xl\:max-w-28 {
    max-width: 7rem !important;
  }

  .lt-xl\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .lt-xl\:max-w-32 {
    max-width: 8rem !important;
  }

  .lt-xl\:max-w-36 {
    max-width: 9rem !important;
  }

  .lt-xl\:max-w-40 {
    max-width: 10rem !important;
  }

  .lt-xl\:max-w-44 {
    max-width: 11rem !important;
  }

  .lt-xl\:max-w-48 {
    max-width: 12rem !important;
  }

  .lt-xl\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .lt-xl\:max-w-52 {
    max-width: 13rem !important;
  }

  .lt-xl\:max-w-56 {
    max-width: 14rem !important;
  }

  .lt-xl\:max-w-60 {
    max-width: 15rem !important;
  }

  .lt-xl\:max-w-64 {
    max-width: 16rem !important;
  }

  .lt-xl\:max-w-72 {
    max-width: 18rem !important;
  }

  .lt-xl\:max-w-80 {
    max-width: 20rem !important;
  }

  .lt-xl\:max-w-90 {
    max-width: 24rem !important;
  }

  .lt-xl\:max-w-96 {
    max-width: 24rem !important;
  }

  .lt-xl\:max-w-100 {
    max-width: 25rem !important;
  }

  .lt-xl\:max-w-120 {
    max-width: 30rem !important;
  }

  .lt-xl\:max-w-128 {
    max-width: 32rem !important;
  }

  .lt-xl\:max-w-140 {
    max-width: 35rem !important;
  }

  .lt-xl\:max-w-160 {
    max-width: 40rem !important;
  }

  .lt-xl\:max-w-180 {
    max-width: 45rem !important;
  }

  .lt-xl\:max-w-192 {
    max-width: 48rem !important;
  }

  .lt-xl\:max-w-200 {
    max-width: 50rem !important;
  }

  .lt-xl\:max-w-240 {
    max-width: 60rem !important;
  }

  .lt-xl\:max-w-256 {
    max-width: 64rem !important;
  }

  .lt-xl\:max-w-280 {
    max-width: 70rem !important;
  }

  .lt-xl\:max-w-320 {
    max-width: 80rem !important;
  }

  .lt-xl\:max-w-360 {
    max-width: 90rem !important;
  }

  .lt-xl\:max-w-400 {
    max-width: 100rem !important;
  }

  .lt-xl\:max-w-480 {
    max-width: 120rem !important;
  }

  .lt-xl\:max-w-none {
    max-width: none !important;
  }

  .lt-xl\:max-w-xs {
    max-width: 20rem !important;
  }

  .lt-xl\:max-w-sm {
    max-width: 24rem !important;
  }

  .lt-xl\:max-w-md {
    max-width: 28rem !important;
  }

  .lt-xl\:max-w-lg {
    max-width: 32rem !important;
  }

  .lt-xl\:max-w-xl {
    max-width: 36rem !important;
  }

  .lt-xl\:max-w-2xl {
    max-width: 42rem !important;
  }

  .lt-xl\:max-w-3xl {
    max-width: 48rem !important;
  }

  .lt-xl\:max-w-4xl {
    max-width: 56rem !important;
  }

  .lt-xl\:max-w-5xl {
    max-width: 64rem !important;
  }

  .lt-xl\:max-w-6xl {
    max-width: 72rem !important;
  }

  .lt-xl\:max-w-7xl {
    max-width: 80rem !important;
  }

  .lt-xl\:max-w-full {
    max-width: 100% !important;
  }

  .lt-xl\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .lt-xl\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .lt-xl\:max-w-screen {
    max-width: 100vw !important;
  }

  .lt-xl\:max-w-px {
    max-width: 1px !important;
  }

  .lt-xl\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .lt-xl\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .lt-xl\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .lt-xl\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .lt-xl\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .lt-xl\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .lt-xl\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .lt-xl\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .lt-xl\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .lt-xl\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .lt-xl\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .lt-xl\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .lt-xl\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .lt-xl\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .lt-xl\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .lt-xl\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .lt-xl\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .lt-xl\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .lt-xl\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .lt-xl\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .lt-xl\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .lt-xl\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .lt-xl\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .lt-xl\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .lt-xl\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .lt-xl\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .lt-xl\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .lt-xl\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .lt-xl\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .lt-xl\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .lt-xl\:max-w-2px {
    max-width: 2px !important;
  }

  .lt-xl\:min-h-0 {
    min-height: 0 !important;
  }

  .lt-xl\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .lt-xl\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .lt-xl\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .lt-xl\:min-h-4 {
    min-height: 1rem !important;
  }

  .lt-xl\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .lt-xl\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .lt-xl\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .lt-xl\:min-h-8 {
    min-height: 2rem !important;
  }

  .lt-xl\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .lt-xl\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .lt-xl\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .lt-xl\:min-h-12 {
    min-height: 3rem !important;
  }

  .lt-xl\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .lt-xl\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .lt-xl\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .lt-xl\:min-h-16 {
    min-height: 4rem !important;
  }

  .lt-xl\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .lt-xl\:min-h-20 {
    min-height: 5rem !important;
  }

  .lt-xl\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .lt-xl\:min-h-24 {
    min-height: 6rem !important;
  }

  .lt-xl\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .lt-xl\:min-h-28 {
    min-height: 7rem !important;
  }

  .lt-xl\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .lt-xl\:min-h-32 {
    min-height: 8rem !important;
  }

  .lt-xl\:min-h-36 {
    min-height: 9rem !important;
  }

  .lt-xl\:min-h-40 {
    min-height: 10rem !important;
  }

  .lt-xl\:min-h-44 {
    min-height: 11rem !important;
  }

  .lt-xl\:min-h-48 {
    min-height: 12rem !important;
  }

  .lt-xl\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .lt-xl\:min-h-52 {
    min-height: 13rem !important;
  }

  .lt-xl\:min-h-56 {
    min-height: 14rem !important;
  }

  .lt-xl\:min-h-60 {
    min-height: 15rem !important;
  }

  .lt-xl\:min-h-64 {
    min-height: 16rem !important;
  }

  .lt-xl\:min-h-72 {
    min-height: 18rem !important;
  }

  .lt-xl\:min-h-80 {
    min-height: 20rem !important;
  }

  .lt-xl\:min-h-90 {
    min-height: 24rem !important;
  }

  .lt-xl\:min-h-96 {
    min-height: 24rem !important;
  }

  .lt-xl\:min-h-100 {
    min-height: 25rem !important;
  }

  .lt-xl\:min-h-120 {
    min-height: 30rem !important;
  }

  .lt-xl\:min-h-128 {
    min-height: 32rem !important;
  }

  .lt-xl\:min-h-140 {
    min-height: 35rem !important;
  }

  .lt-xl\:min-h-160 {
    min-height: 40rem !important;
  }

  .lt-xl\:min-h-180 {
    min-height: 45rem !important;
  }

  .lt-xl\:min-h-192 {
    min-height: 48rem !important;
  }

  .lt-xl\:min-h-200 {
    min-height: 50rem !important;
  }

  .lt-xl\:min-h-240 {
    min-height: 60rem !important;
  }

  .lt-xl\:min-h-256 {
    min-height: 64rem !important;
  }

  .lt-xl\:min-h-280 {
    min-height: 70rem !important;
  }

  .lt-xl\:min-h-320 {
    min-height: 80rem !important;
  }

  .lt-xl\:min-h-360 {
    min-height: 90rem !important;
  }

  .lt-xl\:min-h-400 {
    min-height: 100rem !important;
  }

  .lt-xl\:min-h-480 {
    min-height: 120rem !important;
  }

  .lt-xl\:min-h-full {
    min-height: 100% !important;
  }

  .lt-xl\:min-h-screen {
    min-height: 100vh !important;
  }

  .lt-xl\:min-h-px {
    min-height: 1px !important;
  }

  .lt-xl\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .lt-xl\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .lt-xl\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .lt-xl\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .lt-xl\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .lt-xl\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .lt-xl\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .lt-xl\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .lt-xl\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .lt-xl\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .lt-xl\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .lt-xl\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .lt-xl\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .lt-xl\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .lt-xl\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .lt-xl\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .lt-xl\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .lt-xl\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .lt-xl\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .lt-xl\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .lt-xl\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .lt-xl\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .lt-xl\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .lt-xl\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .lt-xl\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .lt-xl\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .lt-xl\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .lt-xl\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .lt-xl\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .lt-xl\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .lt-xl\:min-h-2px {
    min-height: 2px !important;
  }

  .lt-xl\:min-w-0 {
    min-width: 0 !important;
  }

  .lt-xl\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .lt-xl\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .lt-xl\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .lt-xl\:min-w-4 {
    min-width: 1rem !important;
  }

  .lt-xl\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .lt-xl\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .lt-xl\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .lt-xl\:min-w-8 {
    min-width: 2rem !important;
  }

  .lt-xl\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .lt-xl\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .lt-xl\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .lt-xl\:min-w-12 {
    min-width: 3rem !important;
  }

  .lt-xl\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .lt-xl\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .lt-xl\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .lt-xl\:min-w-16 {
    min-width: 4rem !important;
  }

  .lt-xl\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .lt-xl\:min-w-20 {
    min-width: 5rem !important;
  }

  .lt-xl\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .lt-xl\:min-w-24 {
    min-width: 6rem !important;
  }

  .lt-xl\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .lt-xl\:min-w-28 {
    min-width: 7rem !important;
  }

  .lt-xl\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .lt-xl\:min-w-32 {
    min-width: 8rem !important;
  }

  .lt-xl\:min-w-36 {
    min-width: 9rem !important;
  }

  .lt-xl\:min-w-40 {
    min-width: 10rem !important;
  }

  .lt-xl\:min-w-44 {
    min-width: 11rem !important;
  }

  .lt-xl\:min-w-48 {
    min-width: 12rem !important;
  }

  .lt-xl\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .lt-xl\:min-w-52 {
    min-width: 13rem !important;
  }

  .lt-xl\:min-w-56 {
    min-width: 14rem !important;
  }

  .lt-xl\:min-w-60 {
    min-width: 15rem !important;
  }

  .lt-xl\:min-w-64 {
    min-width: 16rem !important;
  }

  .lt-xl\:min-w-72 {
    min-width: 18rem !important;
  }

  .lt-xl\:min-w-80 {
    min-width: 20rem !important;
  }

  .lt-xl\:min-w-90 {
    min-width: 24rem !important;
  }

  .lt-xl\:min-w-96 {
    min-width: 24rem !important;
  }

  .lt-xl\:min-w-100 {
    min-width: 25rem !important;
  }

  .lt-xl\:min-w-120 {
    min-width: 30rem !important;
  }

  .lt-xl\:min-w-128 {
    min-width: 32rem !important;
  }

  .lt-xl\:min-w-140 {
    min-width: 35rem !important;
  }

  .lt-xl\:min-w-160 {
    min-width: 40rem !important;
  }

  .lt-xl\:min-w-180 {
    min-width: 45rem !important;
  }

  .lt-xl\:min-w-192 {
    min-width: 48rem !important;
  }

  .lt-xl\:min-w-200 {
    min-width: 50rem !important;
  }

  .lt-xl\:min-w-240 {
    min-width: 60rem !important;
  }

  .lt-xl\:min-w-256 {
    min-width: 64rem !important;
  }

  .lt-xl\:min-w-280 {
    min-width: 70rem !important;
  }

  .lt-xl\:min-w-320 {
    min-width: 80rem !important;
  }

  .lt-xl\:min-w-360 {
    min-width: 90rem !important;
  }

  .lt-xl\:min-w-400 {
    min-width: 100rem !important;
  }

  .lt-xl\:min-w-480 {
    min-width: 120rem !important;
  }

  .lt-xl\:min-w-full {
    min-width: 100% !important;
  }

  .lt-xl\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .lt-xl\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .lt-xl\:min-w-screen {
    min-width: 100vw !important;
  }

  .lt-xl\:min-w-px {
    min-width: 1px !important;
  }

  .lt-xl\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .lt-xl\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .lt-xl\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .lt-xl\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .lt-xl\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .lt-xl\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .lt-xl\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .lt-xl\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .lt-xl\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .lt-xl\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .lt-xl\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .lt-xl\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .lt-xl\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .lt-xl\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .lt-xl\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .lt-xl\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .lt-xl\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .lt-xl\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .lt-xl\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .lt-xl\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .lt-xl\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .lt-xl\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .lt-xl\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .lt-xl\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .lt-xl\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .lt-xl\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .lt-xl\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .lt-xl\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .lt-xl\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .lt-xl\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .lt-xl\:min-w-2px {
    min-width: 2px !important;
  }

  .lt-xl\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .lt-xl\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .lt-xl\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .lt-xl\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .lt-xl\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .lt-xl\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .lt-xl\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .lt-xl\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .lt-xl\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .lt-xl\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .lt-xl\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .lt-xl\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .lt-xl\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .lt-xl\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .lt-xl\:opacity-0 {
    opacity: 0 !important;
  }

  .lt-xl\:opacity-12 {
    opacity: 0.12 !important;
  }

  .lt-xl\:opacity-25 {
    opacity: 0.25 !important;
  }

  .lt-xl\:opacity-38 {
    opacity: 0.38 !important;
  }

  .lt-xl\:opacity-50 {
    opacity: 0.5 !important;
  }

  .lt-xl\:opacity-54 {
    opacity: 0.54 !important;
  }

  .lt-xl\:opacity-70 {
    opacity: 0.7 !important;
  }

  .lt-xl\:opacity-75 {
    opacity: 0.75 !important;
  }

  .lt-xl\:opacity-84 {
    opacity: 0.84 !important;
  }

  .lt-xl\:opacity-100 {
    opacity: 1 !important;
  }

  .lt-xl\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .lt-xl\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .lt-xl\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .lt-xl\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .lt-xl\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .lt-xl\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .lt-xl\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .lt-xl\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .lt-xl\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .lt-xl\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .lt-xl\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .lt-xl\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .lt-xl\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .lt-xl\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .lt-xl\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .lt-xl\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .lt-xl\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .lt-xl\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .lt-xl\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .lt-xl\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .lt-xl\:overflow-auto {
    overflow: auto !important;
  }

  .lt-xl\:overflow-hidden {
    overflow: hidden !important;
  }

  .lt-xl\:overflow-visible {
    overflow: visible !important;
  }

  .lt-xl\:overflow-scroll {
    overflow: scroll !important;
  }

  .lt-xl\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .lt-xl\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .lt-xl\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .lt-xl\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .lt-xl\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .lt-xl\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .lt-xl\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .lt-xl\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .lt-xl\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .lt-xl\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .lt-xl\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .lt-xl\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .lt-xl\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .lt-xl\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .lt-xl\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .lt-xl\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .lt-xl\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .lt-xl\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .lt-xl\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .lt-xl\:p-0 {
    padding: 0 !important;
  }

  .lt-xl\:p-1 {
    padding: 0.25rem !important;
  }

  .lt-xl\:p-2 {
    padding: 0.5rem !important;
  }

  .lt-xl\:p-3 {
    padding: 0.75rem !important;
  }

  .lt-xl\:p-4 {
    padding: 1rem !important;
  }

  .lt-xl\:p-5 {
    padding: 1.25rem !important;
  }

  .lt-xl\:p-6 {
    padding: 1.5rem !important;
  }

  .lt-xl\:p-7 {
    padding: 1.75rem !important;
  }

  .lt-xl\:p-8 {
    padding: 2rem !important;
  }

  .lt-xl\:p-9 {
    padding: 2.25rem !important;
  }

  .lt-xl\:p-10 {
    padding: 2.5rem !important;
  }

  .lt-xl\:p-11 {
    padding: 2.75rem !important;
  }

  .lt-xl\:p-12 {
    padding: 3rem !important;
  }

  .lt-xl\:p-13 {
    padding: 3.25rem !important;
  }

  .lt-xl\:p-14 {
    padding: 3.5rem !important;
  }

  .lt-xl\:p-15 {
    padding: 3.75rem !important;
  }

  .lt-xl\:p-16 {
    padding: 4rem !important;
  }

  .lt-xl\:p-18 {
    padding: 4.5rem !important;
  }

  .lt-xl\:p-20 {
    padding: 5rem !important;
  }

  .lt-xl\:p-22 {
    padding: 5.5rem !important;
  }

  .lt-xl\:p-24 {
    padding: 6rem !important;
  }

  .lt-xl\:p-26 {
    padding: 6.5rem !important;
  }

  .lt-xl\:p-28 {
    padding: 7rem !important;
  }

  .lt-xl\:p-30 {
    padding: 7.5rem !important;
  }

  .lt-xl\:p-32 {
    padding: 8rem !important;
  }

  .lt-xl\:p-36 {
    padding: 9rem !important;
  }

  .lt-xl\:p-40 {
    padding: 10rem !important;
  }

  .lt-xl\:p-44 {
    padding: 11rem !important;
  }

  .lt-xl\:p-48 {
    padding: 12rem !important;
  }

  .lt-xl\:p-50 {
    padding: 12.5rem !important;
  }

  .lt-xl\:p-52 {
    padding: 13rem !important;
  }

  .lt-xl\:p-56 {
    padding: 14rem !important;
  }

  .lt-xl\:p-60 {
    padding: 15rem !important;
  }

  .lt-xl\:p-64 {
    padding: 16rem !important;
  }

  .lt-xl\:p-72 {
    padding: 18rem !important;
  }

  .lt-xl\:p-80 {
    padding: 20rem !important;
  }

  .lt-xl\:p-90 {
    padding: 24rem !important;
  }

  .lt-xl\:p-96 {
    padding: 24rem !important;
  }

  .lt-xl\:p-100 {
    padding: 25rem !important;
  }

  .lt-xl\:p-120 {
    padding: 30rem !important;
  }

  .lt-xl\:p-128 {
    padding: 32rem !important;
  }

  .lt-xl\:p-140 {
    padding: 35rem !important;
  }

  .lt-xl\:p-160 {
    padding: 40rem !important;
  }

  .lt-xl\:p-180 {
    padding: 45rem !important;
  }

  .lt-xl\:p-192 {
    padding: 48rem !important;
  }

  .lt-xl\:p-200 {
    padding: 50rem !important;
  }

  .lt-xl\:p-240 {
    padding: 60rem !important;
  }

  .lt-xl\:p-256 {
    padding: 64rem !important;
  }

  .lt-xl\:p-280 {
    padding: 70rem !important;
  }

  .lt-xl\:p-320 {
    padding: 80rem !important;
  }

  .lt-xl\:p-360 {
    padding: 90rem !important;
  }

  .lt-xl\:p-400 {
    padding: 100rem !important;
  }

  .lt-xl\:p-480 {
    padding: 120rem !important;
  }

  .lt-xl\:p-px {
    padding: 1px !important;
  }

  .lt-xl\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .lt-xl\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .lt-xl\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .lt-xl\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .lt-xl\:p-1\/2 {
    padding: 50% !important;
  }

  .lt-xl\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .lt-xl\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .lt-xl\:p-1\/4 {
    padding: 25% !important;
  }

  .lt-xl\:p-2\/4 {
    padding: 50% !important;
  }

  .lt-xl\:p-3\/4 {
    padding: 75% !important;
  }

  .lt-xl\:p-1\/5 {
    padding: 20% !important;
  }

  .lt-xl\:p-2\/5 {
    padding: 40% !important;
  }

  .lt-xl\:p-3\/5 {
    padding: 60% !important;
  }

  .lt-xl\:p-4\/5 {
    padding: 80% !important;
  }

  .lt-xl\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .lt-xl\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .lt-xl\:p-3\/6 {
    padding: 50% !important;
  }

  .lt-xl\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .lt-xl\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .lt-xl\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .lt-xl\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .lt-xl\:p-3\/12 {
    padding: 25% !important;
  }

  .lt-xl\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .lt-xl\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .lt-xl\:p-6\/12 {
    padding: 50% !important;
  }

  .lt-xl\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .lt-xl\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .lt-xl\:p-9\/12 {
    padding: 75% !important;
  }

  .lt-xl\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .lt-xl\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .lt-xl\:p-full {
    padding: 100% !important;
  }

  .lt-xl\:p-2px {
    padding: 2px !important;
  }

  .lt-xl\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .lt-xl\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .lt-xl\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .lt-xl\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .lt-xl\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .lt-xl\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .lt-xl\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .lt-xl\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .lt-xl\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .lt-xl\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .lt-xl\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .lt-xl\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .lt-xl\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .lt-xl\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .lt-xl\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .lt-xl\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .lt-xl\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lt-xl\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .lt-xl\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .lt-xl\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .lt-xl\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lt-xl\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .lt-xl\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .lt-xl\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .lt-xl\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lt-xl\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .lt-xl\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .lt-xl\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .lt-xl\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .lt-xl\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .lt-xl\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .lt-xl\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .lt-xl\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .lt-xl\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .lt-xl\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .lt-xl\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .lt-xl\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .lt-xl\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .lt-xl\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .lt-xl\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .lt-xl\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .lt-xl\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .lt-xl\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .lt-xl\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .lt-xl\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .lt-xl\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .lt-xl\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .lt-xl\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .lt-xl\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .lt-xl\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .lt-xl\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .lt-xl\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .lt-xl\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .lt-xl\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .lt-xl\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .lt-xl\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .lt-xl\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .lt-xl\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .lt-xl\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .lt-xl\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .lt-xl\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .lt-xl\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .lt-xl\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .lt-xl\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .lt-xl\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .lt-xl\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .lt-xl\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .lt-xl\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .lt-xl\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .lt-xl\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .lt-xl\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .lt-xl\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .lt-xl\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .lt-xl\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .lt-xl\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .lt-xl\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .lt-xl\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .lt-xl\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .lt-xl\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .lt-xl\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .lt-xl\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .lt-xl\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .lt-xl\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .lt-xl\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .lt-xl\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .lt-xl\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .lt-xl\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .lt-xl\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .lt-xl\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .lt-xl\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .lt-xl\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .lt-xl\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .lt-xl\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .lt-xl\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .lt-xl\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .lt-xl\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .lt-xl\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .lt-xl\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .lt-xl\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .lt-xl\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .lt-xl\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .lt-xl\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .lt-xl\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .lt-xl\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .lt-xl\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .lt-xl\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .lt-xl\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .lt-xl\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .lt-xl\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .lt-xl\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .lt-xl\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .lt-xl\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .lt-xl\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .lt-xl\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .lt-xl\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .lt-xl\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .lt-xl\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-xl\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-xl\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lt-xl\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lt-xl\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lt-xl\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lt-xl\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .lt-xl\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .lt-xl\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-xl\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-xl\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .lt-xl\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .lt-xl\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .lt-xl\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .lt-xl\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .lt-xl\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .lt-xl\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .lt-xl\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .lt-xl\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .lt-xl\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .lt-xl\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .lt-xl\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .lt-xl\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lt-xl\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lt-xl\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-xl\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-xl\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lt-xl\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lt-xl\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .lt-xl\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .lt-xl\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .lt-xl\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .lt-xl\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .lt-xl\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .lt-xl\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .lt-xl\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .lt-xl\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .lt-xl\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .lt-xl\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .lt-xl\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .lt-xl\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .lt-xl\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .lt-xl\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .lt-xl\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .lt-xl\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .lt-xl\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .lt-xl\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .lt-xl\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .lt-xl\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .lt-xl\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .lt-xl\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .lt-xl\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .lt-xl\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .lt-xl\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .lt-xl\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .lt-xl\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .lt-xl\:pt-0 {
    padding-top: 0 !important;
  }

  .lt-xl\:pr-0 {
    padding-right: 0 !important;
  }

  .lt-xl\:pb-0 {
    padding-bottom: 0 !important;
  }

  .lt-xl\:pl-0 {
    padding-left: 0 !important;
  }

  .lt-xl\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .lt-xl\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .lt-xl\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .lt-xl\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .lt-xl\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .lt-xl\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .lt-xl\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .lt-xl\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .lt-xl\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .lt-xl\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .lt-xl\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .lt-xl\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .lt-xl\:pt-4 {
    padding-top: 1rem !important;
  }

  .lt-xl\:pr-4 {
    padding-right: 1rem !important;
  }

  .lt-xl\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .lt-xl\:pl-4 {
    padding-left: 1rem !important;
  }

  .lt-xl\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .lt-xl\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .lt-xl\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .lt-xl\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .lt-xl\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .lt-xl\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .lt-xl\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .lt-xl\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .lt-xl\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .lt-xl\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .lt-xl\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .lt-xl\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .lt-xl\:pt-8 {
    padding-top: 2rem !important;
  }

  .lt-xl\:pr-8 {
    padding-right: 2rem !important;
  }

  .lt-xl\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .lt-xl\:pl-8 {
    padding-left: 2rem !important;
  }

  .lt-xl\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .lt-xl\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .lt-xl\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .lt-xl\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .lt-xl\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .lt-xl\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .lt-xl\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .lt-xl\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .lt-xl\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .lt-xl\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .lt-xl\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .lt-xl\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .lt-xl\:pt-12 {
    padding-top: 3rem !important;
  }

  .lt-xl\:pr-12 {
    padding-right: 3rem !important;
  }

  .lt-xl\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .lt-xl\:pl-12 {
    padding-left: 3rem !important;
  }

  .lt-xl\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .lt-xl\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .lt-xl\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .lt-xl\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .lt-xl\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .lt-xl\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .lt-xl\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .lt-xl\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .lt-xl\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .lt-xl\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .lt-xl\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .lt-xl\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .lt-xl\:pt-16 {
    padding-top: 4rem !important;
  }

  .lt-xl\:pr-16 {
    padding-right: 4rem !important;
  }

  .lt-xl\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .lt-xl\:pl-16 {
    padding-left: 4rem !important;
  }

  .lt-xl\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .lt-xl\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .lt-xl\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .lt-xl\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .lt-xl\:pt-20 {
    padding-top: 5rem !important;
  }

  .lt-xl\:pr-20 {
    padding-right: 5rem !important;
  }

  .lt-xl\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .lt-xl\:pl-20 {
    padding-left: 5rem !important;
  }

  .lt-xl\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .lt-xl\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .lt-xl\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .lt-xl\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .lt-xl\:pt-24 {
    padding-top: 6rem !important;
  }

  .lt-xl\:pr-24 {
    padding-right: 6rem !important;
  }

  .lt-xl\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .lt-xl\:pl-24 {
    padding-left: 6rem !important;
  }

  .lt-xl\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .lt-xl\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .lt-xl\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .lt-xl\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .lt-xl\:pt-28 {
    padding-top: 7rem !important;
  }

  .lt-xl\:pr-28 {
    padding-right: 7rem !important;
  }

  .lt-xl\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .lt-xl\:pl-28 {
    padding-left: 7rem !important;
  }

  .lt-xl\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .lt-xl\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .lt-xl\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .lt-xl\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .lt-xl\:pt-32 {
    padding-top: 8rem !important;
  }

  .lt-xl\:pr-32 {
    padding-right: 8rem !important;
  }

  .lt-xl\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .lt-xl\:pl-32 {
    padding-left: 8rem !important;
  }

  .lt-xl\:pt-36 {
    padding-top: 9rem !important;
  }

  .lt-xl\:pr-36 {
    padding-right: 9rem !important;
  }

  .lt-xl\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .lt-xl\:pl-36 {
    padding-left: 9rem !important;
  }

  .lt-xl\:pt-40 {
    padding-top: 10rem !important;
  }

  .lt-xl\:pr-40 {
    padding-right: 10rem !important;
  }

  .lt-xl\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .lt-xl\:pl-40 {
    padding-left: 10rem !important;
  }

  .lt-xl\:pt-44 {
    padding-top: 11rem !important;
  }

  .lt-xl\:pr-44 {
    padding-right: 11rem !important;
  }

  .lt-xl\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .lt-xl\:pl-44 {
    padding-left: 11rem !important;
  }

  .lt-xl\:pt-48 {
    padding-top: 12rem !important;
  }

  .lt-xl\:pr-48 {
    padding-right: 12rem !important;
  }

  .lt-xl\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .lt-xl\:pl-48 {
    padding-left: 12rem !important;
  }

  .lt-xl\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .lt-xl\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .lt-xl\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .lt-xl\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .lt-xl\:pt-52 {
    padding-top: 13rem !important;
  }

  .lt-xl\:pr-52 {
    padding-right: 13rem !important;
  }

  .lt-xl\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .lt-xl\:pl-52 {
    padding-left: 13rem !important;
  }

  .lt-xl\:pt-56 {
    padding-top: 14rem !important;
  }

  .lt-xl\:pr-56 {
    padding-right: 14rem !important;
  }

  .lt-xl\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .lt-xl\:pl-56 {
    padding-left: 14rem !important;
  }

  .lt-xl\:pt-60 {
    padding-top: 15rem !important;
  }

  .lt-xl\:pr-60 {
    padding-right: 15rem !important;
  }

  .lt-xl\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .lt-xl\:pl-60 {
    padding-left: 15rem !important;
  }

  .lt-xl\:pt-64 {
    padding-top: 16rem !important;
  }

  .lt-xl\:pr-64 {
    padding-right: 16rem !important;
  }

  .lt-xl\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .lt-xl\:pl-64 {
    padding-left: 16rem !important;
  }

  .lt-xl\:pt-72 {
    padding-top: 18rem !important;
  }

  .lt-xl\:pr-72 {
    padding-right: 18rem !important;
  }

  .lt-xl\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .lt-xl\:pl-72 {
    padding-left: 18rem !important;
  }

  .lt-xl\:pt-80 {
    padding-top: 20rem !important;
  }

  .lt-xl\:pr-80 {
    padding-right: 20rem !important;
  }

  .lt-xl\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .lt-xl\:pl-80 {
    padding-left: 20rem !important;
  }

  .lt-xl\:pt-90 {
    padding-top: 24rem !important;
  }

  .lt-xl\:pr-90 {
    padding-right: 24rem !important;
  }

  .lt-xl\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .lt-xl\:pl-90 {
    padding-left: 24rem !important;
  }

  .lt-xl\:pt-96 {
    padding-top: 24rem !important;
  }

  .lt-xl\:pr-96 {
    padding-right: 24rem !important;
  }

  .lt-xl\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .lt-xl\:pl-96 {
    padding-left: 24rem !important;
  }

  .lt-xl\:pt-100 {
    padding-top: 25rem !important;
  }

  .lt-xl\:pr-100 {
    padding-right: 25rem !important;
  }

  .lt-xl\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .lt-xl\:pl-100 {
    padding-left: 25rem !important;
  }

  .lt-xl\:pt-120 {
    padding-top: 30rem !important;
  }

  .lt-xl\:pr-120 {
    padding-right: 30rem !important;
  }

  .lt-xl\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .lt-xl\:pl-120 {
    padding-left: 30rem !important;
  }

  .lt-xl\:pt-128 {
    padding-top: 32rem !important;
  }

  .lt-xl\:pr-128 {
    padding-right: 32rem !important;
  }

  .lt-xl\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .lt-xl\:pl-128 {
    padding-left: 32rem !important;
  }

  .lt-xl\:pt-140 {
    padding-top: 35rem !important;
  }

  .lt-xl\:pr-140 {
    padding-right: 35rem !important;
  }

  .lt-xl\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .lt-xl\:pl-140 {
    padding-left: 35rem !important;
  }

  .lt-xl\:pt-160 {
    padding-top: 40rem !important;
  }

  .lt-xl\:pr-160 {
    padding-right: 40rem !important;
  }

  .lt-xl\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .lt-xl\:pl-160 {
    padding-left: 40rem !important;
  }

  .lt-xl\:pt-180 {
    padding-top: 45rem !important;
  }

  .lt-xl\:pr-180 {
    padding-right: 45rem !important;
  }

  .lt-xl\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .lt-xl\:pl-180 {
    padding-left: 45rem !important;
  }

  .lt-xl\:pt-192 {
    padding-top: 48rem !important;
  }

  .lt-xl\:pr-192 {
    padding-right: 48rem !important;
  }

  .lt-xl\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .lt-xl\:pl-192 {
    padding-left: 48rem !important;
  }

  .lt-xl\:pt-200 {
    padding-top: 50rem !important;
  }

  .lt-xl\:pr-200 {
    padding-right: 50rem !important;
  }

  .lt-xl\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .lt-xl\:pl-200 {
    padding-left: 50rem !important;
  }

  .lt-xl\:pt-240 {
    padding-top: 60rem !important;
  }

  .lt-xl\:pr-240 {
    padding-right: 60rem !important;
  }

  .lt-xl\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .lt-xl\:pl-240 {
    padding-left: 60rem !important;
  }

  .lt-xl\:pt-256 {
    padding-top: 64rem !important;
  }

  .lt-xl\:pr-256 {
    padding-right: 64rem !important;
  }

  .lt-xl\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .lt-xl\:pl-256 {
    padding-left: 64rem !important;
  }

  .lt-xl\:pt-280 {
    padding-top: 70rem !important;
  }

  .lt-xl\:pr-280 {
    padding-right: 70rem !important;
  }

  .lt-xl\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .lt-xl\:pl-280 {
    padding-left: 70rem !important;
  }

  .lt-xl\:pt-320 {
    padding-top: 80rem !important;
  }

  .lt-xl\:pr-320 {
    padding-right: 80rem !important;
  }

  .lt-xl\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .lt-xl\:pl-320 {
    padding-left: 80rem !important;
  }

  .lt-xl\:pt-360 {
    padding-top: 90rem !important;
  }

  .lt-xl\:pr-360 {
    padding-right: 90rem !important;
  }

  .lt-xl\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .lt-xl\:pl-360 {
    padding-left: 90rem !important;
  }

  .lt-xl\:pt-400 {
    padding-top: 100rem !important;
  }

  .lt-xl\:pr-400 {
    padding-right: 100rem !important;
  }

  .lt-xl\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .lt-xl\:pl-400 {
    padding-left: 100rem !important;
  }

  .lt-xl\:pt-480 {
    padding-top: 120rem !important;
  }

  .lt-xl\:pr-480 {
    padding-right: 120rem !important;
  }

  .lt-xl\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .lt-xl\:pl-480 {
    padding-left: 120rem !important;
  }

  .lt-xl\:pt-px {
    padding-top: 1px !important;
  }

  .lt-xl\:pr-px {
    padding-right: 1px !important;
  }

  .lt-xl\:pb-px {
    padding-bottom: 1px !important;
  }

  .lt-xl\:pl-px {
    padding-left: 1px !important;
  }

  .lt-xl\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .lt-xl\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .lt-xl\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .lt-xl\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .lt-xl\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .lt-xl\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .lt-xl\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .lt-xl\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .lt-xl\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .lt-xl\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .lt-xl\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .lt-xl\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .lt-xl\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .lt-xl\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .lt-xl\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .lt-xl\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .lt-xl\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .lt-xl\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .lt-xl\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .lt-xl\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .lt-xl\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .lt-xl\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .lt-xl\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .lt-xl\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .lt-xl\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .lt-xl\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .lt-xl\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .lt-xl\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .lt-xl\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .lt-xl\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .lt-xl\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .lt-xl\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .lt-xl\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .lt-xl\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .lt-xl\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .lt-xl\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .lt-xl\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .lt-xl\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .lt-xl\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .lt-xl\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .lt-xl\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .lt-xl\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .lt-xl\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .lt-xl\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .lt-xl\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .lt-xl\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .lt-xl\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .lt-xl\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .lt-xl\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .lt-xl\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .lt-xl\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .lt-xl\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .lt-xl\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .lt-xl\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .lt-xl\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .lt-xl\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .lt-xl\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .lt-xl\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .lt-xl\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .lt-xl\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .lt-xl\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .lt-xl\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .lt-xl\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .lt-xl\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .lt-xl\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .lt-xl\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .lt-xl\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .lt-xl\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .lt-xl\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .lt-xl\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .lt-xl\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .lt-xl\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .lt-xl\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .lt-xl\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .lt-xl\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .lt-xl\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .lt-xl\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .lt-xl\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .lt-xl\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .lt-xl\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .lt-xl\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .lt-xl\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .lt-xl\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .lt-xl\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .lt-xl\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .lt-xl\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .lt-xl\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .lt-xl\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .lt-xl\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .lt-xl\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .lt-xl\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .lt-xl\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .lt-xl\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .lt-xl\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .lt-xl\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .lt-xl\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .lt-xl\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .lt-xl\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .lt-xl\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .lt-xl\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .lt-xl\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .lt-xl\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .lt-xl\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .lt-xl\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .lt-xl\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .lt-xl\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .lt-xl\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .lt-xl\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .lt-xl\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .lt-xl\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .lt-xl\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .lt-xl\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .lt-xl\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .lt-xl\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .lt-xl\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .lt-xl\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .lt-xl\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .lt-xl\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .lt-xl\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .lt-xl\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .lt-xl\:pt-full {
    padding-top: 100% !important;
  }

  .lt-xl\:pr-full {
    padding-right: 100% !important;
  }

  .lt-xl\:pb-full {
    padding-bottom: 100% !important;
  }

  .lt-xl\:pl-full {
    padding-left: 100% !important;
  }

  .lt-xl\:pt-2px {
    padding-top: 2px !important;
  }

  .lt-xl\:pr-2px {
    padding-right: 2px !important;
  }

  .lt-xl\:pb-2px {
    padding-bottom: 2px !important;
  }

  .lt-xl\:pl-2px {
    padding-left: 2px !important;
  }

  .lt-xl\:static {
    position: static !important;
  }

  .lt-xl\:fixed {
    position: fixed !important;
  }

  .lt-xl\:absolute {
    position: absolute !important;
  }

  .lt-xl\:relative {
    position: relative !important;
  }

  .lt-xl\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .lt-xl\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .lt-xl\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .lt-xl\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .lt-xl\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .lt-xl\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .lt-xl\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .lt-xl\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .lt-xl\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .lt-xl\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .lt-xl\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .lt-xl\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .lt-xl\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .lt-xl\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .lt-xl\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .lt-xl\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .lt-xl\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .lt-xl\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .lt-xl\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .lt-xl\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .lt-xl\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .lt-xl\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .lt-xl\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .lt-xl\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .lt-xl\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .lt-xl\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .lt-xl\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .lt-xl\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .lt-xl\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .lt-xl\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .lt-xl\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .lt-xl\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .lt-xl\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .lt-xl\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .lt-xl\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .lt-xl\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .lt-xl\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .lt-xl\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .lt-xl\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .lt-xl\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .lt-xl\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .lt-xl\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .lt-xl\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .lt-xl\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .lt-xl\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .lt-xl\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .lt-xl\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .lt-xl\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .lt-xl\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .lt-xl\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .lt-xl\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .lt-xl\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .lt-xl\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .lt-xl\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .lt-xl\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .lt-xl\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .lt-xl\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .lt-xl\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .lt-xl\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .lt-xl\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .lt-xl\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-xl\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-xl\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-xl\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .lt-xl\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-xl\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .lt-xl\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .lt-xl\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .lt-xl\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .lt-xl\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .lt-xl\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-xl\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-xl\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-xl\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-xl\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-xl\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .lt-xl\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-xl\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .lt-xl\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-xl\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .lt-xl\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .lt-xl\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .lt-xl\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-xl\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .lt-xl\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-xl\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .lt-xl\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .lt-xl\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .lt-xl\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .lt-xl\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .lt-xl\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .lt-xl\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .lt-xl\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .lt-xl\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .lt-xl\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .lt-xl\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .lt-xl\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .lt-xl\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .lt-xl\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .lt-xl\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .lt-xl\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .lt-xl\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .lt-xl\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .lt-xl\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .lt-xl\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .lt-xl\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .lt-xl\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .lt-xl\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .lt-xl\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .lt-xl\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .lt-xl\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .lt-xl\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .lt-xl\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .lt-xl\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .lt-xl\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .lt-xl\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .lt-xl\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .lt-xl\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .lt-xl\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .lt-xl\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .lt-xl\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .lt-xl\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .lt-xl\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .lt-xl\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .lt-xl\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .lt-xl\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .lt-xl\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .lt-xl\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .lt-xl\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .lt-xl\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .lt-xl\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .lt-xl\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .lt-xl\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .lt-xl\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .lt-xl\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .lt-xl\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .lt-xl\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .lt-xl\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .lt-xl\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .lt-xl\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .lt-xl\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .lt-xl\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .lt-xl\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .lt-xl\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .lt-xl\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .lt-xl\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .lt-xl\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .lt-xl\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .lt-xl\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .lt-xl\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .lt-xl\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .lt-xl\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .lt-xl\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .lt-xl\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .lt-xl\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .lt-xl\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .lt-xl\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .lt-xl\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .lt-xl\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .lt-xl\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .lt-xl\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .lt-xl\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .lt-xl\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .lt-xl\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .lt-xl\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .lt-xl\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .lt-xl\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .lt-xl\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .lt-xl\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .lt-xl\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .lt-xl\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .lt-xl\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .lt-xl\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .lt-xl\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .lt-xl\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .lt-xl\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .lt-xl\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .lt-xl\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .lt-xl\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .lt-xl\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .lt-xl\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .lt-xl\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .lt-xl\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .lt-xl\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .lt-xl\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .lt-xl\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .lt-xl\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .lt-xl\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .lt-xl\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .lt-xl\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .lt-xl\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .lt-xl\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .lt-xl\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .lt-xl\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .lt-xl\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .lt-xl\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .lt-xl\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .lt-xl\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .lt-xl\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .lt-xl\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .lt-xl\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .lt-xl\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .lt-xl\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .lt-xl\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .lt-xl\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .lt-xl\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .lt-xl\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-xl\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-xl\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lt-xl\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-xl\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lt-xl\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-xl\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .lt-xl\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .lt-xl\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-xl\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-xl\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .lt-xl\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .lt-xl\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .lt-xl\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .lt-xl\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .lt-xl\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .lt-xl\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .lt-xl\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .lt-xl\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .lt-xl\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .lt-xl\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .lt-xl\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-xl\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lt-xl\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-xl\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-xl\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-xl\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lt-xl\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-xl\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .lt-xl\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-xl\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .lt-xl\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .lt-xl\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .lt-xl\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .lt-xl\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .lt-xl\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .lt-xl\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .lt-xl\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .lt-xl\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .lt-xl\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .lt-xl\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .lt-xl\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .lt-xl\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .lt-xl\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .lt-xl\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .lt-xl\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .lt-xl\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .lt-xl\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .lt-xl\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .lt-xl\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .lt-xl\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .lt-xl\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .lt-xl\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .lt-xl\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .lt-xl\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .lt-xl\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .lt-xl\:top-0 {
    top: 0 !important;
  }

  .lt-xl\:right-0 {
    right: 0 !important;
  }

  .lt-xl\:bottom-0 {
    bottom: 0 !important;
  }

  .lt-xl\:left-0 {
    left: 0 !important;
  }

  .lt-xl\:top-1 {
    top: 0.25rem !important;
  }

  .lt-xl\:right-1 {
    right: 0.25rem !important;
  }

  .lt-xl\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .lt-xl\:left-1 {
    left: 0.25rem !important;
  }

  .lt-xl\:top-2 {
    top: 0.5rem !important;
  }

  .lt-xl\:right-2 {
    right: 0.5rem !important;
  }

  .lt-xl\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .lt-xl\:left-2 {
    left: 0.5rem !important;
  }

  .lt-xl\:top-3 {
    top: 0.75rem !important;
  }

  .lt-xl\:right-3 {
    right: 0.75rem !important;
  }

  .lt-xl\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .lt-xl\:left-3 {
    left: 0.75rem !important;
  }

  .lt-xl\:top-4 {
    top: 1rem !important;
  }

  .lt-xl\:right-4 {
    right: 1rem !important;
  }

  .lt-xl\:bottom-4 {
    bottom: 1rem !important;
  }

  .lt-xl\:left-4 {
    left: 1rem !important;
  }

  .lt-xl\:top-5 {
    top: 1.25rem !important;
  }

  .lt-xl\:right-5 {
    right: 1.25rem !important;
  }

  .lt-xl\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .lt-xl\:left-5 {
    left: 1.25rem !important;
  }

  .lt-xl\:top-6 {
    top: 1.5rem !important;
  }

  .lt-xl\:right-6 {
    right: 1.5rem !important;
  }

  .lt-xl\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .lt-xl\:left-6 {
    left: 1.5rem !important;
  }

  .lt-xl\:top-7 {
    top: 1.75rem !important;
  }

  .lt-xl\:right-7 {
    right: 1.75rem !important;
  }

  .lt-xl\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .lt-xl\:left-7 {
    left: 1.75rem !important;
  }

  .lt-xl\:top-8 {
    top: 2rem !important;
  }

  .lt-xl\:right-8 {
    right: 2rem !important;
  }

  .lt-xl\:bottom-8 {
    bottom: 2rem !important;
  }

  .lt-xl\:left-8 {
    left: 2rem !important;
  }

  .lt-xl\:top-9 {
    top: 2.25rem !important;
  }

  .lt-xl\:right-9 {
    right: 2.25rem !important;
  }

  .lt-xl\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .lt-xl\:left-9 {
    left: 2.25rem !important;
  }

  .lt-xl\:top-10 {
    top: 2.5rem !important;
  }

  .lt-xl\:right-10 {
    right: 2.5rem !important;
  }

  .lt-xl\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .lt-xl\:left-10 {
    left: 2.5rem !important;
  }

  .lt-xl\:top-11 {
    top: 2.75rem !important;
  }

  .lt-xl\:right-11 {
    right: 2.75rem !important;
  }

  .lt-xl\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .lt-xl\:left-11 {
    left: 2.75rem !important;
  }

  .lt-xl\:top-12 {
    top: 3rem !important;
  }

  .lt-xl\:right-12 {
    right: 3rem !important;
  }

  .lt-xl\:bottom-12 {
    bottom: 3rem !important;
  }

  .lt-xl\:left-12 {
    left: 3rem !important;
  }

  .lt-xl\:top-13 {
    top: 3.25rem !important;
  }

  .lt-xl\:right-13 {
    right: 3.25rem !important;
  }

  .lt-xl\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .lt-xl\:left-13 {
    left: 3.25rem !important;
  }

  .lt-xl\:top-14 {
    top: 3.5rem !important;
  }

  .lt-xl\:right-14 {
    right: 3.5rem !important;
  }

  .lt-xl\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .lt-xl\:left-14 {
    left: 3.5rem !important;
  }

  .lt-xl\:top-15 {
    top: 3.75rem !important;
  }

  .lt-xl\:right-15 {
    right: 3.75rem !important;
  }

  .lt-xl\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .lt-xl\:left-15 {
    left: 3.75rem !important;
  }

  .lt-xl\:top-16 {
    top: 4rem !important;
  }

  .lt-xl\:right-16 {
    right: 4rem !important;
  }

  .lt-xl\:bottom-16 {
    bottom: 4rem !important;
  }

  .lt-xl\:left-16 {
    left: 4rem !important;
  }

  .lt-xl\:top-18 {
    top: 4.5rem !important;
  }

  .lt-xl\:right-18 {
    right: 4.5rem !important;
  }

  .lt-xl\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .lt-xl\:left-18 {
    left: 4.5rem !important;
  }

  .lt-xl\:top-20 {
    top: 5rem !important;
  }

  .lt-xl\:right-20 {
    right: 5rem !important;
  }

  .lt-xl\:bottom-20 {
    bottom: 5rem !important;
  }

  .lt-xl\:left-20 {
    left: 5rem !important;
  }

  .lt-xl\:top-22 {
    top: 5.5rem !important;
  }

  .lt-xl\:right-22 {
    right: 5.5rem !important;
  }

  .lt-xl\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .lt-xl\:left-22 {
    left: 5.5rem !important;
  }

  .lt-xl\:top-24 {
    top: 6rem !important;
  }

  .lt-xl\:right-24 {
    right: 6rem !important;
  }

  .lt-xl\:bottom-24 {
    bottom: 6rem !important;
  }

  .lt-xl\:left-24 {
    left: 6rem !important;
  }

  .lt-xl\:top-26 {
    top: 6.5rem !important;
  }

  .lt-xl\:right-26 {
    right: 6.5rem !important;
  }

  .lt-xl\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .lt-xl\:left-26 {
    left: 6.5rem !important;
  }

  .lt-xl\:top-28 {
    top: 7rem !important;
  }

  .lt-xl\:right-28 {
    right: 7rem !important;
  }

  .lt-xl\:bottom-28 {
    bottom: 7rem !important;
  }

  .lt-xl\:left-28 {
    left: 7rem !important;
  }

  .lt-xl\:top-30 {
    top: 7.5rem !important;
  }

  .lt-xl\:right-30 {
    right: 7.5rem !important;
  }

  .lt-xl\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .lt-xl\:left-30 {
    left: 7.5rem !important;
  }

  .lt-xl\:top-32 {
    top: 8rem !important;
  }

  .lt-xl\:right-32 {
    right: 8rem !important;
  }

  .lt-xl\:bottom-32 {
    bottom: 8rem !important;
  }

  .lt-xl\:left-32 {
    left: 8rem !important;
  }

  .lt-xl\:top-36 {
    top: 9rem !important;
  }

  .lt-xl\:right-36 {
    right: 9rem !important;
  }

  .lt-xl\:bottom-36 {
    bottom: 9rem !important;
  }

  .lt-xl\:left-36 {
    left: 9rem !important;
  }

  .lt-xl\:top-40 {
    top: 10rem !important;
  }

  .lt-xl\:right-40 {
    right: 10rem !important;
  }

  .lt-xl\:bottom-40 {
    bottom: 10rem !important;
  }

  .lt-xl\:left-40 {
    left: 10rem !important;
  }

  .lt-xl\:top-44 {
    top: 11rem !important;
  }

  .lt-xl\:right-44 {
    right: 11rem !important;
  }

  .lt-xl\:bottom-44 {
    bottom: 11rem !important;
  }

  .lt-xl\:left-44 {
    left: 11rem !important;
  }

  .lt-xl\:top-48 {
    top: 12rem !important;
  }

  .lt-xl\:right-48 {
    right: 12rem !important;
  }

  .lt-xl\:bottom-48 {
    bottom: 12rem !important;
  }

  .lt-xl\:left-48 {
    left: 12rem !important;
  }

  .lt-xl\:top-50 {
    top: 12.5rem !important;
  }

  .lt-xl\:right-50 {
    right: 12.5rem !important;
  }

  .lt-xl\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .lt-xl\:left-50 {
    left: 12.5rem !important;
  }

  .lt-xl\:top-52 {
    top: 13rem !important;
  }

  .lt-xl\:right-52 {
    right: 13rem !important;
  }

  .lt-xl\:bottom-52 {
    bottom: 13rem !important;
  }

  .lt-xl\:left-52 {
    left: 13rem !important;
  }

  .lt-xl\:top-56 {
    top: 14rem !important;
  }

  .lt-xl\:right-56 {
    right: 14rem !important;
  }

  .lt-xl\:bottom-56 {
    bottom: 14rem !important;
  }

  .lt-xl\:left-56 {
    left: 14rem !important;
  }

  .lt-xl\:top-60 {
    top: 15rem !important;
  }

  .lt-xl\:right-60 {
    right: 15rem !important;
  }

  .lt-xl\:bottom-60 {
    bottom: 15rem !important;
  }

  .lt-xl\:left-60 {
    left: 15rem !important;
  }

  .lt-xl\:top-64 {
    top: 16rem !important;
  }

  .lt-xl\:right-64 {
    right: 16rem !important;
  }

  .lt-xl\:bottom-64 {
    bottom: 16rem !important;
  }

  .lt-xl\:left-64 {
    left: 16rem !important;
  }

  .lt-xl\:top-72 {
    top: 18rem !important;
  }

  .lt-xl\:right-72 {
    right: 18rem !important;
  }

  .lt-xl\:bottom-72 {
    bottom: 18rem !important;
  }

  .lt-xl\:left-72 {
    left: 18rem !important;
  }

  .lt-xl\:top-80 {
    top: 20rem !important;
  }

  .lt-xl\:right-80 {
    right: 20rem !important;
  }

  .lt-xl\:bottom-80 {
    bottom: 20rem !important;
  }

  .lt-xl\:left-80 {
    left: 20rem !important;
  }

  .lt-xl\:top-90 {
    top: 24rem !important;
  }

  .lt-xl\:right-90 {
    right: 24rem !important;
  }

  .lt-xl\:bottom-90 {
    bottom: 24rem !important;
  }

  .lt-xl\:left-90 {
    left: 24rem !important;
  }

  .lt-xl\:top-96 {
    top: 24rem !important;
  }

  .lt-xl\:right-96 {
    right: 24rem !important;
  }

  .lt-xl\:bottom-96 {
    bottom: 24rem !important;
  }

  .lt-xl\:left-96 {
    left: 24rem !important;
  }

  .lt-xl\:top-100 {
    top: 25rem !important;
  }

  .lt-xl\:right-100 {
    right: 25rem !important;
  }

  .lt-xl\:bottom-100 {
    bottom: 25rem !important;
  }

  .lt-xl\:left-100 {
    left: 25rem !important;
  }

  .lt-xl\:top-120 {
    top: 30rem !important;
  }

  .lt-xl\:right-120 {
    right: 30rem !important;
  }

  .lt-xl\:bottom-120 {
    bottom: 30rem !important;
  }

  .lt-xl\:left-120 {
    left: 30rem !important;
  }

  .lt-xl\:top-128 {
    top: 32rem !important;
  }

  .lt-xl\:right-128 {
    right: 32rem !important;
  }

  .lt-xl\:bottom-128 {
    bottom: 32rem !important;
  }

  .lt-xl\:left-128 {
    left: 32rem !important;
  }

  .lt-xl\:top-140 {
    top: 35rem !important;
  }

  .lt-xl\:right-140 {
    right: 35rem !important;
  }

  .lt-xl\:bottom-140 {
    bottom: 35rem !important;
  }

  .lt-xl\:left-140 {
    left: 35rem !important;
  }

  .lt-xl\:top-160 {
    top: 40rem !important;
  }

  .lt-xl\:right-160 {
    right: 40rem !important;
  }

  .lt-xl\:bottom-160 {
    bottom: 40rem !important;
  }

  .lt-xl\:left-160 {
    left: 40rem !important;
  }

  .lt-xl\:top-180 {
    top: 45rem !important;
  }

  .lt-xl\:right-180 {
    right: 45rem !important;
  }

  .lt-xl\:bottom-180 {
    bottom: 45rem !important;
  }

  .lt-xl\:left-180 {
    left: 45rem !important;
  }

  .lt-xl\:top-192 {
    top: 48rem !important;
  }

  .lt-xl\:right-192 {
    right: 48rem !important;
  }

  .lt-xl\:bottom-192 {
    bottom: 48rem !important;
  }

  .lt-xl\:left-192 {
    left: 48rem !important;
  }

  .lt-xl\:top-200 {
    top: 50rem !important;
  }

  .lt-xl\:right-200 {
    right: 50rem !important;
  }

  .lt-xl\:bottom-200 {
    bottom: 50rem !important;
  }

  .lt-xl\:left-200 {
    left: 50rem !important;
  }

  .lt-xl\:top-240 {
    top: 60rem !important;
  }

  .lt-xl\:right-240 {
    right: 60rem !important;
  }

  .lt-xl\:bottom-240 {
    bottom: 60rem !important;
  }

  .lt-xl\:left-240 {
    left: 60rem !important;
  }

  .lt-xl\:top-256 {
    top: 64rem !important;
  }

  .lt-xl\:right-256 {
    right: 64rem !important;
  }

  .lt-xl\:bottom-256 {
    bottom: 64rem !important;
  }

  .lt-xl\:left-256 {
    left: 64rem !important;
  }

  .lt-xl\:top-280 {
    top: 70rem !important;
  }

  .lt-xl\:right-280 {
    right: 70rem !important;
  }

  .lt-xl\:bottom-280 {
    bottom: 70rem !important;
  }

  .lt-xl\:left-280 {
    left: 70rem !important;
  }

  .lt-xl\:top-320 {
    top: 80rem !important;
  }

  .lt-xl\:right-320 {
    right: 80rem !important;
  }

  .lt-xl\:bottom-320 {
    bottom: 80rem !important;
  }

  .lt-xl\:left-320 {
    left: 80rem !important;
  }

  .lt-xl\:top-360 {
    top: 90rem !important;
  }

  .lt-xl\:right-360 {
    right: 90rem !important;
  }

  .lt-xl\:bottom-360 {
    bottom: 90rem !important;
  }

  .lt-xl\:left-360 {
    left: 90rem !important;
  }

  .lt-xl\:top-400 {
    top: 100rem !important;
  }

  .lt-xl\:right-400 {
    right: 100rem !important;
  }

  .lt-xl\:bottom-400 {
    bottom: 100rem !important;
  }

  .lt-xl\:left-400 {
    left: 100rem !important;
  }

  .lt-xl\:top-480 {
    top: 120rem !important;
  }

  .lt-xl\:right-480 {
    right: 120rem !important;
  }

  .lt-xl\:bottom-480 {
    bottom: 120rem !important;
  }

  .lt-xl\:left-480 {
    left: 120rem !important;
  }

  .lt-xl\:top-auto {
    top: auto !important;
  }

  .lt-xl\:right-auto {
    right: auto !important;
  }

  .lt-xl\:bottom-auto {
    bottom: auto !important;
  }

  .lt-xl\:left-auto {
    left: auto !important;
  }

  .lt-xl\:top-px {
    top: 1px !important;
  }

  .lt-xl\:right-px {
    right: 1px !important;
  }

  .lt-xl\:bottom-px {
    bottom: 1px !important;
  }

  .lt-xl\:left-px {
    left: 1px !important;
  }

  .lt-xl\:top-0\.5 {
    top: 0.125rem !important;
  }

  .lt-xl\:right-0\.5 {
    right: 0.125rem !important;
  }

  .lt-xl\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .lt-xl\:left-0\.5 {
    left: 0.125rem !important;
  }

  .lt-xl\:top-1\.5 {
    top: 0.375rem !important;
  }

  .lt-xl\:right-1\.5 {
    right: 0.375rem !important;
  }

  .lt-xl\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .lt-xl\:left-1\.5 {
    left: 0.375rem !important;
  }

  .lt-xl\:top-2\.5 {
    top: 0.625rem !important;
  }

  .lt-xl\:right-2\.5 {
    right: 0.625rem !important;
  }

  .lt-xl\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .lt-xl\:left-2\.5 {
    left: 0.625rem !important;
  }

  .lt-xl\:top-3\.5 {
    top: 0.875rem !important;
  }

  .lt-xl\:right-3\.5 {
    right: 0.875rem !important;
  }

  .lt-xl\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .lt-xl\:left-3\.5 {
    left: 0.875rem !important;
  }

  .lt-xl\:top-1\/2 {
    top: 50% !important;
  }

  .lt-xl\:right-1\/2 {
    right: 50% !important;
  }

  .lt-xl\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .lt-xl\:left-1\/2 {
    left: 50% !important;
  }

  .lt-xl\:top-1\/3 {
    top: 33.333333% !important;
  }

  .lt-xl\:right-1\/3 {
    right: 33.333333% !important;
  }

  .lt-xl\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .lt-xl\:left-1\/3 {
    left: 33.333333% !important;
  }

  .lt-xl\:top-2\/3 {
    top: 66.666667% !important;
  }

  .lt-xl\:right-2\/3 {
    right: 66.666667% !important;
  }

  .lt-xl\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .lt-xl\:left-2\/3 {
    left: 66.666667% !important;
  }

  .lt-xl\:top-1\/4 {
    top: 25% !important;
  }

  .lt-xl\:right-1\/4 {
    right: 25% !important;
  }

  .lt-xl\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .lt-xl\:left-1\/4 {
    left: 25% !important;
  }

  .lt-xl\:top-2\/4 {
    top: 50% !important;
  }

  .lt-xl\:right-2\/4 {
    right: 50% !important;
  }

  .lt-xl\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .lt-xl\:left-2\/4 {
    left: 50% !important;
  }

  .lt-xl\:top-3\/4 {
    top: 75% !important;
  }

  .lt-xl\:right-3\/4 {
    right: 75% !important;
  }

  .lt-xl\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .lt-xl\:left-3\/4 {
    left: 75% !important;
  }

  .lt-xl\:top-1\/5 {
    top: 20% !important;
  }

  .lt-xl\:right-1\/5 {
    right: 20% !important;
  }

  .lt-xl\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .lt-xl\:left-1\/5 {
    left: 20% !important;
  }

  .lt-xl\:top-2\/5 {
    top: 40% !important;
  }

  .lt-xl\:right-2\/5 {
    right: 40% !important;
  }

  .lt-xl\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .lt-xl\:left-2\/5 {
    left: 40% !important;
  }

  .lt-xl\:top-3\/5 {
    top: 60% !important;
  }

  .lt-xl\:right-3\/5 {
    right: 60% !important;
  }

  .lt-xl\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .lt-xl\:left-3\/5 {
    left: 60% !important;
  }

  .lt-xl\:top-4\/5 {
    top: 80% !important;
  }

  .lt-xl\:right-4\/5 {
    right: 80% !important;
  }

  .lt-xl\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .lt-xl\:left-4\/5 {
    left: 80% !important;
  }

  .lt-xl\:top-1\/6 {
    top: 16.666667% !important;
  }

  .lt-xl\:right-1\/6 {
    right: 16.666667% !important;
  }

  .lt-xl\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .lt-xl\:left-1\/6 {
    left: 16.666667% !important;
  }

  .lt-xl\:top-2\/6 {
    top: 33.333333% !important;
  }

  .lt-xl\:right-2\/6 {
    right: 33.333333% !important;
  }

  .lt-xl\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .lt-xl\:left-2\/6 {
    left: 33.333333% !important;
  }

  .lt-xl\:top-3\/6 {
    top: 50% !important;
  }

  .lt-xl\:right-3\/6 {
    right: 50% !important;
  }

  .lt-xl\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .lt-xl\:left-3\/6 {
    left: 50% !important;
  }

  .lt-xl\:top-4\/6 {
    top: 66.666667% !important;
  }

  .lt-xl\:right-4\/6 {
    right: 66.666667% !important;
  }

  .lt-xl\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .lt-xl\:left-4\/6 {
    left: 66.666667% !important;
  }

  .lt-xl\:top-5\/6 {
    top: 83.333333% !important;
  }

  .lt-xl\:right-5\/6 {
    right: 83.333333% !important;
  }

  .lt-xl\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .lt-xl\:left-5\/6 {
    left: 83.333333% !important;
  }

  .lt-xl\:top-1\/12 {
    top: 8.333333% !important;
  }

  .lt-xl\:right-1\/12 {
    right: 8.333333% !important;
  }

  .lt-xl\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .lt-xl\:left-1\/12 {
    left: 8.333333% !important;
  }

  .lt-xl\:top-2\/12 {
    top: 16.666667% !important;
  }

  .lt-xl\:right-2\/12 {
    right: 16.666667% !important;
  }

  .lt-xl\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .lt-xl\:left-2\/12 {
    left: 16.666667% !important;
  }

  .lt-xl\:top-3\/12 {
    top: 25% !important;
  }

  .lt-xl\:right-3\/12 {
    right: 25% !important;
  }

  .lt-xl\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .lt-xl\:left-3\/12 {
    left: 25% !important;
  }

  .lt-xl\:top-4\/12 {
    top: 33.333333% !important;
  }

  .lt-xl\:right-4\/12 {
    right: 33.333333% !important;
  }

  .lt-xl\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .lt-xl\:left-4\/12 {
    left: 33.333333% !important;
  }

  .lt-xl\:top-5\/12 {
    top: 41.666667% !important;
  }

  .lt-xl\:right-5\/12 {
    right: 41.666667% !important;
  }

  .lt-xl\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .lt-xl\:left-5\/12 {
    left: 41.666667% !important;
  }

  .lt-xl\:top-6\/12 {
    top: 50% !important;
  }

  .lt-xl\:right-6\/12 {
    right: 50% !important;
  }

  .lt-xl\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .lt-xl\:left-6\/12 {
    left: 50% !important;
  }

  .lt-xl\:top-7\/12 {
    top: 58.333333% !important;
  }

  .lt-xl\:right-7\/12 {
    right: 58.333333% !important;
  }

  .lt-xl\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .lt-xl\:left-7\/12 {
    left: 58.333333% !important;
  }

  .lt-xl\:top-8\/12 {
    top: 66.666667% !important;
  }

  .lt-xl\:right-8\/12 {
    right: 66.666667% !important;
  }

  .lt-xl\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .lt-xl\:left-8\/12 {
    left: 66.666667% !important;
  }

  .lt-xl\:top-9\/12 {
    top: 75% !important;
  }

  .lt-xl\:right-9\/12 {
    right: 75% !important;
  }

  .lt-xl\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .lt-xl\:left-9\/12 {
    left: 75% !important;
  }

  .lt-xl\:top-10\/12 {
    top: 83.333333% !important;
  }

  .lt-xl\:right-10\/12 {
    right: 83.333333% !important;
  }

  .lt-xl\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .lt-xl\:left-10\/12 {
    left: 83.333333% !important;
  }

  .lt-xl\:top-11\/12 {
    top: 91.666667% !important;
  }

  .lt-xl\:right-11\/12 {
    right: 91.666667% !important;
  }

  .lt-xl\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .lt-xl\:left-11\/12 {
    left: 91.666667% !important;
  }

  .lt-xl\:top-full {
    top: 100% !important;
  }

  .lt-xl\:right-full {
    right: 100% !important;
  }

  .lt-xl\:bottom-full {
    bottom: 100% !important;
  }

  .lt-xl\:left-full {
    left: 100% !important;
  }

  .lt-xl\:top-2px {
    top: 2px !important;
  }

  .lt-xl\:right-2px {
    right: 2px !important;
  }

  .lt-xl\:bottom-2px {
    bottom: 2px !important;
  }

  .lt-xl\:left-2px {
    left: 2px !important;
  }

  .lt-xl\:text-left {
    text-align: left !important;
  }

  .lt-xl\:text-center {
    text-align: center !important;
  }

  .lt-xl\:text-right {
    text-align: right !important;
  }

  .lt-xl\:text-justify {
    text-align: justify !important;
  }

  .lt-xl\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .lt-xl\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .lt-xl\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .lt-xl\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .lt-xl\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .lt-xl\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .lt-xl\:visible {
    visibility: visible !important;
  }

  .lt-xl\:invisible {
    visibility: hidden !important;
  }

  .lt-xl\:whitespace-normal {
    white-space: normal !important;
  }

  .lt-xl\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .lt-xl\:whitespace-pre {
    white-space: pre !important;
  }

  .lt-xl\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .lt-xl\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .lt-xl\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .lt-xl\:break-words {
    overflow-wrap: break-word !important;
  }

  .lt-xl\:break-all {
    word-break: break-all !important;
  }

  .lt-xl\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .lt-xl\:w-0 {
    width: 0 !important;
  }

  .lt-xl\:w-1 {
    width: 0.25rem !important;
  }

  .lt-xl\:w-2 {
    width: 0.5rem !important;
  }

  .lt-xl\:w-3 {
    width: 0.75rem !important;
  }

  .lt-xl\:w-4 {
    width: 1rem !important;
  }

  .lt-xl\:w-5 {
    width: 1.25rem !important;
  }

  .lt-xl\:w-6 {
    width: 1.5rem !important;
  }

  .lt-xl\:w-7 {
    width: 1.75rem !important;
  }

  .lt-xl\:w-8 {
    width: 2rem !important;
  }

  .lt-xl\:w-9 {
    width: 2.25rem !important;
  }

  .lt-xl\:w-10 {
    width: 2.5rem !important;
  }

  .lt-xl\:w-11 {
    width: 2.75rem !important;
  }

  .lt-xl\:w-12 {
    width: 3rem !important;
  }

  .lt-xl\:w-13 {
    width: 3.25rem !important;
  }

  .lt-xl\:w-14 {
    width: 3.5rem !important;
  }

  .lt-xl\:w-15 {
    width: 3.75rem !important;
  }

  .lt-xl\:w-16 {
    width: 4rem !important;
  }

  .lt-xl\:w-18 {
    width: 4.5rem !important;
  }

  .lt-xl\:w-20 {
    width: 5rem !important;
  }

  .lt-xl\:w-22 {
    width: 5.5rem !important;
  }

  .lt-xl\:w-24 {
    width: 6rem !important;
  }

  .lt-xl\:w-26 {
    width: 6.5rem !important;
  }

  .lt-xl\:w-28 {
    width: 7rem !important;
  }

  .lt-xl\:w-30 {
    width: 7.5rem !important;
  }

  .lt-xl\:w-32 {
    width: 8rem !important;
  }

  .lt-xl\:w-36 {
    width: 9rem !important;
  }

  .lt-xl\:w-40 {
    width: 10rem !important;
  }

  .lt-xl\:w-44 {
    width: 11rem !important;
  }

  .lt-xl\:w-48 {
    width: 12rem !important;
  }

  .lt-xl\:w-50 {
    width: 12.5rem !important;
  }

  .lt-xl\:w-52 {
    width: 13rem !important;
  }

  .lt-xl\:w-56 {
    width: 14rem !important;
  }

  .lt-xl\:w-60 {
    width: 15rem !important;
  }

  .lt-xl\:w-64 {
    width: 16rem !important;
  }

  .lt-xl\:w-72 {
    width: 18rem !important;
  }

  .lt-xl\:w-80 {
    width: 20rem !important;
  }

  .lt-xl\:w-90 {
    width: 24rem !important;
  }

  .lt-xl\:w-96 {
    width: 24rem !important;
  }

  .lt-xl\:w-100 {
    width: 25rem !important;
  }

  .lt-xl\:w-120 {
    width: 30rem !important;
  }

  .lt-xl\:w-128 {
    width: 32rem !important;
  }

  .lt-xl\:w-140 {
    width: 35rem !important;
  }

  .lt-xl\:w-160 {
    width: 40rem !important;
  }

  .lt-xl\:w-180 {
    width: 45rem !important;
  }

  .lt-xl\:w-192 {
    width: 48rem !important;
  }

  .lt-xl\:w-200 {
    width: 50rem !important;
  }

  .lt-xl\:w-240 {
    width: 60rem !important;
  }

  .lt-xl\:w-256 {
    width: 64rem !important;
  }

  .lt-xl\:w-280 {
    width: 70rem !important;
  }

  .lt-xl\:w-320 {
    width: 80rem !important;
  }

  .lt-xl\:w-360 {
    width: 90rem !important;
  }

  .lt-xl\:w-400 {
    width: 100rem !important;
  }

  .lt-xl\:w-480 {
    width: 120rem !important;
  }

  .lt-xl\:w-auto {
    width: auto !important;
  }

  .lt-xl\:w-px {
    width: 1px !important;
  }

  .lt-xl\:w-0\.5 {
    width: 0.125rem !important;
  }

  .lt-xl\:w-1\.5 {
    width: 0.375rem !important;
  }

  .lt-xl\:w-2\.5 {
    width: 0.625rem !important;
  }

  .lt-xl\:w-3\.5 {
    width: 0.875rem !important;
  }

  .lt-xl\:w-1\/2 {
    width: 50% !important;
  }

  .lt-xl\:w-1\/3 {
    width: 33.333333% !important;
  }

  .lt-xl\:w-2\/3 {
    width: 66.666667% !important;
  }

  .lt-xl\:w-1\/4 {
    width: 25% !important;
  }

  .lt-xl\:w-2\/4 {
    width: 50% !important;
  }

  .lt-xl\:w-3\/4 {
    width: 75% !important;
  }

  .lt-xl\:w-1\/5 {
    width: 20% !important;
  }

  .lt-xl\:w-2\/5 {
    width: 40% !important;
  }

  .lt-xl\:w-3\/5 {
    width: 60% !important;
  }

  .lt-xl\:w-4\/5 {
    width: 80% !important;
  }

  .lt-xl\:w-1\/6 {
    width: 16.666667% !important;
  }

  .lt-xl\:w-2\/6 {
    width: 33.333333% !important;
  }

  .lt-xl\:w-3\/6 {
    width: 50% !important;
  }

  .lt-xl\:w-4\/6 {
    width: 66.666667% !important;
  }

  .lt-xl\:w-5\/6 {
    width: 83.333333% !important;
  }

  .lt-xl\:w-1\/12 {
    width: 8.333333% !important;
  }

  .lt-xl\:w-2\/12 {
    width: 16.666667% !important;
  }

  .lt-xl\:w-3\/12 {
    width: 25% !important;
  }

  .lt-xl\:w-4\/12 {
    width: 33.333333% !important;
  }

  .lt-xl\:w-5\/12 {
    width: 41.666667% !important;
  }

  .lt-xl\:w-6\/12 {
    width: 50% !important;
  }

  .lt-xl\:w-7\/12 {
    width: 58.333333% !important;
  }

  .lt-xl\:w-8\/12 {
    width: 66.666667% !important;
  }

  .lt-xl\:w-9\/12 {
    width: 75% !important;
  }

  .lt-xl\:w-10\/12 {
    width: 83.333333% !important;
  }

  .lt-xl\:w-11\/12 {
    width: 91.666667% !important;
  }

  .lt-xl\:w-full {
    width: 100% !important;
  }

  .lt-xl\:w-2px {
    width: 2px !important;
  }

  .lt-xl\:w-screen {
    width: 100vw !important;
  }

  .lt-xl\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .lt-xl\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .lt-xl\:z-0 {
    z-index: 0 !important;
  }

  .lt-xl\:z-10 {
    z-index: 10 !important;
  }

  .lt-xl\:z-20 {
    z-index: 20 !important;
  }

  .lt-xl\:z-30 {
    z-index: 30 !important;
  }

  .lt-xl\:z-40 {
    z-index: 40 !important;
  }

  .lt-xl\:z-50 {
    z-index: 50 !important;
  }

  .lt-xl\:z-60 {
    z-index: 60 !important;
  }

  .lt-xl\:z-70 {
    z-index: 70 !important;
  }

  .lt-xl\:z-80 {
    z-index: 80 !important;
  }

  .lt-xl\:z-90 {
    z-index: 90 !important;
  }

  .lt-xl\:z-99 {
    z-index: 99 !important;
  }

  .lt-xl\:z-999 {
    z-index: 999 !important;
  }

  .lt-xl\:z-9999 {
    z-index: 9999 !important;
  }

  .lt-xl\:z-99999 {
    z-index: 99999 !important;
  }

  .lt-xl\:z-auto {
    z-index: auto !important;
  }

  .lt-xl\:-z-1 {
    z-index: -1 !important;
  }

  .lt-xl\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .lt-xl\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .lt-xl\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .lt-xl\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .lt-xl\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .lt-xl\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .lt-xl\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .lt-xl\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .lt-xl\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .lt-xl\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .lt-xl\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .lt-xl\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .lt-xl\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .lt-xl\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .lt-xl\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .lt-xl\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .lt-xl\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .lt-xl\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .lt-xl\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .lt-xl\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .lt-xl\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .lt-xl\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .lt-xl\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .lt-xl\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .lt-xl\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .lt-xl\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .lt-xl\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .lt-xl\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .lt-xl\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .lt-xl\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .lt-xl\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .lt-xl\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .lt-xl\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .lt-xl\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .lt-xl\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .lt-xl\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .lt-xl\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .lt-xl\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .lt-xl\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .lt-xl\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .lt-xl\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .lt-xl\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .lt-xl\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .lt-xl\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .lt-xl\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .lt-xl\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .lt-xl\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .lt-xl\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .lt-xl\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .lt-xl\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .lt-xl\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .lt-xl\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .lt-xl\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .lt-xl\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .lt-xl\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .lt-xl\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .lt-xl\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .lt-xl\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .lt-xl\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-xl\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lt-xl\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lt-xl\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .lt-xl\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-xl\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .lt-xl\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .lt-xl\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .lt-xl\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .lt-xl\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .lt-xl\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .lt-xl\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lt-xl\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-xl\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lt-xl\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .lt-xl\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .lt-xl\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .lt-xl\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .lt-xl\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .lt-xl\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .lt-xl\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .lt-xl\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .lt-xl\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .lt-xl\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .lt-xl\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .lt-xl\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .lt-xl\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .lt-xl\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .lt-xl\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .lt-xl\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .lt-xl\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .lt-xl\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .lt-xl\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .lt-xl\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .lt-xl\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .lt-xl\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .lt-xl\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .lt-xl\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .lt-xl\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .lt-xl\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .lt-xl\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .lt-xl\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .lt-xl\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .lt-xl\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .lt-xl\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .lt-xl\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .lt-xl\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .lt-xl\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .lt-xl\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .lt-xl\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .lt-xl\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .lt-xl\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .lt-xl\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .lt-xl\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .lt-xl\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .lt-xl\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .lt-xl\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .lt-xl\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .lt-xl\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .lt-xl\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .lt-xl\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .lt-xl\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .lt-xl\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .lt-xl\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .lt-xl\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .lt-xl\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .lt-xl\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .lt-xl\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .lt-xl\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .lt-xl\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .lt-xl\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .lt-xl\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .lt-xl\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .lt-xl\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .lt-xl\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .lt-xl\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .lt-xl\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .lt-xl\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .lt-xl\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .lt-xl\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .lt-xl\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .lt-xl\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .lt-xl\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .lt-xl\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .lt-xl\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .lt-xl\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .lt-xl\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-xl\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lt-xl\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lt-xl\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .lt-xl\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-xl\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .lt-xl\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .lt-xl\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .lt-xl\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .lt-xl\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .lt-xl\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .lt-xl\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lt-xl\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-xl\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lt-xl\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .lt-xl\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .lt-xl\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .lt-xl\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .lt-xl\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .lt-xl\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .lt-xl\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .lt-xl\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .lt-xl\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .lt-xl\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .lt-xl\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .lt-xl\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .lt-xl\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .lt-xl\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .lt-xl\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .lt-xl\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .lt-xl\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .lt-xl\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .lt-xl\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .lt-xl\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .lt-xl\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .lt-xl\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .lt-xl\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .lt-xl\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .lt-xl\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .lt-xl\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .lt-xl\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .lt-xl\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .lt-xl\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .lt-xl\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .lt-xl\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .lt-xl\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .lt-xl\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .lt-xl\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .lt-xl\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .lt-xl\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .lt-xl\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .lt-xl\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .lt-xl\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .lt-xl\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .lt-xl\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .lt-xl\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .lt-xl\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .lt-xl\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .lt-xl\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .lt-xl\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .lt-xl\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .lt-xl\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .lt-xl\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .lt-xl\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .lt-xl\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .lt-xl\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .lt-xl\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .lt-xl\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .lt-xl\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .lt-xl\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .lt-xl\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .lt-xl\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .lt-xl\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .lt-xl\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .lt-xl\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .lt-xl\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .lt-xl\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .lt-xl\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .lt-xl\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .lt-xl\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .lt-xl\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .lt-xl\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .lt-xl\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .lt-xl\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .lt-xl\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .lt-xl\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .lt-xl\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-xl\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lt-xl\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lt-xl\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .lt-xl\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-xl\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .lt-xl\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .lt-xl\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .lt-xl\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .lt-xl\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .lt-xl\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .lt-xl\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lt-xl\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-xl\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lt-xl\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .lt-xl\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .lt-xl\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .lt-xl\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .lt-xl\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .lt-xl\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .lt-xl\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .lt-xl\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .lt-xl\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .lt-xl\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .lt-xl\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .lt-xl\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .lt-xl\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .lt-xl\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .lt-xl\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .lt-xl\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .lt-xl\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .lt-xl\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

  .lt-xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

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

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

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

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

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

  .lt-xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .lt-xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .lt-xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

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

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

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

  .lt-xl\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .lt-xl\:col-auto {
    grid-column: auto !important;
  }

  .lt-xl\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

  .lt-xl\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }

  .lt-xl\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .lt-xl\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .lt-xl\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .lt-xl\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .lt-xl\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .lt-xl\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .lt-xl\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .lt-xl\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .lt-xl\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .lt-xl\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .lt-xl\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .lt-xl\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .lt-xl\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .lt-xl\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .lt-xl\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .lt-xl\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .lt-xl\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .lt-xl\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .lt-xl\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .lt-xl\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .lt-xl\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .lt-xl\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .lt-xl\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .lt-xl\:col-start-auto {
    grid-column-start: auto !important;
  }

  .lt-xl\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .lt-xl\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .lt-xl\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .lt-xl\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .lt-xl\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .lt-xl\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .lt-xl\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .lt-xl\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .lt-xl\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .lt-xl\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .lt-xl\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .lt-xl\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .lt-xl\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .lt-xl\:col-end-auto {
    grid-column-end: auto !important;
  }

  .lt-xl\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .lt-xl\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .lt-xl\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .lt-xl\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .lt-xl\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .lt-xl\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .lt-xl\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .lt-xl\:row-auto {
    grid-row: auto !important;
  }

  .lt-xl\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .lt-xl\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .lt-xl\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .lt-xl\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .lt-xl\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .lt-xl\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .lt-xl\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .lt-xl\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .lt-xl\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .lt-xl\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .lt-xl\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .lt-xl\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .lt-xl\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .lt-xl\:row-start-auto {
    grid-row-start: auto !important;
  }

  .lt-xl\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .lt-xl\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .lt-xl\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .lt-xl\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .lt-xl\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .lt-xl\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .lt-xl\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .lt-xl\:row-end-auto {
    grid-row-end: auto !important;
  }

  .lt-xl\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .lt-xl\:transform-none {
    transform: none !important;
  }

  .lt-xl\:origin-center {
    transform-origin: center !important;
  }

  .lt-xl\:origin-top {
    transform-origin: top !important;
  }

  .lt-xl\:origin-top-right {
    transform-origin: top right !important;
  }

  .lt-xl\:origin-right {
    transform-origin: right !important;
  }

  .lt-xl\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .lt-xl\:origin-bottom {
    transform-origin: bottom !important;
  }

  .lt-xl\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .lt-xl\:origin-left {
    transform-origin: left !important;
  }

  .lt-xl\:origin-top-left {
    transform-origin: top left !important;
  }

  .lt-xl\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .lt-xl\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .lt-xl\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .lt-xl\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .lt-xl\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .lt-xl\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .lt-xl\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .lt-xl\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .lt-xl\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .lt-xl\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .lt-xl\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .lt-xl\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .lt-xl\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .lt-xl\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .lt-xl\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .lt-xl\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .lt-xl\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .lt-xl\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .lt-xl\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .lt-xl\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .lt-xl\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .lt-xl\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .lt-xl\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .lt-xl\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .lt-xl\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .lt-xl\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .lt-xl\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .lt-xl\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .lt-xl\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .lt-xl\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (min-width: 600px) {
  .gt-xs\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .gt-xs\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .gt-xs\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-xs\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .gt-xs\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .gt-xs\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .gt-xs\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .gt-xs\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .gt-xs\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .gt-xs\:rounded-none {
    border-radius: 0 !important;
  }

  .gt-xs\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .gt-xs\:rounded {
    border-radius: 0.25rem !important;
  }

  .gt-xs\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .gt-xs\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .gt-xs\:rounded-full {
    border-radius: 9999px !important;
  }

  .gt-xs\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .gt-xs\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .gt-xs\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .gt-xs\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .gt-xs\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .gt-xs\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .gt-xs\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .gt-xs\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .gt-xs\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .gt-xs\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .gt-xs\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .gt-xs\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .gt-xs\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .gt-xs\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .gt-xs\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .gt-xs\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .gt-xs\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .gt-xs\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .gt-xs\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .gt-xs\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .gt-xs\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .gt-xs\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .gt-xs\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .gt-xs\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .gt-xs\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .gt-xs\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .gt-xs\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .gt-xs\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .gt-xs\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .gt-xs\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .gt-xs\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .gt-xs\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .gt-xs\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .gt-xs\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .gt-xs\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .gt-xs\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .gt-xs\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .gt-xs\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .gt-xs\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .gt-xs\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .gt-xs\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .gt-xs\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .gt-xs\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .gt-xs\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .gt-xs\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .gt-xs\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .gt-xs\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .gt-xs\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .gt-xs\:border-0 {
    border-width: 0 !important;
  }

  .gt-xs\:border-2 {
    border-width: 2px !important;
  }

  .gt-xs\:border-4 {
    border-width: 4px !important;
  }

  .gt-xs\:border-8 {
    border-width: 8px !important;
  }

  .gt-xs\:border {
    border-width: 1px !important;
  }

  .gt-xs\:border-t-0 {
    border-top-width: 0 !important;
  }

  .gt-xs\:border-r-0 {
    border-right-width: 0 !important;
  }

  .gt-xs\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .gt-xs\:border-l-0 {
    border-left-width: 0 !important;
  }

  .gt-xs\:border-t-2 {
    border-top-width: 2px !important;
  }

  .gt-xs\:border-r-2 {
    border-right-width: 2px !important;
  }

  .gt-xs\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .gt-xs\:border-l-2 {
    border-left-width: 2px !important;
  }

  .gt-xs\:border-t-4 {
    border-top-width: 4px !important;
  }

  .gt-xs\:border-r-4 {
    border-right-width: 4px !important;
  }

  .gt-xs\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .gt-xs\:border-l-4 {
    border-left-width: 4px !important;
  }

  .gt-xs\:border-t-8 {
    border-top-width: 8px !important;
  }

  .gt-xs\:border-r-8 {
    border-right-width: 8px !important;
  }

  .gt-xs\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .gt-xs\:border-l-8 {
    border-left-width: 8px !important;
  }

  .gt-xs\:border-t {
    border-top-width: 1px !important;
  }

  .gt-xs\:border-r {
    border-right-width: 1px !important;
  }

  .gt-xs\:border-b {
    border-bottom-width: 1px !important;
  }

  .gt-xs\:border-l {
    border-left-width: 1px !important;
  }

  .gt-xs\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .gt-xs\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .gt-xs\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .gt-xs\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .gt-xs\:first\:border:first-child {
    border-width: 1px !important;
  }

  .gt-xs\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .gt-xs\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .gt-xs\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .gt-xs\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .gt-xs\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .gt-xs\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .gt-xs\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .gt-xs\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .gt-xs\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .gt-xs\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .gt-xs\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .gt-xs\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .gt-xs\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .gt-xs\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .gt-xs\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .gt-xs\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .gt-xs\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .gt-xs\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .gt-xs\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .gt-xs\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .gt-xs\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .gt-xs\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .gt-xs\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .gt-xs\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .gt-xs\:last\:border:last-child {
    border-width: 1px !important;
  }

  .gt-xs\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .gt-xs\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .gt-xs\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .gt-xs\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .gt-xs\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .gt-xs\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .gt-xs\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .gt-xs\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .gt-xs\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .gt-xs\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .gt-xs\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .gt-xs\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .gt-xs\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .gt-xs\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .gt-xs\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .gt-xs\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .gt-xs\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .gt-xs\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .gt-xs\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .gt-xs\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .gt-xs\:block {
    display: block !important;
  }

  .gt-xs\:inline-block {
    display: inline-block !important;
  }

  .gt-xs\:inline {
    display: inline !important;
  }

  .gt-xs\:flex {
    display: flex !important;
  }

  .gt-xs\:inline-flex {
    display: inline-flex !important;
  }

  .gt-xs\:table {
    display: table !important;
  }

  .gt-xs\:table-caption {
    display: table-caption !important;
  }

  .gt-xs\:table-cell {
    display: table-cell !important;
  }

  .gt-xs\:table-column {
    display: table-column !important;
  }

  .gt-xs\:table-column-group {
    display: table-column-group !important;
  }

  .gt-xs\:table-footer-group {
    display: table-footer-group !important;
  }

  .gt-xs\:table-header-group {
    display: table-header-group !important;
  }

  .gt-xs\:table-row-group {
    display: table-row-group !important;
  }

  .gt-xs\:table-row {
    display: table-row !important;
  }

  .gt-xs\:flow-root {
    display: flow-root !important;
  }

  .gt-xs\:grid {
    display: grid !important;
  }

  .gt-xs\:inline-grid {
    display: inline-grid !important;
  }

  .gt-xs\:contents {
    display: contents !important;
  }

  .gt-xs\:hidden {
    display: none !important;
  }

  .gt-xs\:flex-row {
    flex-direction: row !important;
  }

  .gt-xs\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .gt-xs\:flex-col {
    flex-direction: column !important;
  }

  .gt-xs\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .gt-xs\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .gt-xs\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gt-xs\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .gt-xs\:items-start {
    align-items: flex-start !important;
  }

  .gt-xs\:items-end {
    align-items: flex-end !important;
  }

  .gt-xs\:items-center {
    align-items: center !important;
  }

  .gt-xs\:items-baseline {
    align-items: baseline !important;
  }

  .gt-xs\:items-stretch {
    align-items: stretch !important;
  }

  .gt-xs\:self-auto {
    align-self: auto !important;
  }

  .gt-xs\:self-start {
    align-self: flex-start !important;
  }

  .gt-xs\:self-end {
    align-self: flex-end !important;
  }

  .gt-xs\:self-center {
    align-self: center !important;
  }

  .gt-xs\:self-stretch {
    align-self: stretch !important;
  }

  .gt-xs\:justify-start {
    justify-content: flex-start !important;
  }

  .gt-xs\:justify-end {
    justify-content: flex-end !important;
  }

  .gt-xs\:justify-center {
    justify-content: center !important;
  }

  .gt-xs\:justify-between {
    justify-content: space-between !important;
  }

  .gt-xs\:justify-around {
    justify-content: space-around !important;
  }

  .gt-xs\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .gt-xs\:content-center {
    align-content: center !important;
  }

  .gt-xs\:content-start {
    align-content: flex-start !important;
  }

  .gt-xs\:content-end {
    align-content: flex-end !important;
  }

  .gt-xs\:content-between {
    align-content: space-between !important;
  }

  .gt-xs\:content-around {
    align-content: space-around !important;
  }

  .gt-xs\:flex-0 {
    flex: 0 0 auto !important;
  }

  .gt-xs\:flex-1 {
    flex: 1 1 0% !important;
  }

  .gt-xs\:flex-auto {
    flex: 1 1 auto !important;
  }

  .gt-xs\:flex-initial {
    flex: 0 1 auto !important;
  }

  .gt-xs\:flex-none {
    flex: none !important;
  }

  .gt-xs\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .gt-xs\:flex-grow {
    flex-grow: 1 !important;
  }

  .gt-xs\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .gt-xs\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .gt-xs\:order-1 {
    order: 1 !important;
  }

  .gt-xs\:order-2 {
    order: 2 !important;
  }

  .gt-xs\:order-3 {
    order: 3 !important;
  }

  .gt-xs\:order-4 {
    order: 4 !important;
  }

  .gt-xs\:order-5 {
    order: 5 !important;
  }

  .gt-xs\:order-6 {
    order: 6 !important;
  }

  .gt-xs\:order-7 {
    order: 7 !important;
  }

  .gt-xs\:order-8 {
    order: 8 !important;
  }

  .gt-xs\:order-9 {
    order: 9 !important;
  }

  .gt-xs\:order-10 {
    order: 10 !important;
  }

  .gt-xs\:order-11 {
    order: 11 !important;
  }

  .gt-xs\:order-12 {
    order: 12 !important;
  }

  .gt-xs\:order-first {
    order: -9999 !important;
  }

  .gt-xs\:order-last {
    order: 9999 !important;
  }

  .gt-xs\:order-none {
    order: 0 !important;
  }

  .gt-xs\:font-hairline {
    font-weight: 100 !important;
  }

  .gt-xs\:font-thin {
    font-weight: 200 !important;
  }

  .gt-xs\:font-light {
    font-weight: 300 !important;
  }

  .gt-xs\:font-normal {
    font-weight: 400 !important;
  }

  .gt-xs\:font-medium {
    font-weight: 500 !important;
  }

  .gt-xs\:font-semibold {
    font-weight: 600 !important;
  }

  .gt-xs\:font-bold {
    font-weight: 700 !important;
  }

  .gt-xs\:font-extrabold {
    font-weight: 800 !important;
  }

  .gt-xs\:font-black {
    font-weight: 900 !important;
  }

  .gt-xs\:h-0 {
    height: 0 !important;
  }

  .gt-xs\:h-1 {
    height: 0.25rem !important;
  }

  .gt-xs\:h-2 {
    height: 0.5rem !important;
  }

  .gt-xs\:h-3 {
    height: 0.75rem !important;
  }

  .gt-xs\:h-4 {
    height: 1rem !important;
  }

  .gt-xs\:h-5 {
    height: 1.25rem !important;
  }

  .gt-xs\:h-6 {
    height: 1.5rem !important;
  }

  .gt-xs\:h-7 {
    height: 1.75rem !important;
  }

  .gt-xs\:h-8 {
    height: 2rem !important;
  }

  .gt-xs\:h-9 {
    height: 2.25rem !important;
  }

  .gt-xs\:h-10 {
    height: 2.5rem !important;
  }

  .gt-xs\:h-11 {
    height: 2.75rem !important;
  }

  .gt-xs\:h-12 {
    height: 3rem !important;
  }

  .gt-xs\:h-13 {
    height: 3.25rem !important;
  }

  .gt-xs\:h-14 {
    height: 3.5rem !important;
  }

  .gt-xs\:h-15 {
    height: 3.75rem !important;
  }

  .gt-xs\:h-16 {
    height: 4rem !important;
  }

  .gt-xs\:h-18 {
    height: 4.5rem !important;
  }

  .gt-xs\:h-20 {
    height: 5rem !important;
  }

  .gt-xs\:h-22 {
    height: 5.5rem !important;
  }

  .gt-xs\:h-24 {
    height: 6rem !important;
  }

  .gt-xs\:h-26 {
    height: 6.5rem !important;
  }

  .gt-xs\:h-28 {
    height: 7rem !important;
  }

  .gt-xs\:h-30 {
    height: 7.5rem !important;
  }

  .gt-xs\:h-32 {
    height: 8rem !important;
  }

  .gt-xs\:h-36 {
    height: 9rem !important;
  }

  .gt-xs\:h-40 {
    height: 10rem !important;
  }

  .gt-xs\:h-44 {
    height: 11rem !important;
  }

  .gt-xs\:h-48 {
    height: 12rem !important;
  }

  .gt-xs\:h-50 {
    height: 12.5rem !important;
  }

  .gt-xs\:h-52 {
    height: 13rem !important;
  }

  .gt-xs\:h-56 {
    height: 14rem !important;
  }

  .gt-xs\:h-60 {
    height: 15rem !important;
  }

  .gt-xs\:h-64 {
    height: 16rem !important;
  }

  .gt-xs\:h-72 {
    height: 18rem !important;
  }

  .gt-xs\:h-80 {
    height: 20rem !important;
  }

  .gt-xs\:h-90 {
    height: 24rem !important;
  }

  .gt-xs\:h-96 {
    height: 24rem !important;
  }

  .gt-xs\:h-100 {
    height: 25rem !important;
  }

  .gt-xs\:h-120 {
    height: 30rem !important;
  }

  .gt-xs\:h-128 {
    height: 32rem !important;
  }

  .gt-xs\:h-140 {
    height: 35rem !important;
  }

  .gt-xs\:h-160 {
    height: 40rem !important;
  }

  .gt-xs\:h-180 {
    height: 45rem !important;
  }

  .gt-xs\:h-192 {
    height: 48rem !important;
  }

  .gt-xs\:h-200 {
    height: 50rem !important;
  }

  .gt-xs\:h-240 {
    height: 60rem !important;
  }

  .gt-xs\:h-256 {
    height: 64rem !important;
  }

  .gt-xs\:h-280 {
    height: 70rem !important;
  }

  .gt-xs\:h-320 {
    height: 80rem !important;
  }

  .gt-xs\:h-360 {
    height: 90rem !important;
  }

  .gt-xs\:h-400 {
    height: 100rem !important;
  }

  .gt-xs\:h-480 {
    height: 120rem !important;
  }

  .gt-xs\:h-auto {
    height: auto !important;
  }

  .gt-xs\:h-px {
    height: 1px !important;
  }

  .gt-xs\:h-0\.5 {
    height: 0.125rem !important;
  }

  .gt-xs\:h-1\.5 {
    height: 0.375rem !important;
  }

  .gt-xs\:h-2\.5 {
    height: 0.625rem !important;
  }

  .gt-xs\:h-3\.5 {
    height: 0.875rem !important;
  }

  .gt-xs\:h-1\/2 {
    height: 50% !important;
  }

  .gt-xs\:h-1\/3 {
    height: 33.333333% !important;
  }

  .gt-xs\:h-2\/3 {
    height: 66.666667% !important;
  }

  .gt-xs\:h-1\/4 {
    height: 25% !important;
  }

  .gt-xs\:h-2\/4 {
    height: 50% !important;
  }

  .gt-xs\:h-3\/4 {
    height: 75% !important;
  }

  .gt-xs\:h-1\/5 {
    height: 20% !important;
  }

  .gt-xs\:h-2\/5 {
    height: 40% !important;
  }

  .gt-xs\:h-3\/5 {
    height: 60% !important;
  }

  .gt-xs\:h-4\/5 {
    height: 80% !important;
  }

  .gt-xs\:h-1\/6 {
    height: 16.666667% !important;
  }

  .gt-xs\:h-2\/6 {
    height: 33.333333% !important;
  }

  .gt-xs\:h-3\/6 {
    height: 50% !important;
  }

  .gt-xs\:h-4\/6 {
    height: 66.666667% !important;
  }

  .gt-xs\:h-5\/6 {
    height: 83.333333% !important;
  }

  .gt-xs\:h-1\/12 {
    height: 8.333333% !important;
  }

  .gt-xs\:h-2\/12 {
    height: 16.666667% !important;
  }

  .gt-xs\:h-3\/12 {
    height: 25% !important;
  }

  .gt-xs\:h-4\/12 {
    height: 33.333333% !important;
  }

  .gt-xs\:h-5\/12 {
    height: 41.666667% !important;
  }

  .gt-xs\:h-6\/12 {
    height: 50% !important;
  }

  .gt-xs\:h-7\/12 {
    height: 58.333333% !important;
  }

  .gt-xs\:h-8\/12 {
    height: 66.666667% !important;
  }

  .gt-xs\:h-9\/12 {
    height: 75% !important;
  }

  .gt-xs\:h-10\/12 {
    height: 83.333333% !important;
  }

  .gt-xs\:h-11\/12 {
    height: 91.666667% !important;
  }

  .gt-xs\:h-full {
    height: 100% !important;
  }

  .gt-xs\:h-2px {
    height: 2px !important;
  }

  .gt-xs\:h-screen {
    height: 100vh !important;
  }

  .gt-xs\:text-xs {
    font-size: 0.625rem !important;
  }

  .gt-xs\:text-sm {
    font-size: 0.75rem !important;
  }

  .gt-xs\:text-md {
    font-size: 0.8125rem !important;
  }

  .gt-xs\:text-base {
    font-size: 0.875rem !important;
  }

  .gt-xs\:text-lg {
    font-size: 1rem !important;
  }

  .gt-xs\:text-xl {
    font-size: 1.125rem !important;
  }

  .gt-xs\:text-2xl {
    font-size: 1.25rem !important;
  }

  .gt-xs\:text-3xl {
    font-size: 1.5rem !important;
  }

  .gt-xs\:text-4xl {
    font-size: 2rem !important;
  }

  .gt-xs\:text-5xl {
    font-size: 2.25rem !important;
  }

  .gt-xs\:text-6xl {
    font-size: 2.5rem !important;
  }

  .gt-xs\:text-7xl {
    font-size: 3rem !important;
  }

  .gt-xs\:text-8xl {
    font-size: 4rem !important;
  }

  .gt-xs\:text-9xl {
    font-size: 6rem !important;
  }

  .gt-xs\:text-10xl {
    font-size: 8rem !important;
  }

  .gt-xs\:leading-3 {
    line-height: 0.75rem !important;
  }

  .gt-xs\:leading-4 {
    line-height: 1rem !important;
  }

  .gt-xs\:leading-5 {
    line-height: 1.25rem !important;
  }

  .gt-xs\:leading-6 {
    line-height: 1.5rem !important;
  }

  .gt-xs\:leading-7 {
    line-height: 1.75rem !important;
  }

  .gt-xs\:leading-8 {
    line-height: 2rem !important;
  }

  .gt-xs\:leading-9 {
    line-height: 2.25rem !important;
  }

  .gt-xs\:leading-10 {
    line-height: 2.5rem !important;
  }

  .gt-xs\:leading-none {
    line-height: 1 !important;
  }

  .gt-xs\:leading-tight {
    line-height: 1.25 !important;
  }

  .gt-xs\:leading-snug {
    line-height: 1.375 !important;
  }

  .gt-xs\:leading-normal {
    line-height: 1.5 !important;
  }

  .gt-xs\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .gt-xs\:leading-loose {
    line-height: 2 !important;
  }

  .gt-xs\:m-0 {
    margin: 0 !important;
  }

  .gt-xs\:m-1 {
    margin: 0.25rem !important;
  }

  .gt-xs\:m-2 {
    margin: 0.5rem !important;
  }

  .gt-xs\:m-3 {
    margin: 0.75rem !important;
  }

  .gt-xs\:m-4 {
    margin: 1rem !important;
  }

  .gt-xs\:m-5 {
    margin: 1.25rem !important;
  }

  .gt-xs\:m-6 {
    margin: 1.5rem !important;
  }

  .gt-xs\:m-7 {
    margin: 1.75rem !important;
  }

  .gt-xs\:m-8 {
    margin: 2rem !important;
  }

  .gt-xs\:m-9 {
    margin: 2.25rem !important;
  }

  .gt-xs\:m-10 {
    margin: 2.5rem !important;
  }

  .gt-xs\:m-11 {
    margin: 2.75rem !important;
  }

  .gt-xs\:m-12 {
    margin: 3rem !important;
  }

  .gt-xs\:m-13 {
    margin: 3.25rem !important;
  }

  .gt-xs\:m-14 {
    margin: 3.5rem !important;
  }

  .gt-xs\:m-15 {
    margin: 3.75rem !important;
  }

  .gt-xs\:m-16 {
    margin: 4rem !important;
  }

  .gt-xs\:m-18 {
    margin: 4.5rem !important;
  }

  .gt-xs\:m-20 {
    margin: 5rem !important;
  }

  .gt-xs\:m-22 {
    margin: 5.5rem !important;
  }

  .gt-xs\:m-24 {
    margin: 6rem !important;
  }

  .gt-xs\:m-26 {
    margin: 6.5rem !important;
  }

  .gt-xs\:m-28 {
    margin: 7rem !important;
  }

  .gt-xs\:m-30 {
    margin: 7.5rem !important;
  }

  .gt-xs\:m-32 {
    margin: 8rem !important;
  }

  .gt-xs\:m-36 {
    margin: 9rem !important;
  }

  .gt-xs\:m-40 {
    margin: 10rem !important;
  }

  .gt-xs\:m-44 {
    margin: 11rem !important;
  }

  .gt-xs\:m-48 {
    margin: 12rem !important;
  }

  .gt-xs\:m-50 {
    margin: 12.5rem !important;
  }

  .gt-xs\:m-52 {
    margin: 13rem !important;
  }

  .gt-xs\:m-56 {
    margin: 14rem !important;
  }

  .gt-xs\:m-60 {
    margin: 15rem !important;
  }

  .gt-xs\:m-64 {
    margin: 16rem !important;
  }

  .gt-xs\:m-72 {
    margin: 18rem !important;
  }

  .gt-xs\:m-80 {
    margin: 20rem !important;
  }

  .gt-xs\:m-90 {
    margin: 24rem !important;
  }

  .gt-xs\:m-96 {
    margin: 24rem !important;
  }

  .gt-xs\:m-100 {
    margin: 25rem !important;
  }

  .gt-xs\:m-120 {
    margin: 30rem !important;
  }

  .gt-xs\:m-128 {
    margin: 32rem !important;
  }

  .gt-xs\:m-140 {
    margin: 35rem !important;
  }

  .gt-xs\:m-160 {
    margin: 40rem !important;
  }

  .gt-xs\:m-180 {
    margin: 45rem !important;
  }

  .gt-xs\:m-192 {
    margin: 48rem !important;
  }

  .gt-xs\:m-200 {
    margin: 50rem !important;
  }

  .gt-xs\:m-240 {
    margin: 60rem !important;
  }

  .gt-xs\:m-256 {
    margin: 64rem !important;
  }

  .gt-xs\:m-280 {
    margin: 70rem !important;
  }

  .gt-xs\:m-320 {
    margin: 80rem !important;
  }

  .gt-xs\:m-360 {
    margin: 90rem !important;
  }

  .gt-xs\:m-400 {
    margin: 100rem !important;
  }

  .gt-xs\:m-480 {
    margin: 120rem !important;
  }

  .gt-xs\:m-auto {
    margin: auto !important;
  }

  .gt-xs\:m-px {
    margin: 1px !important;
  }

  .gt-xs\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .gt-xs\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .gt-xs\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .gt-xs\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .gt-xs\:m-1\/2 {
    margin: 50% !important;
  }

  .gt-xs\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .gt-xs\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .gt-xs\:m-1\/4 {
    margin: 25% !important;
  }

  .gt-xs\:m-2\/4 {
    margin: 50% !important;
  }

  .gt-xs\:m-3\/4 {
    margin: 75% !important;
  }

  .gt-xs\:m-1\/5 {
    margin: 20% !important;
  }

  .gt-xs\:m-2\/5 {
    margin: 40% !important;
  }

  .gt-xs\:m-3\/5 {
    margin: 60% !important;
  }

  .gt-xs\:m-4\/5 {
    margin: 80% !important;
  }

  .gt-xs\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .gt-xs\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .gt-xs\:m-3\/6 {
    margin: 50% !important;
  }

  .gt-xs\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .gt-xs\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .gt-xs\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .gt-xs\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .gt-xs\:m-3\/12 {
    margin: 25% !important;
  }

  .gt-xs\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .gt-xs\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .gt-xs\:m-6\/12 {
    margin: 50% !important;
  }

  .gt-xs\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .gt-xs\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .gt-xs\:m-9\/12 {
    margin: 75% !important;
  }

  .gt-xs\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .gt-xs\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .gt-xs\:m-full {
    margin: 100% !important;
  }

  .gt-xs\:m-2px {
    margin: 2px !important;
  }

  .gt-xs\:-m-1 {
    margin: -0.25rem !important;
  }

  .gt-xs\:-m-2 {
    margin: -0.5rem !important;
  }

  .gt-xs\:-m-3 {
    margin: -0.75rem !important;
  }

  .gt-xs\:-m-4 {
    margin: -1rem !important;
  }

  .gt-xs\:-m-5 {
    margin: -1.25rem !important;
  }

  .gt-xs\:-m-6 {
    margin: -1.5rem !important;
  }

  .gt-xs\:-m-7 {
    margin: -1.75rem !important;
  }

  .gt-xs\:-m-8 {
    margin: -2rem !important;
  }

  .gt-xs\:-m-9 {
    margin: -2.25rem !important;
  }

  .gt-xs\:-m-10 {
    margin: -2.5rem !important;
  }

  .gt-xs\:-m-11 {
    margin: -2.75rem !important;
  }

  .gt-xs\:-m-12 {
    margin: -3rem !important;
  }

  .gt-xs\:-m-13 {
    margin: -3.25rem !important;
  }

  .gt-xs\:-m-14 {
    margin: -3.5rem !important;
  }

  .gt-xs\:-m-15 {
    margin: -3.75rem !important;
  }

  .gt-xs\:-m-16 {
    margin: -4rem !important;
  }

  .gt-xs\:-m-18 {
    margin: -4.5rem !important;
  }

  .gt-xs\:-m-20 {
    margin: -5rem !important;
  }

  .gt-xs\:-m-22 {
    margin: -5.5rem !important;
  }

  .gt-xs\:-m-24 {
    margin: -6rem !important;
  }

  .gt-xs\:-m-26 {
    margin: -6.5rem !important;
  }

  .gt-xs\:-m-28 {
    margin: -7rem !important;
  }

  .gt-xs\:-m-30 {
    margin: -7.5rem !important;
  }

  .gt-xs\:-m-32 {
    margin: -8rem !important;
  }

  .gt-xs\:-m-36 {
    margin: -9rem !important;
  }

  .gt-xs\:-m-40 {
    margin: -10rem !important;
  }

  .gt-xs\:-m-44 {
    margin: -11rem !important;
  }

  .gt-xs\:-m-48 {
    margin: -12rem !important;
  }

  .gt-xs\:-m-50 {
    margin: -12.5rem !important;
  }

  .gt-xs\:-m-52 {
    margin: -13rem !important;
  }

  .gt-xs\:-m-56 {
    margin: -14rem !important;
  }

  .gt-xs\:-m-60 {
    margin: -15rem !important;
  }

  .gt-xs\:-m-64 {
    margin: -16rem !important;
  }

  .gt-xs\:-m-72 {
    margin: -18rem !important;
  }

  .gt-xs\:-m-80 {
    margin: -20rem !important;
  }

  .gt-xs\:-m-90 {
    margin: -24rem !important;
  }

  .gt-xs\:-m-96 {
    margin: -24rem !important;
  }

  .gt-xs\:-m-100 {
    margin: -25rem !important;
  }

  .gt-xs\:-m-120 {
    margin: -30rem !important;
  }

  .gt-xs\:-m-128 {
    margin: -32rem !important;
  }

  .gt-xs\:-m-140 {
    margin: -35rem !important;
  }

  .gt-xs\:-m-160 {
    margin: -40rem !important;
  }

  .gt-xs\:-m-180 {
    margin: -45rem !important;
  }

  .gt-xs\:-m-192 {
    margin: -48rem !important;
  }

  .gt-xs\:-m-200 {
    margin: -50rem !important;
  }

  .gt-xs\:-m-240 {
    margin: -60rem !important;
  }

  .gt-xs\:-m-256 {
    margin: -64rem !important;
  }

  .gt-xs\:-m-280 {
    margin: -70rem !important;
  }

  .gt-xs\:-m-320 {
    margin: -80rem !important;
  }

  .gt-xs\:-m-360 {
    margin: -90rem !important;
  }

  .gt-xs\:-m-400 {
    margin: -100rem !important;
  }

  .gt-xs\:-m-480 {
    margin: -120rem !important;
  }

  .gt-xs\:-m-px {
    margin: -1px !important;
  }

  .gt-xs\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .gt-xs\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .gt-xs\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .gt-xs\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .gt-xs\:-m-1\/2 {
    margin: -50% !important;
  }

  .gt-xs\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .gt-xs\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .gt-xs\:-m-1\/4 {
    margin: -25% !important;
  }

  .gt-xs\:-m-2\/4 {
    margin: -50% !important;
  }

  .gt-xs\:-m-3\/4 {
    margin: -75% !important;
  }

  .gt-xs\:-m-1\/5 {
    margin: -20% !important;
  }

  .gt-xs\:-m-2\/5 {
    margin: -40% !important;
  }

  .gt-xs\:-m-3\/5 {
    margin: -60% !important;
  }

  .gt-xs\:-m-4\/5 {
    margin: -80% !important;
  }

  .gt-xs\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .gt-xs\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .gt-xs\:-m-3\/6 {
    margin: -50% !important;
  }

  .gt-xs\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .gt-xs\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .gt-xs\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .gt-xs\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .gt-xs\:-m-3\/12 {
    margin: -25% !important;
  }

  .gt-xs\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .gt-xs\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .gt-xs\:-m-6\/12 {
    margin: -50% !important;
  }

  .gt-xs\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .gt-xs\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .gt-xs\:-m-9\/12 {
    margin: -75% !important;
  }

  .gt-xs\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .gt-xs\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .gt-xs\:-m-full {
    margin: -100% !important;
  }

  .gt-xs\:-m-2px {
    margin: -2px !important;
  }

  .gt-xs\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .gt-xs\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .gt-xs\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .gt-xs\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .gt-xs\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .gt-xs\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .gt-xs\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .gt-xs\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .gt-xs\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .gt-xs\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .gt-xs\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .gt-xs\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .gt-xs\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .gt-xs\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .gt-xs\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .gt-xs\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .gt-xs\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .gt-xs\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .gt-xs\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .gt-xs\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .gt-xs\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .gt-xs\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .gt-xs\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .gt-xs\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .gt-xs\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .gt-xs\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .gt-xs\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .gt-xs\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .gt-xs\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .gt-xs\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .gt-xs\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .gt-xs\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .gt-xs\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .gt-xs\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .gt-xs\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .gt-xs\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .gt-xs\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .gt-xs\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .gt-xs\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .gt-xs\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .gt-xs\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .gt-xs\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .gt-xs\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .gt-xs\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .gt-xs\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .gt-xs\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .gt-xs\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .gt-xs\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .gt-xs\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .gt-xs\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .gt-xs\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .gt-xs\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .gt-xs\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .gt-xs\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .gt-xs\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .gt-xs\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .gt-xs\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .gt-xs\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .gt-xs\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .gt-xs\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .gt-xs\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .gt-xs\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .gt-xs\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .gt-xs\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .gt-xs\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .gt-xs\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .gt-xs\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .gt-xs\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .gt-xs\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .gt-xs\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .gt-xs\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .gt-xs\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .gt-xs\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .gt-xs\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .gt-xs\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .gt-xs\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .gt-xs\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .gt-xs\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .gt-xs\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .gt-xs\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .gt-xs\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .gt-xs\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .gt-xs\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .gt-xs\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .gt-xs\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .gt-xs\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .gt-xs\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .gt-xs\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .gt-xs\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .gt-xs\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .gt-xs\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .gt-xs\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .gt-xs\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .gt-xs\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .gt-xs\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .gt-xs\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .gt-xs\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .gt-xs\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .gt-xs\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .gt-xs\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .gt-xs\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .gt-xs\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .gt-xs\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .gt-xs\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .gt-xs\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .gt-xs\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .gt-xs\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .gt-xs\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .gt-xs\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .gt-xs\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .gt-xs\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .gt-xs\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .gt-xs\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .gt-xs\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .gt-xs\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .gt-xs\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .gt-xs\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .gt-xs\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .gt-xs\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-xs\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-xs\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .gt-xs\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .gt-xs\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .gt-xs\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .gt-xs\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .gt-xs\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .gt-xs\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-xs\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-xs\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .gt-xs\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .gt-xs\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .gt-xs\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .gt-xs\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .gt-xs\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .gt-xs\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .gt-xs\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .gt-xs\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .gt-xs\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .gt-xs\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .gt-xs\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .gt-xs\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .gt-xs\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .gt-xs\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-xs\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-xs\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .gt-xs\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .gt-xs\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .gt-xs\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .gt-xs\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .gt-xs\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .gt-xs\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .gt-xs\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .gt-xs\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .gt-xs\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .gt-xs\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .gt-xs\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .gt-xs\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .gt-xs\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .gt-xs\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-xs\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-xs\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .gt-xs\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .gt-xs\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .gt-xs\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .gt-xs\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .gt-xs\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .gt-xs\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .gt-xs\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .gt-xs\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .gt-xs\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .gt-xs\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .gt-xs\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .gt-xs\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .gt-xs\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .gt-xs\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .gt-xs\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .gt-xs\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .gt-xs\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .gt-xs\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .gt-xs\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .gt-xs\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .gt-xs\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .gt-xs\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .gt-xs\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .gt-xs\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .gt-xs\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .gt-xs\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .gt-xs\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .gt-xs\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .gt-xs\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .gt-xs\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .gt-xs\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .gt-xs\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .gt-xs\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .gt-xs\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .gt-xs\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .gt-xs\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .gt-xs\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .gt-xs\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .gt-xs\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .gt-xs\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .gt-xs\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .gt-xs\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .gt-xs\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .gt-xs\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .gt-xs\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .gt-xs\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .gt-xs\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .gt-xs\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .gt-xs\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .gt-xs\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .gt-xs\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .gt-xs\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .gt-xs\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .gt-xs\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .gt-xs\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .gt-xs\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .gt-xs\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .gt-xs\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .gt-xs\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .gt-xs\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .gt-xs\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .gt-xs\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .gt-xs\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .gt-xs\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .gt-xs\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .gt-xs\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .gt-xs\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .gt-xs\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .gt-xs\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .gt-xs\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .gt-xs\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .gt-xs\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .gt-xs\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .gt-xs\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .gt-xs\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .gt-xs\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .gt-xs\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .gt-xs\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .gt-xs\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .gt-xs\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .gt-xs\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .gt-xs\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .gt-xs\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .gt-xs\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .gt-xs\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .gt-xs\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .gt-xs\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .gt-xs\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .gt-xs\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .gt-xs\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .gt-xs\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .gt-xs\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .gt-xs\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .gt-xs\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .gt-xs\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .gt-xs\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .gt-xs\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .gt-xs\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .gt-xs\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .gt-xs\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .gt-xs\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .gt-xs\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .gt-xs\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .gt-xs\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .gt-xs\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .gt-xs\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .gt-xs\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .gt-xs\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .gt-xs\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .gt-xs\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .gt-xs\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .gt-xs\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .gt-xs\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .gt-xs\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .gt-xs\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .gt-xs\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .gt-xs\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .gt-xs\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .gt-xs\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .gt-xs\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .gt-xs\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .gt-xs\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .gt-xs\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .gt-xs\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .gt-xs\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .gt-xs\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .gt-xs\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .gt-xs\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-xs\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-xs\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .gt-xs\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .gt-xs\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .gt-xs\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .gt-xs\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .gt-xs\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .gt-xs\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-xs\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-xs\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .gt-xs\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .gt-xs\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .gt-xs\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .gt-xs\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .gt-xs\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .gt-xs\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .gt-xs\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .gt-xs\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .gt-xs\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .gt-xs\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .gt-xs\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .gt-xs\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .gt-xs\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .gt-xs\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-xs\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-xs\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .gt-xs\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .gt-xs\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .gt-xs\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .gt-xs\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .gt-xs\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .gt-xs\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .gt-xs\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .gt-xs\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .gt-xs\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .gt-xs\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .gt-xs\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .gt-xs\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .gt-xs\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .gt-xs\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-xs\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-xs\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .gt-xs\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .gt-xs\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .gt-xs\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .gt-xs\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .gt-xs\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .gt-xs\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .gt-xs\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .gt-xs\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .gt-xs\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .gt-xs\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .gt-xs\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .gt-xs\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .gt-xs\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .gt-xs\:mt-0 {
    margin-top: 0 !important;
  }

  .gt-xs\:mr-0 {
    margin-right: 0 !important;
  }

  .gt-xs\:mb-0 {
    margin-bottom: 0 !important;
  }

  .gt-xs\:ml-0 {
    margin-left: 0 !important;
  }

  .gt-xs\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .gt-xs\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .gt-xs\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .gt-xs\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .gt-xs\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .gt-xs\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .gt-xs\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .gt-xs\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .gt-xs\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .gt-xs\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .gt-xs\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .gt-xs\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .gt-xs\:mt-4 {
    margin-top: 1rem !important;
  }

  .gt-xs\:mr-4 {
    margin-right: 1rem !important;
  }

  .gt-xs\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .gt-xs\:ml-4 {
    margin-left: 1rem !important;
  }

  .gt-xs\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .gt-xs\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .gt-xs\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .gt-xs\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .gt-xs\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .gt-xs\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .gt-xs\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .gt-xs\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .gt-xs\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .gt-xs\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .gt-xs\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .gt-xs\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .gt-xs\:mt-8 {
    margin-top: 2rem !important;
  }

  .gt-xs\:mr-8 {
    margin-right: 2rem !important;
  }

  .gt-xs\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .gt-xs\:ml-8 {
    margin-left: 2rem !important;
  }

  .gt-xs\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .gt-xs\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .gt-xs\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .gt-xs\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .gt-xs\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .gt-xs\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .gt-xs\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .gt-xs\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .gt-xs\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .gt-xs\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .gt-xs\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .gt-xs\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .gt-xs\:mt-12 {
    margin-top: 3rem !important;
  }

  .gt-xs\:mr-12 {
    margin-right: 3rem !important;
  }

  .gt-xs\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .gt-xs\:ml-12 {
    margin-left: 3rem !important;
  }

  .gt-xs\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .gt-xs\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .gt-xs\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .gt-xs\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .gt-xs\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .gt-xs\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .gt-xs\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .gt-xs\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .gt-xs\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .gt-xs\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .gt-xs\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .gt-xs\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .gt-xs\:mt-16 {
    margin-top: 4rem !important;
  }

  .gt-xs\:mr-16 {
    margin-right: 4rem !important;
  }

  .gt-xs\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .gt-xs\:ml-16 {
    margin-left: 4rem !important;
  }

  .gt-xs\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .gt-xs\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .gt-xs\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .gt-xs\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .gt-xs\:mt-20 {
    margin-top: 5rem !important;
  }

  .gt-xs\:mr-20 {
    margin-right: 5rem !important;
  }

  .gt-xs\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .gt-xs\:ml-20 {
    margin-left: 5rem !important;
  }

  .gt-xs\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .gt-xs\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .gt-xs\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .gt-xs\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .gt-xs\:mt-24 {
    margin-top: 6rem !important;
  }

  .gt-xs\:mr-24 {
    margin-right: 6rem !important;
  }

  .gt-xs\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .gt-xs\:ml-24 {
    margin-left: 6rem !important;
  }

  .gt-xs\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .gt-xs\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .gt-xs\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .gt-xs\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .gt-xs\:mt-28 {
    margin-top: 7rem !important;
  }

  .gt-xs\:mr-28 {
    margin-right: 7rem !important;
  }

  .gt-xs\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .gt-xs\:ml-28 {
    margin-left: 7rem !important;
  }

  .gt-xs\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .gt-xs\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .gt-xs\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .gt-xs\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .gt-xs\:mt-32 {
    margin-top: 8rem !important;
  }

  .gt-xs\:mr-32 {
    margin-right: 8rem !important;
  }

  .gt-xs\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .gt-xs\:ml-32 {
    margin-left: 8rem !important;
  }

  .gt-xs\:mt-36 {
    margin-top: 9rem !important;
  }

  .gt-xs\:mr-36 {
    margin-right: 9rem !important;
  }

  .gt-xs\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .gt-xs\:ml-36 {
    margin-left: 9rem !important;
  }

  .gt-xs\:mt-40 {
    margin-top: 10rem !important;
  }

  .gt-xs\:mr-40 {
    margin-right: 10rem !important;
  }

  .gt-xs\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .gt-xs\:ml-40 {
    margin-left: 10rem !important;
  }

  .gt-xs\:mt-44 {
    margin-top: 11rem !important;
  }

  .gt-xs\:mr-44 {
    margin-right: 11rem !important;
  }

  .gt-xs\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .gt-xs\:ml-44 {
    margin-left: 11rem !important;
  }

  .gt-xs\:mt-48 {
    margin-top: 12rem !important;
  }

  .gt-xs\:mr-48 {
    margin-right: 12rem !important;
  }

  .gt-xs\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .gt-xs\:ml-48 {
    margin-left: 12rem !important;
  }

  .gt-xs\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .gt-xs\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .gt-xs\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .gt-xs\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .gt-xs\:mt-52 {
    margin-top: 13rem !important;
  }

  .gt-xs\:mr-52 {
    margin-right: 13rem !important;
  }

  .gt-xs\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .gt-xs\:ml-52 {
    margin-left: 13rem !important;
  }

  .gt-xs\:mt-56 {
    margin-top: 14rem !important;
  }

  .gt-xs\:mr-56 {
    margin-right: 14rem !important;
  }

  .gt-xs\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .gt-xs\:ml-56 {
    margin-left: 14rem !important;
  }

  .gt-xs\:mt-60 {
    margin-top: 15rem !important;
  }

  .gt-xs\:mr-60 {
    margin-right: 15rem !important;
  }

  .gt-xs\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .gt-xs\:ml-60 {
    margin-left: 15rem !important;
  }

  .gt-xs\:mt-64 {
    margin-top: 16rem !important;
  }

  .gt-xs\:mr-64 {
    margin-right: 16rem !important;
  }

  .gt-xs\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .gt-xs\:ml-64 {
    margin-left: 16rem !important;
  }

  .gt-xs\:mt-72 {
    margin-top: 18rem !important;
  }

  .gt-xs\:mr-72 {
    margin-right: 18rem !important;
  }

  .gt-xs\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .gt-xs\:ml-72 {
    margin-left: 18rem !important;
  }

  .gt-xs\:mt-80 {
    margin-top: 20rem !important;
  }

  .gt-xs\:mr-80 {
    margin-right: 20rem !important;
  }

  .gt-xs\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .gt-xs\:ml-80 {
    margin-left: 20rem !important;
  }

  .gt-xs\:mt-90 {
    margin-top: 24rem !important;
  }

  .gt-xs\:mr-90 {
    margin-right: 24rem !important;
  }

  .gt-xs\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .gt-xs\:ml-90 {
    margin-left: 24rem !important;
  }

  .gt-xs\:mt-96 {
    margin-top: 24rem !important;
  }

  .gt-xs\:mr-96 {
    margin-right: 24rem !important;
  }

  .gt-xs\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .gt-xs\:ml-96 {
    margin-left: 24rem !important;
  }

  .gt-xs\:mt-100 {
    margin-top: 25rem !important;
  }

  .gt-xs\:mr-100 {
    margin-right: 25rem !important;
  }

  .gt-xs\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .gt-xs\:ml-100 {
    margin-left: 25rem !important;
  }

  .gt-xs\:mt-120 {
    margin-top: 30rem !important;
  }

  .gt-xs\:mr-120 {
    margin-right: 30rem !important;
  }

  .gt-xs\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .gt-xs\:ml-120 {
    margin-left: 30rem !important;
  }

  .gt-xs\:mt-128 {
    margin-top: 32rem !important;
  }

  .gt-xs\:mr-128 {
    margin-right: 32rem !important;
  }

  .gt-xs\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .gt-xs\:ml-128 {
    margin-left: 32rem !important;
  }

  .gt-xs\:mt-140 {
    margin-top: 35rem !important;
  }

  .gt-xs\:mr-140 {
    margin-right: 35rem !important;
  }

  .gt-xs\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .gt-xs\:ml-140 {
    margin-left: 35rem !important;
  }

  .gt-xs\:mt-160 {
    margin-top: 40rem !important;
  }

  .gt-xs\:mr-160 {
    margin-right: 40rem !important;
  }

  .gt-xs\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .gt-xs\:ml-160 {
    margin-left: 40rem !important;
  }

  .gt-xs\:mt-180 {
    margin-top: 45rem !important;
  }

  .gt-xs\:mr-180 {
    margin-right: 45rem !important;
  }

  .gt-xs\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .gt-xs\:ml-180 {
    margin-left: 45rem !important;
  }

  .gt-xs\:mt-192 {
    margin-top: 48rem !important;
  }

  .gt-xs\:mr-192 {
    margin-right: 48rem !important;
  }

  .gt-xs\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .gt-xs\:ml-192 {
    margin-left: 48rem !important;
  }

  .gt-xs\:mt-200 {
    margin-top: 50rem !important;
  }

  .gt-xs\:mr-200 {
    margin-right: 50rem !important;
  }

  .gt-xs\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .gt-xs\:ml-200 {
    margin-left: 50rem !important;
  }

  .gt-xs\:mt-240 {
    margin-top: 60rem !important;
  }

  .gt-xs\:mr-240 {
    margin-right: 60rem !important;
  }

  .gt-xs\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .gt-xs\:ml-240 {
    margin-left: 60rem !important;
  }

  .gt-xs\:mt-256 {
    margin-top: 64rem !important;
  }

  .gt-xs\:mr-256 {
    margin-right: 64rem !important;
  }

  .gt-xs\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .gt-xs\:ml-256 {
    margin-left: 64rem !important;
  }

  .gt-xs\:mt-280 {
    margin-top: 70rem !important;
  }

  .gt-xs\:mr-280 {
    margin-right: 70rem !important;
  }

  .gt-xs\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .gt-xs\:ml-280 {
    margin-left: 70rem !important;
  }

  .gt-xs\:mt-320 {
    margin-top: 80rem !important;
  }

  .gt-xs\:mr-320 {
    margin-right: 80rem !important;
  }

  .gt-xs\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .gt-xs\:ml-320 {
    margin-left: 80rem !important;
  }

  .gt-xs\:mt-360 {
    margin-top: 90rem !important;
  }

  .gt-xs\:mr-360 {
    margin-right: 90rem !important;
  }

  .gt-xs\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .gt-xs\:ml-360 {
    margin-left: 90rem !important;
  }

  .gt-xs\:mt-400 {
    margin-top: 100rem !important;
  }

  .gt-xs\:mr-400 {
    margin-right: 100rem !important;
  }

  .gt-xs\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .gt-xs\:ml-400 {
    margin-left: 100rem !important;
  }

  .gt-xs\:mt-480 {
    margin-top: 120rem !important;
  }

  .gt-xs\:mr-480 {
    margin-right: 120rem !important;
  }

  .gt-xs\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .gt-xs\:ml-480 {
    margin-left: 120rem !important;
  }

  .gt-xs\:mt-auto {
    margin-top: auto !important;
  }

  .gt-xs\:mr-auto {
    margin-right: auto !important;
  }

  .gt-xs\:mb-auto {
    margin-bottom: auto !important;
  }

  .gt-xs\:ml-auto {
    margin-left: auto !important;
  }

  .gt-xs\:mt-px {
    margin-top: 1px !important;
  }

  .gt-xs\:mr-px {
    margin-right: 1px !important;
  }

  .gt-xs\:mb-px {
    margin-bottom: 1px !important;
  }

  .gt-xs\:ml-px {
    margin-left: 1px !important;
  }

  .gt-xs\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .gt-xs\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .gt-xs\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .gt-xs\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .gt-xs\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .gt-xs\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .gt-xs\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .gt-xs\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .gt-xs\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .gt-xs\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .gt-xs\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .gt-xs\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .gt-xs\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .gt-xs\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .gt-xs\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .gt-xs\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .gt-xs\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .gt-xs\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .gt-xs\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .gt-xs\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .gt-xs\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .gt-xs\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .gt-xs\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .gt-xs\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .gt-xs\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .gt-xs\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .gt-xs\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .gt-xs\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .gt-xs\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .gt-xs\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .gt-xs\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .gt-xs\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .gt-xs\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .gt-xs\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .gt-xs\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .gt-xs\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .gt-xs\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .gt-xs\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .gt-xs\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .gt-xs\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .gt-xs\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .gt-xs\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .gt-xs\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .gt-xs\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .gt-xs\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .gt-xs\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .gt-xs\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .gt-xs\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .gt-xs\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .gt-xs\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .gt-xs\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .gt-xs\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .gt-xs\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .gt-xs\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .gt-xs\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .gt-xs\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .gt-xs\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .gt-xs\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .gt-xs\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .gt-xs\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .gt-xs\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .gt-xs\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .gt-xs\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .gt-xs\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .gt-xs\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .gt-xs\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .gt-xs\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .gt-xs\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .gt-xs\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .gt-xs\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .gt-xs\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .gt-xs\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .gt-xs\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .gt-xs\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .gt-xs\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .gt-xs\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .gt-xs\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .gt-xs\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .gt-xs\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .gt-xs\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .gt-xs\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .gt-xs\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .gt-xs\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .gt-xs\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .gt-xs\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .gt-xs\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .gt-xs\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .gt-xs\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .gt-xs\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .gt-xs\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .gt-xs\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .gt-xs\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .gt-xs\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .gt-xs\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .gt-xs\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .gt-xs\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .gt-xs\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .gt-xs\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .gt-xs\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .gt-xs\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .gt-xs\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .gt-xs\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .gt-xs\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .gt-xs\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .gt-xs\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .gt-xs\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .gt-xs\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .gt-xs\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .gt-xs\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .gt-xs\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .gt-xs\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .gt-xs\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .gt-xs\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .gt-xs\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .gt-xs\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .gt-xs\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .gt-xs\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .gt-xs\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .gt-xs\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .gt-xs\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .gt-xs\:mt-full {
    margin-top: 100% !important;
  }

  .gt-xs\:mr-full {
    margin-right: 100% !important;
  }

  .gt-xs\:mb-full {
    margin-bottom: 100% !important;
  }

  .gt-xs\:ml-full {
    margin-left: 100% !important;
  }

  .gt-xs\:mt-2px {
    margin-top: 2px !important;
  }

  .gt-xs\:mr-2px {
    margin-right: 2px !important;
  }

  .gt-xs\:mb-2px {
    margin-bottom: 2px !important;
  }

  .gt-xs\:ml-2px {
    margin-left: 2px !important;
  }

  .gt-xs\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .gt-xs\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .gt-xs\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .gt-xs\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .gt-xs\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .gt-xs\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .gt-xs\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .gt-xs\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .gt-xs\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .gt-xs\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .gt-xs\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .gt-xs\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .gt-xs\:-mt-4 {
    margin-top: -1rem !important;
  }

  .gt-xs\:-mr-4 {
    margin-right: -1rem !important;
  }

  .gt-xs\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .gt-xs\:-ml-4 {
    margin-left: -1rem !important;
  }

  .gt-xs\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .gt-xs\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .gt-xs\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .gt-xs\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .gt-xs\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .gt-xs\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .gt-xs\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .gt-xs\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .gt-xs\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .gt-xs\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .gt-xs\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .gt-xs\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .gt-xs\:-mt-8 {
    margin-top: -2rem !important;
  }

  .gt-xs\:-mr-8 {
    margin-right: -2rem !important;
  }

  .gt-xs\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .gt-xs\:-ml-8 {
    margin-left: -2rem !important;
  }

  .gt-xs\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .gt-xs\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .gt-xs\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .gt-xs\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .gt-xs\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .gt-xs\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .gt-xs\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .gt-xs\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .gt-xs\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .gt-xs\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .gt-xs\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .gt-xs\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .gt-xs\:-mt-12 {
    margin-top: -3rem !important;
  }

  .gt-xs\:-mr-12 {
    margin-right: -3rem !important;
  }

  .gt-xs\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .gt-xs\:-ml-12 {
    margin-left: -3rem !important;
  }

  .gt-xs\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .gt-xs\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .gt-xs\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .gt-xs\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .gt-xs\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .gt-xs\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .gt-xs\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .gt-xs\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .gt-xs\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .gt-xs\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .gt-xs\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .gt-xs\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .gt-xs\:-mt-16 {
    margin-top: -4rem !important;
  }

  .gt-xs\:-mr-16 {
    margin-right: -4rem !important;
  }

  .gt-xs\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .gt-xs\:-ml-16 {
    margin-left: -4rem !important;
  }

  .gt-xs\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .gt-xs\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .gt-xs\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .gt-xs\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .gt-xs\:-mt-20 {
    margin-top: -5rem !important;
  }

  .gt-xs\:-mr-20 {
    margin-right: -5rem !important;
  }

  .gt-xs\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .gt-xs\:-ml-20 {
    margin-left: -5rem !important;
  }

  .gt-xs\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .gt-xs\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .gt-xs\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .gt-xs\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .gt-xs\:-mt-24 {
    margin-top: -6rem !important;
  }

  .gt-xs\:-mr-24 {
    margin-right: -6rem !important;
  }

  .gt-xs\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .gt-xs\:-ml-24 {
    margin-left: -6rem !important;
  }

  .gt-xs\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .gt-xs\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .gt-xs\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .gt-xs\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .gt-xs\:-mt-28 {
    margin-top: -7rem !important;
  }

  .gt-xs\:-mr-28 {
    margin-right: -7rem !important;
  }

  .gt-xs\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .gt-xs\:-ml-28 {
    margin-left: -7rem !important;
  }

  .gt-xs\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .gt-xs\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .gt-xs\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .gt-xs\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .gt-xs\:-mt-32 {
    margin-top: -8rem !important;
  }

  .gt-xs\:-mr-32 {
    margin-right: -8rem !important;
  }

  .gt-xs\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .gt-xs\:-ml-32 {
    margin-left: -8rem !important;
  }

  .gt-xs\:-mt-36 {
    margin-top: -9rem !important;
  }

  .gt-xs\:-mr-36 {
    margin-right: -9rem !important;
  }

  .gt-xs\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .gt-xs\:-ml-36 {
    margin-left: -9rem !important;
  }

  .gt-xs\:-mt-40 {
    margin-top: -10rem !important;
  }

  .gt-xs\:-mr-40 {
    margin-right: -10rem !important;
  }

  .gt-xs\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .gt-xs\:-ml-40 {
    margin-left: -10rem !important;
  }

  .gt-xs\:-mt-44 {
    margin-top: -11rem !important;
  }

  .gt-xs\:-mr-44 {
    margin-right: -11rem !important;
  }

  .gt-xs\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .gt-xs\:-ml-44 {
    margin-left: -11rem !important;
  }

  .gt-xs\:-mt-48 {
    margin-top: -12rem !important;
  }

  .gt-xs\:-mr-48 {
    margin-right: -12rem !important;
  }

  .gt-xs\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .gt-xs\:-ml-48 {
    margin-left: -12rem !important;
  }

  .gt-xs\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .gt-xs\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .gt-xs\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .gt-xs\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .gt-xs\:-mt-52 {
    margin-top: -13rem !important;
  }

  .gt-xs\:-mr-52 {
    margin-right: -13rem !important;
  }

  .gt-xs\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .gt-xs\:-ml-52 {
    margin-left: -13rem !important;
  }

  .gt-xs\:-mt-56 {
    margin-top: -14rem !important;
  }

  .gt-xs\:-mr-56 {
    margin-right: -14rem !important;
  }

  .gt-xs\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .gt-xs\:-ml-56 {
    margin-left: -14rem !important;
  }

  .gt-xs\:-mt-60 {
    margin-top: -15rem !important;
  }

  .gt-xs\:-mr-60 {
    margin-right: -15rem !important;
  }

  .gt-xs\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .gt-xs\:-ml-60 {
    margin-left: -15rem !important;
  }

  .gt-xs\:-mt-64 {
    margin-top: -16rem !important;
  }

  .gt-xs\:-mr-64 {
    margin-right: -16rem !important;
  }

  .gt-xs\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .gt-xs\:-ml-64 {
    margin-left: -16rem !important;
  }

  .gt-xs\:-mt-72 {
    margin-top: -18rem !important;
  }

  .gt-xs\:-mr-72 {
    margin-right: -18rem !important;
  }

  .gt-xs\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .gt-xs\:-ml-72 {
    margin-left: -18rem !important;
  }

  .gt-xs\:-mt-80 {
    margin-top: -20rem !important;
  }

  .gt-xs\:-mr-80 {
    margin-right: -20rem !important;
  }

  .gt-xs\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .gt-xs\:-ml-80 {
    margin-left: -20rem !important;
  }

  .gt-xs\:-mt-90 {
    margin-top: -24rem !important;
  }

  .gt-xs\:-mr-90 {
    margin-right: -24rem !important;
  }

  .gt-xs\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .gt-xs\:-ml-90 {
    margin-left: -24rem !important;
  }

  .gt-xs\:-mt-96 {
    margin-top: -24rem !important;
  }

  .gt-xs\:-mr-96 {
    margin-right: -24rem !important;
  }

  .gt-xs\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .gt-xs\:-ml-96 {
    margin-left: -24rem !important;
  }

  .gt-xs\:-mt-100 {
    margin-top: -25rem !important;
  }

  .gt-xs\:-mr-100 {
    margin-right: -25rem !important;
  }

  .gt-xs\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .gt-xs\:-ml-100 {
    margin-left: -25rem !important;
  }

  .gt-xs\:-mt-120 {
    margin-top: -30rem !important;
  }

  .gt-xs\:-mr-120 {
    margin-right: -30rem !important;
  }

  .gt-xs\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .gt-xs\:-ml-120 {
    margin-left: -30rem !important;
  }

  .gt-xs\:-mt-128 {
    margin-top: -32rem !important;
  }

  .gt-xs\:-mr-128 {
    margin-right: -32rem !important;
  }

  .gt-xs\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .gt-xs\:-ml-128 {
    margin-left: -32rem !important;
  }

  .gt-xs\:-mt-140 {
    margin-top: -35rem !important;
  }

  .gt-xs\:-mr-140 {
    margin-right: -35rem !important;
  }

  .gt-xs\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .gt-xs\:-ml-140 {
    margin-left: -35rem !important;
  }

  .gt-xs\:-mt-160 {
    margin-top: -40rem !important;
  }

  .gt-xs\:-mr-160 {
    margin-right: -40rem !important;
  }

  .gt-xs\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .gt-xs\:-ml-160 {
    margin-left: -40rem !important;
  }

  .gt-xs\:-mt-180 {
    margin-top: -45rem !important;
  }

  .gt-xs\:-mr-180 {
    margin-right: -45rem !important;
  }

  .gt-xs\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .gt-xs\:-ml-180 {
    margin-left: -45rem !important;
  }

  .gt-xs\:-mt-192 {
    margin-top: -48rem !important;
  }

  .gt-xs\:-mr-192 {
    margin-right: -48rem !important;
  }

  .gt-xs\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .gt-xs\:-ml-192 {
    margin-left: -48rem !important;
  }

  .gt-xs\:-mt-200 {
    margin-top: -50rem !important;
  }

  .gt-xs\:-mr-200 {
    margin-right: -50rem !important;
  }

  .gt-xs\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .gt-xs\:-ml-200 {
    margin-left: -50rem !important;
  }

  .gt-xs\:-mt-240 {
    margin-top: -60rem !important;
  }

  .gt-xs\:-mr-240 {
    margin-right: -60rem !important;
  }

  .gt-xs\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .gt-xs\:-ml-240 {
    margin-left: -60rem !important;
  }

  .gt-xs\:-mt-256 {
    margin-top: -64rem !important;
  }

  .gt-xs\:-mr-256 {
    margin-right: -64rem !important;
  }

  .gt-xs\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .gt-xs\:-ml-256 {
    margin-left: -64rem !important;
  }

  .gt-xs\:-mt-280 {
    margin-top: -70rem !important;
  }

  .gt-xs\:-mr-280 {
    margin-right: -70rem !important;
  }

  .gt-xs\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .gt-xs\:-ml-280 {
    margin-left: -70rem !important;
  }

  .gt-xs\:-mt-320 {
    margin-top: -80rem !important;
  }

  .gt-xs\:-mr-320 {
    margin-right: -80rem !important;
  }

  .gt-xs\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .gt-xs\:-ml-320 {
    margin-left: -80rem !important;
  }

  .gt-xs\:-mt-360 {
    margin-top: -90rem !important;
  }

  .gt-xs\:-mr-360 {
    margin-right: -90rem !important;
  }

  .gt-xs\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .gt-xs\:-ml-360 {
    margin-left: -90rem !important;
  }

  .gt-xs\:-mt-400 {
    margin-top: -100rem !important;
  }

  .gt-xs\:-mr-400 {
    margin-right: -100rem !important;
  }

  .gt-xs\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .gt-xs\:-ml-400 {
    margin-left: -100rem !important;
  }

  .gt-xs\:-mt-480 {
    margin-top: -120rem !important;
  }

  .gt-xs\:-mr-480 {
    margin-right: -120rem !important;
  }

  .gt-xs\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .gt-xs\:-ml-480 {
    margin-left: -120rem !important;
  }

  .gt-xs\:-mt-px {
    margin-top: -1px !important;
  }

  .gt-xs\:-mr-px {
    margin-right: -1px !important;
  }

  .gt-xs\:-mb-px {
    margin-bottom: -1px !important;
  }

  .gt-xs\:-ml-px {
    margin-left: -1px !important;
  }

  .gt-xs\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .gt-xs\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .gt-xs\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .gt-xs\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .gt-xs\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .gt-xs\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .gt-xs\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .gt-xs\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .gt-xs\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .gt-xs\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .gt-xs\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .gt-xs\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .gt-xs\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .gt-xs\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .gt-xs\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .gt-xs\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .gt-xs\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .gt-xs\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .gt-xs\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .gt-xs\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .gt-xs\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .gt-xs\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .gt-xs\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .gt-xs\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .gt-xs\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .gt-xs\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .gt-xs\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .gt-xs\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .gt-xs\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .gt-xs\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .gt-xs\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .gt-xs\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .gt-xs\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .gt-xs\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .gt-xs\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .gt-xs\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .gt-xs\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .gt-xs\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .gt-xs\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .gt-xs\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .gt-xs\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .gt-xs\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .gt-xs\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .gt-xs\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .gt-xs\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .gt-xs\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .gt-xs\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .gt-xs\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .gt-xs\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .gt-xs\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .gt-xs\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .gt-xs\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .gt-xs\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .gt-xs\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .gt-xs\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .gt-xs\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .gt-xs\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .gt-xs\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .gt-xs\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .gt-xs\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .gt-xs\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .gt-xs\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .gt-xs\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .gt-xs\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .gt-xs\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .gt-xs\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .gt-xs\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .gt-xs\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .gt-xs\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .gt-xs\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .gt-xs\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .gt-xs\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .gt-xs\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .gt-xs\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .gt-xs\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .gt-xs\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .gt-xs\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .gt-xs\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .gt-xs\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .gt-xs\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .gt-xs\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .gt-xs\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .gt-xs\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .gt-xs\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .gt-xs\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .gt-xs\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .gt-xs\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .gt-xs\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .gt-xs\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .gt-xs\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .gt-xs\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .gt-xs\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .gt-xs\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .gt-xs\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .gt-xs\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .gt-xs\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .gt-xs\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .gt-xs\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .gt-xs\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .gt-xs\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .gt-xs\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .gt-xs\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .gt-xs\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .gt-xs\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .gt-xs\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .gt-xs\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .gt-xs\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .gt-xs\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .gt-xs\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .gt-xs\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .gt-xs\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .gt-xs\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .gt-xs\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .gt-xs\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .gt-xs\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .gt-xs\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .gt-xs\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .gt-xs\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .gt-xs\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .gt-xs\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .gt-xs\:-mt-full {
    margin-top: -100% !important;
  }

  .gt-xs\:-mr-full {
    margin-right: -100% !important;
  }

  .gt-xs\:-mb-full {
    margin-bottom: -100% !important;
  }

  .gt-xs\:-ml-full {
    margin-left: -100% !important;
  }

  .gt-xs\:-mt-2px {
    margin-top: -2px !important;
  }

  .gt-xs\:-mr-2px {
    margin-right: -2px !important;
  }

  .gt-xs\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .gt-xs\:-ml-2px {
    margin-left: -2px !important;
  }

  .gt-xs\:max-h-0 {
    max-height: 0 !important;
  }

  .gt-xs\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .gt-xs\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .gt-xs\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .gt-xs\:max-h-4 {
    max-height: 1rem !important;
  }

  .gt-xs\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .gt-xs\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .gt-xs\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .gt-xs\:max-h-8 {
    max-height: 2rem !important;
  }

  .gt-xs\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .gt-xs\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .gt-xs\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .gt-xs\:max-h-12 {
    max-height: 3rem !important;
  }

  .gt-xs\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .gt-xs\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .gt-xs\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .gt-xs\:max-h-16 {
    max-height: 4rem !important;
  }

  .gt-xs\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .gt-xs\:max-h-20 {
    max-height: 5rem !important;
  }

  .gt-xs\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .gt-xs\:max-h-24 {
    max-height: 6rem !important;
  }

  .gt-xs\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .gt-xs\:max-h-28 {
    max-height: 7rem !important;
  }

  .gt-xs\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .gt-xs\:max-h-32 {
    max-height: 8rem !important;
  }

  .gt-xs\:max-h-36 {
    max-height: 9rem !important;
  }

  .gt-xs\:max-h-40 {
    max-height: 10rem !important;
  }

  .gt-xs\:max-h-44 {
    max-height: 11rem !important;
  }

  .gt-xs\:max-h-48 {
    max-height: 12rem !important;
  }

  .gt-xs\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .gt-xs\:max-h-52 {
    max-height: 13rem !important;
  }

  .gt-xs\:max-h-56 {
    max-height: 14rem !important;
  }

  .gt-xs\:max-h-60 {
    max-height: 15rem !important;
  }

  .gt-xs\:max-h-64 {
    max-height: 16rem !important;
  }

  .gt-xs\:max-h-72 {
    max-height: 18rem !important;
  }

  .gt-xs\:max-h-80 {
    max-height: 20rem !important;
  }

  .gt-xs\:max-h-90 {
    max-height: 24rem !important;
  }

  .gt-xs\:max-h-96 {
    max-height: 24rem !important;
  }

  .gt-xs\:max-h-100 {
    max-height: 25rem !important;
  }

  .gt-xs\:max-h-120 {
    max-height: 30rem !important;
  }

  .gt-xs\:max-h-128 {
    max-height: 32rem !important;
  }

  .gt-xs\:max-h-140 {
    max-height: 35rem !important;
  }

  .gt-xs\:max-h-160 {
    max-height: 40rem !important;
  }

  .gt-xs\:max-h-180 {
    max-height: 45rem !important;
  }

  .gt-xs\:max-h-192 {
    max-height: 48rem !important;
  }

  .gt-xs\:max-h-200 {
    max-height: 50rem !important;
  }

  .gt-xs\:max-h-240 {
    max-height: 60rem !important;
  }

  .gt-xs\:max-h-256 {
    max-height: 64rem !important;
  }

  .gt-xs\:max-h-280 {
    max-height: 70rem !important;
  }

  .gt-xs\:max-h-320 {
    max-height: 80rem !important;
  }

  .gt-xs\:max-h-360 {
    max-height: 90rem !important;
  }

  .gt-xs\:max-h-400 {
    max-height: 100rem !important;
  }

  .gt-xs\:max-h-480 {
    max-height: 120rem !important;
  }

  .gt-xs\:max-h-screen {
    max-height: 100vh !important;
  }

  .gt-xs\:max-h-px {
    max-height: 1px !important;
  }

  .gt-xs\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .gt-xs\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .gt-xs\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .gt-xs\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .gt-xs\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .gt-xs\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .gt-xs\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .gt-xs\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .gt-xs\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .gt-xs\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .gt-xs\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .gt-xs\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .gt-xs\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .gt-xs\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .gt-xs\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .gt-xs\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .gt-xs\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .gt-xs\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .gt-xs\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .gt-xs\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .gt-xs\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .gt-xs\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .gt-xs\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .gt-xs\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .gt-xs\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .gt-xs\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .gt-xs\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .gt-xs\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .gt-xs\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .gt-xs\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .gt-xs\:max-h-full {
    max-height: 100% !important;
  }

  .gt-xs\:max-h-2px {
    max-height: 2px !important;
  }

  .gt-xs\:max-h-none {
    max-height: none !important;
  }

  .gt-xs\:max-w-0 {
    max-width: 0 !important;
  }

  .gt-xs\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .gt-xs\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .gt-xs\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .gt-xs\:max-w-4 {
    max-width: 1rem !important;
  }

  .gt-xs\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .gt-xs\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .gt-xs\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .gt-xs\:max-w-8 {
    max-width: 2rem !important;
  }

  .gt-xs\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .gt-xs\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .gt-xs\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .gt-xs\:max-w-12 {
    max-width: 3rem !important;
  }

  .gt-xs\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .gt-xs\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .gt-xs\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .gt-xs\:max-w-16 {
    max-width: 4rem !important;
  }

  .gt-xs\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .gt-xs\:max-w-20 {
    max-width: 5rem !important;
  }

  .gt-xs\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .gt-xs\:max-w-24 {
    max-width: 6rem !important;
  }

  .gt-xs\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .gt-xs\:max-w-28 {
    max-width: 7rem !important;
  }

  .gt-xs\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .gt-xs\:max-w-32 {
    max-width: 8rem !important;
  }

  .gt-xs\:max-w-36 {
    max-width: 9rem !important;
  }

  .gt-xs\:max-w-40 {
    max-width: 10rem !important;
  }

  .gt-xs\:max-w-44 {
    max-width: 11rem !important;
  }

  .gt-xs\:max-w-48 {
    max-width: 12rem !important;
  }

  .gt-xs\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .gt-xs\:max-w-52 {
    max-width: 13rem !important;
  }

  .gt-xs\:max-w-56 {
    max-width: 14rem !important;
  }

  .gt-xs\:max-w-60 {
    max-width: 15rem !important;
  }

  .gt-xs\:max-w-64 {
    max-width: 16rem !important;
  }

  .gt-xs\:max-w-72 {
    max-width: 18rem !important;
  }

  .gt-xs\:max-w-80 {
    max-width: 20rem !important;
  }

  .gt-xs\:max-w-90 {
    max-width: 24rem !important;
  }

  .gt-xs\:max-w-96 {
    max-width: 24rem !important;
  }

  .gt-xs\:max-w-100 {
    max-width: 25rem !important;
  }

  .gt-xs\:max-w-120 {
    max-width: 30rem !important;
  }

  .gt-xs\:max-w-128 {
    max-width: 32rem !important;
  }

  .gt-xs\:max-w-140 {
    max-width: 35rem !important;
  }

  .gt-xs\:max-w-160 {
    max-width: 40rem !important;
  }

  .gt-xs\:max-w-180 {
    max-width: 45rem !important;
  }

  .gt-xs\:max-w-192 {
    max-width: 48rem !important;
  }

  .gt-xs\:max-w-200 {
    max-width: 50rem !important;
  }

  .gt-xs\:max-w-240 {
    max-width: 60rem !important;
  }

  .gt-xs\:max-w-256 {
    max-width: 64rem !important;
  }

  .gt-xs\:max-w-280 {
    max-width: 70rem !important;
  }

  .gt-xs\:max-w-320 {
    max-width: 80rem !important;
  }

  .gt-xs\:max-w-360 {
    max-width: 90rem !important;
  }

  .gt-xs\:max-w-400 {
    max-width: 100rem !important;
  }

  .gt-xs\:max-w-480 {
    max-width: 120rem !important;
  }

  .gt-xs\:max-w-none {
    max-width: none !important;
  }

  .gt-xs\:max-w-xs {
    max-width: 20rem !important;
  }

  .gt-xs\:max-w-sm {
    max-width: 24rem !important;
  }

  .gt-xs\:max-w-md {
    max-width: 28rem !important;
  }

  .gt-xs\:max-w-lg {
    max-width: 32rem !important;
  }

  .gt-xs\:max-w-xl {
    max-width: 36rem !important;
  }

  .gt-xs\:max-w-2xl {
    max-width: 42rem !important;
  }

  .gt-xs\:max-w-3xl {
    max-width: 48rem !important;
  }

  .gt-xs\:max-w-4xl {
    max-width: 56rem !important;
  }

  .gt-xs\:max-w-5xl {
    max-width: 64rem !important;
  }

  .gt-xs\:max-w-6xl {
    max-width: 72rem !important;
  }

  .gt-xs\:max-w-7xl {
    max-width: 80rem !important;
  }

  .gt-xs\:max-w-full {
    max-width: 100% !important;
  }

  .gt-xs\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .gt-xs\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .gt-xs\:max-w-screen {
    max-width: 100vw !important;
  }

  .gt-xs\:max-w-px {
    max-width: 1px !important;
  }

  .gt-xs\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .gt-xs\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .gt-xs\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .gt-xs\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .gt-xs\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .gt-xs\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .gt-xs\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .gt-xs\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .gt-xs\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .gt-xs\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .gt-xs\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .gt-xs\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .gt-xs\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .gt-xs\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .gt-xs\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .gt-xs\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .gt-xs\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .gt-xs\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .gt-xs\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .gt-xs\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .gt-xs\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .gt-xs\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .gt-xs\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .gt-xs\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .gt-xs\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .gt-xs\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .gt-xs\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .gt-xs\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .gt-xs\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .gt-xs\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .gt-xs\:max-w-2px {
    max-width: 2px !important;
  }

  .gt-xs\:min-h-0 {
    min-height: 0 !important;
  }

  .gt-xs\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .gt-xs\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .gt-xs\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .gt-xs\:min-h-4 {
    min-height: 1rem !important;
  }

  .gt-xs\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .gt-xs\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .gt-xs\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .gt-xs\:min-h-8 {
    min-height: 2rem !important;
  }

  .gt-xs\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .gt-xs\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .gt-xs\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .gt-xs\:min-h-12 {
    min-height: 3rem !important;
  }

  .gt-xs\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .gt-xs\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .gt-xs\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .gt-xs\:min-h-16 {
    min-height: 4rem !important;
  }

  .gt-xs\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .gt-xs\:min-h-20 {
    min-height: 5rem !important;
  }

  .gt-xs\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .gt-xs\:min-h-24 {
    min-height: 6rem !important;
  }

  .gt-xs\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .gt-xs\:min-h-28 {
    min-height: 7rem !important;
  }

  .gt-xs\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .gt-xs\:min-h-32 {
    min-height: 8rem !important;
  }

  .gt-xs\:min-h-36 {
    min-height: 9rem !important;
  }

  .gt-xs\:min-h-40 {
    min-height: 10rem !important;
  }

  .gt-xs\:min-h-44 {
    min-height: 11rem !important;
  }

  .gt-xs\:min-h-48 {
    min-height: 12rem !important;
  }

  .gt-xs\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .gt-xs\:min-h-52 {
    min-height: 13rem !important;
  }

  .gt-xs\:min-h-56 {
    min-height: 14rem !important;
  }

  .gt-xs\:min-h-60 {
    min-height: 15rem !important;
  }

  .gt-xs\:min-h-64 {
    min-height: 16rem !important;
  }

  .gt-xs\:min-h-72 {
    min-height: 18rem !important;
  }

  .gt-xs\:min-h-80 {
    min-height: 20rem !important;
  }

  .gt-xs\:min-h-90 {
    min-height: 24rem !important;
  }

  .gt-xs\:min-h-96 {
    min-height: 24rem !important;
  }

  .gt-xs\:min-h-100 {
    min-height: 25rem !important;
  }

  .gt-xs\:min-h-120 {
    min-height: 30rem !important;
  }

  .gt-xs\:min-h-128 {
    min-height: 32rem !important;
  }

  .gt-xs\:min-h-140 {
    min-height: 35rem !important;
  }

  .gt-xs\:min-h-160 {
    min-height: 40rem !important;
  }

  .gt-xs\:min-h-180 {
    min-height: 45rem !important;
  }

  .gt-xs\:min-h-192 {
    min-height: 48rem !important;
  }

  .gt-xs\:min-h-200 {
    min-height: 50rem !important;
  }

  .gt-xs\:min-h-240 {
    min-height: 60rem !important;
  }

  .gt-xs\:min-h-256 {
    min-height: 64rem !important;
  }

  .gt-xs\:min-h-280 {
    min-height: 70rem !important;
  }

  .gt-xs\:min-h-320 {
    min-height: 80rem !important;
  }

  .gt-xs\:min-h-360 {
    min-height: 90rem !important;
  }

  .gt-xs\:min-h-400 {
    min-height: 100rem !important;
  }

  .gt-xs\:min-h-480 {
    min-height: 120rem !important;
  }

  .gt-xs\:min-h-full {
    min-height: 100% !important;
  }

  .gt-xs\:min-h-screen {
    min-height: 100vh !important;
  }

  .gt-xs\:min-h-px {
    min-height: 1px !important;
  }

  .gt-xs\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .gt-xs\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .gt-xs\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .gt-xs\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .gt-xs\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .gt-xs\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .gt-xs\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .gt-xs\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .gt-xs\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .gt-xs\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .gt-xs\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .gt-xs\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .gt-xs\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .gt-xs\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .gt-xs\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .gt-xs\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .gt-xs\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .gt-xs\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .gt-xs\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .gt-xs\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .gt-xs\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .gt-xs\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .gt-xs\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .gt-xs\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .gt-xs\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .gt-xs\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .gt-xs\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .gt-xs\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .gt-xs\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .gt-xs\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .gt-xs\:min-h-2px {
    min-height: 2px !important;
  }

  .gt-xs\:min-w-0 {
    min-width: 0 !important;
  }

  .gt-xs\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .gt-xs\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .gt-xs\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .gt-xs\:min-w-4 {
    min-width: 1rem !important;
  }

  .gt-xs\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .gt-xs\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .gt-xs\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .gt-xs\:min-w-8 {
    min-width: 2rem !important;
  }

  .gt-xs\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .gt-xs\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .gt-xs\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .gt-xs\:min-w-12 {
    min-width: 3rem !important;
  }

  .gt-xs\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .gt-xs\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .gt-xs\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .gt-xs\:min-w-16 {
    min-width: 4rem !important;
  }

  .gt-xs\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .gt-xs\:min-w-20 {
    min-width: 5rem !important;
  }

  .gt-xs\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .gt-xs\:min-w-24 {
    min-width: 6rem !important;
  }

  .gt-xs\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .gt-xs\:min-w-28 {
    min-width: 7rem !important;
  }

  .gt-xs\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .gt-xs\:min-w-32 {
    min-width: 8rem !important;
  }

  .gt-xs\:min-w-36 {
    min-width: 9rem !important;
  }

  .gt-xs\:min-w-40 {
    min-width: 10rem !important;
  }

  .gt-xs\:min-w-44 {
    min-width: 11rem !important;
  }

  .gt-xs\:min-w-48 {
    min-width: 12rem !important;
  }

  .gt-xs\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .gt-xs\:min-w-52 {
    min-width: 13rem !important;
  }

  .gt-xs\:min-w-56 {
    min-width: 14rem !important;
  }

  .gt-xs\:min-w-60 {
    min-width: 15rem !important;
  }

  .gt-xs\:min-w-64 {
    min-width: 16rem !important;
  }

  .gt-xs\:min-w-72 {
    min-width: 18rem !important;
  }

  .gt-xs\:min-w-80 {
    min-width: 20rem !important;
  }

  .gt-xs\:min-w-90 {
    min-width: 24rem !important;
  }

  .gt-xs\:min-w-96 {
    min-width: 24rem !important;
  }

  .gt-xs\:min-w-100 {
    min-width: 25rem !important;
  }

  .gt-xs\:min-w-120 {
    min-width: 30rem !important;
  }

  .gt-xs\:min-w-128 {
    min-width: 32rem !important;
  }

  .gt-xs\:min-w-140 {
    min-width: 35rem !important;
  }

  .gt-xs\:min-w-160 {
    min-width: 40rem !important;
  }

  .gt-xs\:min-w-180 {
    min-width: 45rem !important;
  }

  .gt-xs\:min-w-192 {
    min-width: 48rem !important;
  }

  .gt-xs\:min-w-200 {
    min-width: 50rem !important;
  }

  .gt-xs\:min-w-240 {
    min-width: 60rem !important;
  }

  .gt-xs\:min-w-256 {
    min-width: 64rem !important;
  }

  .gt-xs\:min-w-280 {
    min-width: 70rem !important;
  }

  .gt-xs\:min-w-320 {
    min-width: 80rem !important;
  }

  .gt-xs\:min-w-360 {
    min-width: 90rem !important;
  }

  .gt-xs\:min-w-400 {
    min-width: 100rem !important;
  }

  .gt-xs\:min-w-480 {
    min-width: 120rem !important;
  }

  .gt-xs\:min-w-full {
    min-width: 100% !important;
  }

  .gt-xs\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .gt-xs\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .gt-xs\:min-w-screen {
    min-width: 100vw !important;
  }

  .gt-xs\:min-w-px {
    min-width: 1px !important;
  }

  .gt-xs\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .gt-xs\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .gt-xs\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .gt-xs\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .gt-xs\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .gt-xs\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .gt-xs\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .gt-xs\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .gt-xs\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .gt-xs\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .gt-xs\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .gt-xs\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .gt-xs\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .gt-xs\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .gt-xs\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .gt-xs\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .gt-xs\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .gt-xs\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .gt-xs\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .gt-xs\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .gt-xs\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .gt-xs\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .gt-xs\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .gt-xs\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .gt-xs\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .gt-xs\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .gt-xs\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .gt-xs\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .gt-xs\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .gt-xs\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .gt-xs\:min-w-2px {
    min-width: 2px !important;
  }

  .gt-xs\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .gt-xs\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .gt-xs\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .gt-xs\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .gt-xs\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .gt-xs\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .gt-xs\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .gt-xs\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .gt-xs\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .gt-xs\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .gt-xs\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .gt-xs\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .gt-xs\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .gt-xs\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .gt-xs\:opacity-0 {
    opacity: 0 !important;
  }

  .gt-xs\:opacity-12 {
    opacity: 0.12 !important;
  }

  .gt-xs\:opacity-25 {
    opacity: 0.25 !important;
  }

  .gt-xs\:opacity-38 {
    opacity: 0.38 !important;
  }

  .gt-xs\:opacity-50 {
    opacity: 0.5 !important;
  }

  .gt-xs\:opacity-54 {
    opacity: 0.54 !important;
  }

  .gt-xs\:opacity-70 {
    opacity: 0.7 !important;
  }

  .gt-xs\:opacity-75 {
    opacity: 0.75 !important;
  }

  .gt-xs\:opacity-84 {
    opacity: 0.84 !important;
  }

  .gt-xs\:opacity-100 {
    opacity: 1 !important;
  }

  .gt-xs\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .gt-xs\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .gt-xs\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .gt-xs\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .gt-xs\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .gt-xs\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .gt-xs\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .gt-xs\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .gt-xs\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .gt-xs\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .gt-xs\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .gt-xs\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .gt-xs\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .gt-xs\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .gt-xs\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .gt-xs\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .gt-xs\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .gt-xs\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .gt-xs\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .gt-xs\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .gt-xs\:overflow-auto {
    overflow: auto !important;
  }

  .gt-xs\:overflow-hidden {
    overflow: hidden !important;
  }

  .gt-xs\:overflow-visible {
    overflow: visible !important;
  }

  .gt-xs\:overflow-scroll {
    overflow: scroll !important;
  }

  .gt-xs\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .gt-xs\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .gt-xs\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .gt-xs\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .gt-xs\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .gt-xs\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .gt-xs\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .gt-xs\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .gt-xs\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .gt-xs\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .gt-xs\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .gt-xs\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .gt-xs\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .gt-xs\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .gt-xs\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .gt-xs\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .gt-xs\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .gt-xs\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .gt-xs\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .gt-xs\:p-0 {
    padding: 0 !important;
  }

  .gt-xs\:p-1 {
    padding: 0.25rem !important;
  }

  .gt-xs\:p-2 {
    padding: 0.5rem !important;
  }

  .gt-xs\:p-3 {
    padding: 0.75rem !important;
  }

  .gt-xs\:p-4 {
    padding: 1rem !important;
  }

  .gt-xs\:p-5 {
    padding: 1.25rem !important;
  }

  .gt-xs\:p-6 {
    padding: 1.5rem !important;
  }

  .gt-xs\:p-7 {
    padding: 1.75rem !important;
  }

  .gt-xs\:p-8 {
    padding: 2rem !important;
  }

  .gt-xs\:p-9 {
    padding: 2.25rem !important;
  }

  .gt-xs\:p-10 {
    padding: 2.5rem !important;
  }

  .gt-xs\:p-11 {
    padding: 2.75rem !important;
  }

  .gt-xs\:p-12 {
    padding: 3rem !important;
  }

  .gt-xs\:p-13 {
    padding: 3.25rem !important;
  }

  .gt-xs\:p-14 {
    padding: 3.5rem !important;
  }

  .gt-xs\:p-15 {
    padding: 3.75rem !important;
  }

  .gt-xs\:p-16 {
    padding: 4rem !important;
  }

  .gt-xs\:p-18 {
    padding: 4.5rem !important;
  }

  .gt-xs\:p-20 {
    padding: 5rem !important;
  }

  .gt-xs\:p-22 {
    padding: 5.5rem !important;
  }

  .gt-xs\:p-24 {
    padding: 6rem !important;
  }

  .gt-xs\:p-26 {
    padding: 6.5rem !important;
  }

  .gt-xs\:p-28 {
    padding: 7rem !important;
  }

  .gt-xs\:p-30 {
    padding: 7.5rem !important;
  }

  .gt-xs\:p-32 {
    padding: 8rem !important;
  }

  .gt-xs\:p-36 {
    padding: 9rem !important;
  }

  .gt-xs\:p-40 {
    padding: 10rem !important;
  }

  .gt-xs\:p-44 {
    padding: 11rem !important;
  }

  .gt-xs\:p-48 {
    padding: 12rem !important;
  }

  .gt-xs\:p-50 {
    padding: 12.5rem !important;
  }

  .gt-xs\:p-52 {
    padding: 13rem !important;
  }

  .gt-xs\:p-56 {
    padding: 14rem !important;
  }

  .gt-xs\:p-60 {
    padding: 15rem !important;
  }

  .gt-xs\:p-64 {
    padding: 16rem !important;
  }

  .gt-xs\:p-72 {
    padding: 18rem !important;
  }

  .gt-xs\:p-80 {
    padding: 20rem !important;
  }

  .gt-xs\:p-90 {
    padding: 24rem !important;
  }

  .gt-xs\:p-96 {
    padding: 24rem !important;
  }

  .gt-xs\:p-100 {
    padding: 25rem !important;
  }

  .gt-xs\:p-120 {
    padding: 30rem !important;
  }

  .gt-xs\:p-128 {
    padding: 32rem !important;
  }

  .gt-xs\:p-140 {
    padding: 35rem !important;
  }

  .gt-xs\:p-160 {
    padding: 40rem !important;
  }

  .gt-xs\:p-180 {
    padding: 45rem !important;
  }

  .gt-xs\:p-192 {
    padding: 48rem !important;
  }

  .gt-xs\:p-200 {
    padding: 50rem !important;
  }

  .gt-xs\:p-240 {
    padding: 60rem !important;
  }

  .gt-xs\:p-256 {
    padding: 64rem !important;
  }

  .gt-xs\:p-280 {
    padding: 70rem !important;
  }

  .gt-xs\:p-320 {
    padding: 80rem !important;
  }

  .gt-xs\:p-360 {
    padding: 90rem !important;
  }

  .gt-xs\:p-400 {
    padding: 100rem !important;
  }

  .gt-xs\:p-480 {
    padding: 120rem !important;
  }

  .gt-xs\:p-px {
    padding: 1px !important;
  }

  .gt-xs\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .gt-xs\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .gt-xs\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .gt-xs\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .gt-xs\:p-1\/2 {
    padding: 50% !important;
  }

  .gt-xs\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .gt-xs\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .gt-xs\:p-1\/4 {
    padding: 25% !important;
  }

  .gt-xs\:p-2\/4 {
    padding: 50% !important;
  }

  .gt-xs\:p-3\/4 {
    padding: 75% !important;
  }

  .gt-xs\:p-1\/5 {
    padding: 20% !important;
  }

  .gt-xs\:p-2\/5 {
    padding: 40% !important;
  }

  .gt-xs\:p-3\/5 {
    padding: 60% !important;
  }

  .gt-xs\:p-4\/5 {
    padding: 80% !important;
  }

  .gt-xs\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .gt-xs\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .gt-xs\:p-3\/6 {
    padding: 50% !important;
  }

  .gt-xs\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .gt-xs\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .gt-xs\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .gt-xs\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .gt-xs\:p-3\/12 {
    padding: 25% !important;
  }

  .gt-xs\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .gt-xs\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .gt-xs\:p-6\/12 {
    padding: 50% !important;
  }

  .gt-xs\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .gt-xs\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .gt-xs\:p-9\/12 {
    padding: 75% !important;
  }

  .gt-xs\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .gt-xs\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .gt-xs\:p-full {
    padding: 100% !important;
  }

  .gt-xs\:p-2px {
    padding: 2px !important;
  }

  .gt-xs\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .gt-xs\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .gt-xs\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .gt-xs\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .gt-xs\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .gt-xs\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .gt-xs\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .gt-xs\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .gt-xs\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .gt-xs\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .gt-xs\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .gt-xs\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .gt-xs\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .gt-xs\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .gt-xs\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .gt-xs\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .gt-xs\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .gt-xs\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .gt-xs\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .gt-xs\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .gt-xs\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .gt-xs\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .gt-xs\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .gt-xs\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .gt-xs\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .gt-xs\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .gt-xs\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .gt-xs\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .gt-xs\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .gt-xs\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .gt-xs\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .gt-xs\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .gt-xs\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .gt-xs\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .gt-xs\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .gt-xs\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .gt-xs\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .gt-xs\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .gt-xs\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .gt-xs\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .gt-xs\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .gt-xs\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .gt-xs\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .gt-xs\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .gt-xs\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .gt-xs\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .gt-xs\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .gt-xs\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .gt-xs\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .gt-xs\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .gt-xs\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .gt-xs\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .gt-xs\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .gt-xs\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .gt-xs\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .gt-xs\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .gt-xs\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .gt-xs\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .gt-xs\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .gt-xs\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .gt-xs\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .gt-xs\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .gt-xs\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .gt-xs\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .gt-xs\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .gt-xs\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .gt-xs\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .gt-xs\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .gt-xs\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .gt-xs\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .gt-xs\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .gt-xs\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .gt-xs\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .gt-xs\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .gt-xs\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .gt-xs\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .gt-xs\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .gt-xs\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .gt-xs\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .gt-xs\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .gt-xs\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .gt-xs\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .gt-xs\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .gt-xs\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .gt-xs\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .gt-xs\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .gt-xs\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .gt-xs\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .gt-xs\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .gt-xs\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .gt-xs\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .gt-xs\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .gt-xs\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .gt-xs\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .gt-xs\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .gt-xs\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .gt-xs\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .gt-xs\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .gt-xs\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .gt-xs\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .gt-xs\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .gt-xs\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .gt-xs\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .gt-xs\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .gt-xs\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .gt-xs\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .gt-xs\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .gt-xs\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .gt-xs\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .gt-xs\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .gt-xs\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .gt-xs\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .gt-xs\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .gt-xs\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .gt-xs\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .gt-xs\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .gt-xs\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-xs\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-xs\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .gt-xs\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .gt-xs\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .gt-xs\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .gt-xs\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .gt-xs\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .gt-xs\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-xs\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-xs\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .gt-xs\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .gt-xs\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .gt-xs\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .gt-xs\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .gt-xs\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .gt-xs\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .gt-xs\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .gt-xs\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .gt-xs\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .gt-xs\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .gt-xs\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .gt-xs\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .gt-xs\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .gt-xs\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-xs\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-xs\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .gt-xs\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .gt-xs\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .gt-xs\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .gt-xs\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .gt-xs\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .gt-xs\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .gt-xs\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .gt-xs\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .gt-xs\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .gt-xs\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .gt-xs\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .gt-xs\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .gt-xs\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .gt-xs\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-xs\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-xs\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .gt-xs\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .gt-xs\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .gt-xs\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .gt-xs\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .gt-xs\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .gt-xs\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .gt-xs\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .gt-xs\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .gt-xs\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .gt-xs\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .gt-xs\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .gt-xs\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .gt-xs\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .gt-xs\:pt-0 {
    padding-top: 0 !important;
  }

  .gt-xs\:pr-0 {
    padding-right: 0 !important;
  }

  .gt-xs\:pb-0 {
    padding-bottom: 0 !important;
  }

  .gt-xs\:pl-0 {
    padding-left: 0 !important;
  }

  .gt-xs\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .gt-xs\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .gt-xs\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .gt-xs\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .gt-xs\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .gt-xs\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .gt-xs\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .gt-xs\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .gt-xs\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .gt-xs\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .gt-xs\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .gt-xs\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .gt-xs\:pt-4 {
    padding-top: 1rem !important;
  }

  .gt-xs\:pr-4 {
    padding-right: 1rem !important;
  }

  .gt-xs\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .gt-xs\:pl-4 {
    padding-left: 1rem !important;
  }

  .gt-xs\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .gt-xs\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .gt-xs\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .gt-xs\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .gt-xs\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .gt-xs\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .gt-xs\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .gt-xs\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .gt-xs\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .gt-xs\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .gt-xs\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .gt-xs\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .gt-xs\:pt-8 {
    padding-top: 2rem !important;
  }

  .gt-xs\:pr-8 {
    padding-right: 2rem !important;
  }

  .gt-xs\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .gt-xs\:pl-8 {
    padding-left: 2rem !important;
  }

  .gt-xs\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .gt-xs\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .gt-xs\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .gt-xs\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .gt-xs\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .gt-xs\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .gt-xs\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .gt-xs\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .gt-xs\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .gt-xs\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .gt-xs\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .gt-xs\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .gt-xs\:pt-12 {
    padding-top: 3rem !important;
  }

  .gt-xs\:pr-12 {
    padding-right: 3rem !important;
  }

  .gt-xs\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .gt-xs\:pl-12 {
    padding-left: 3rem !important;
  }

  .gt-xs\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .gt-xs\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .gt-xs\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .gt-xs\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .gt-xs\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .gt-xs\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .gt-xs\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .gt-xs\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .gt-xs\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .gt-xs\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .gt-xs\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .gt-xs\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .gt-xs\:pt-16 {
    padding-top: 4rem !important;
  }

  .gt-xs\:pr-16 {
    padding-right: 4rem !important;
  }

  .gt-xs\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .gt-xs\:pl-16 {
    padding-left: 4rem !important;
  }

  .gt-xs\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .gt-xs\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .gt-xs\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .gt-xs\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .gt-xs\:pt-20 {
    padding-top: 5rem !important;
  }

  .gt-xs\:pr-20 {
    padding-right: 5rem !important;
  }

  .gt-xs\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .gt-xs\:pl-20 {
    padding-left: 5rem !important;
  }

  .gt-xs\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .gt-xs\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .gt-xs\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .gt-xs\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .gt-xs\:pt-24 {
    padding-top: 6rem !important;
  }

  .gt-xs\:pr-24 {
    padding-right: 6rem !important;
  }

  .gt-xs\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .gt-xs\:pl-24 {
    padding-left: 6rem !important;
  }

  .gt-xs\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .gt-xs\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .gt-xs\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .gt-xs\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .gt-xs\:pt-28 {
    padding-top: 7rem !important;
  }

  .gt-xs\:pr-28 {
    padding-right: 7rem !important;
  }

  .gt-xs\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .gt-xs\:pl-28 {
    padding-left: 7rem !important;
  }

  .gt-xs\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .gt-xs\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .gt-xs\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .gt-xs\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .gt-xs\:pt-32 {
    padding-top: 8rem !important;
  }

  .gt-xs\:pr-32 {
    padding-right: 8rem !important;
  }

  .gt-xs\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .gt-xs\:pl-32 {
    padding-left: 8rem !important;
  }

  .gt-xs\:pt-36 {
    padding-top: 9rem !important;
  }

  .gt-xs\:pr-36 {
    padding-right: 9rem !important;
  }

  .gt-xs\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .gt-xs\:pl-36 {
    padding-left: 9rem !important;
  }

  .gt-xs\:pt-40 {
    padding-top: 10rem !important;
  }

  .gt-xs\:pr-40 {
    padding-right: 10rem !important;
  }

  .gt-xs\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .gt-xs\:pl-40 {
    padding-left: 10rem !important;
  }

  .gt-xs\:pt-44 {
    padding-top: 11rem !important;
  }

  .gt-xs\:pr-44 {
    padding-right: 11rem !important;
  }

  .gt-xs\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .gt-xs\:pl-44 {
    padding-left: 11rem !important;
  }

  .gt-xs\:pt-48 {
    padding-top: 12rem !important;
  }

  .gt-xs\:pr-48 {
    padding-right: 12rem !important;
  }

  .gt-xs\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .gt-xs\:pl-48 {
    padding-left: 12rem !important;
  }

  .gt-xs\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .gt-xs\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .gt-xs\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .gt-xs\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .gt-xs\:pt-52 {
    padding-top: 13rem !important;
  }

  .gt-xs\:pr-52 {
    padding-right: 13rem !important;
  }

  .gt-xs\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .gt-xs\:pl-52 {
    padding-left: 13rem !important;
  }

  .gt-xs\:pt-56 {
    padding-top: 14rem !important;
  }

  .gt-xs\:pr-56 {
    padding-right: 14rem !important;
  }

  .gt-xs\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .gt-xs\:pl-56 {
    padding-left: 14rem !important;
  }

  .gt-xs\:pt-60 {
    padding-top: 15rem !important;
  }

  .gt-xs\:pr-60 {
    padding-right: 15rem !important;
  }

  .gt-xs\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .gt-xs\:pl-60 {
    padding-left: 15rem !important;
  }

  .gt-xs\:pt-64 {
    padding-top: 16rem !important;
  }

  .gt-xs\:pr-64 {
    padding-right: 16rem !important;
  }

  .gt-xs\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .gt-xs\:pl-64 {
    padding-left: 16rem !important;
  }

  .gt-xs\:pt-72 {
    padding-top: 18rem !important;
  }

  .gt-xs\:pr-72 {
    padding-right: 18rem !important;
  }

  .gt-xs\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .gt-xs\:pl-72 {
    padding-left: 18rem !important;
  }

  .gt-xs\:pt-80 {
    padding-top: 20rem !important;
  }

  .gt-xs\:pr-80 {
    padding-right: 20rem !important;
  }

  .gt-xs\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .gt-xs\:pl-80 {
    padding-left: 20rem !important;
  }

  .gt-xs\:pt-90 {
    padding-top: 24rem !important;
  }

  .gt-xs\:pr-90 {
    padding-right: 24rem !important;
  }

  .gt-xs\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .gt-xs\:pl-90 {
    padding-left: 24rem !important;
  }

  .gt-xs\:pt-96 {
    padding-top: 24rem !important;
  }

  .gt-xs\:pr-96 {
    padding-right: 24rem !important;
  }

  .gt-xs\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .gt-xs\:pl-96 {
    padding-left: 24rem !important;
  }

  .gt-xs\:pt-100 {
    padding-top: 25rem !important;
  }

  .gt-xs\:pr-100 {
    padding-right: 25rem !important;
  }

  .gt-xs\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .gt-xs\:pl-100 {
    padding-left: 25rem !important;
  }

  .gt-xs\:pt-120 {
    padding-top: 30rem !important;
  }

  .gt-xs\:pr-120 {
    padding-right: 30rem !important;
  }

  .gt-xs\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .gt-xs\:pl-120 {
    padding-left: 30rem !important;
  }

  .gt-xs\:pt-128 {
    padding-top: 32rem !important;
  }

  .gt-xs\:pr-128 {
    padding-right: 32rem !important;
  }

  .gt-xs\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .gt-xs\:pl-128 {
    padding-left: 32rem !important;
  }

  .gt-xs\:pt-140 {
    padding-top: 35rem !important;
  }

  .gt-xs\:pr-140 {
    padding-right: 35rem !important;
  }

  .gt-xs\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .gt-xs\:pl-140 {
    padding-left: 35rem !important;
  }

  .gt-xs\:pt-160 {
    padding-top: 40rem !important;
  }

  .gt-xs\:pr-160 {
    padding-right: 40rem !important;
  }

  .gt-xs\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .gt-xs\:pl-160 {
    padding-left: 40rem !important;
  }

  .gt-xs\:pt-180 {
    padding-top: 45rem !important;
  }

  .gt-xs\:pr-180 {
    padding-right: 45rem !important;
  }

  .gt-xs\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .gt-xs\:pl-180 {
    padding-left: 45rem !important;
  }

  .gt-xs\:pt-192 {
    padding-top: 48rem !important;
  }

  .gt-xs\:pr-192 {
    padding-right: 48rem !important;
  }

  .gt-xs\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .gt-xs\:pl-192 {
    padding-left: 48rem !important;
  }

  .gt-xs\:pt-200 {
    padding-top: 50rem !important;
  }

  .gt-xs\:pr-200 {
    padding-right: 50rem !important;
  }

  .gt-xs\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .gt-xs\:pl-200 {
    padding-left: 50rem !important;
  }

  .gt-xs\:pt-240 {
    padding-top: 60rem !important;
  }

  .gt-xs\:pr-240 {
    padding-right: 60rem !important;
  }

  .gt-xs\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .gt-xs\:pl-240 {
    padding-left: 60rem !important;
  }

  .gt-xs\:pt-256 {
    padding-top: 64rem !important;
  }

  .gt-xs\:pr-256 {
    padding-right: 64rem !important;
  }

  .gt-xs\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .gt-xs\:pl-256 {
    padding-left: 64rem !important;
  }

  .gt-xs\:pt-280 {
    padding-top: 70rem !important;
  }

  .gt-xs\:pr-280 {
    padding-right: 70rem !important;
  }

  .gt-xs\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .gt-xs\:pl-280 {
    padding-left: 70rem !important;
  }

  .gt-xs\:pt-320 {
    padding-top: 80rem !important;
  }

  .gt-xs\:pr-320 {
    padding-right: 80rem !important;
  }

  .gt-xs\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .gt-xs\:pl-320 {
    padding-left: 80rem !important;
  }

  .gt-xs\:pt-360 {
    padding-top: 90rem !important;
  }

  .gt-xs\:pr-360 {
    padding-right: 90rem !important;
  }

  .gt-xs\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .gt-xs\:pl-360 {
    padding-left: 90rem !important;
  }

  .gt-xs\:pt-400 {
    padding-top: 100rem !important;
  }

  .gt-xs\:pr-400 {
    padding-right: 100rem !important;
  }

  .gt-xs\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .gt-xs\:pl-400 {
    padding-left: 100rem !important;
  }

  .gt-xs\:pt-480 {
    padding-top: 120rem !important;
  }

  .gt-xs\:pr-480 {
    padding-right: 120rem !important;
  }

  .gt-xs\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .gt-xs\:pl-480 {
    padding-left: 120rem !important;
  }

  .gt-xs\:pt-px {
    padding-top: 1px !important;
  }

  .gt-xs\:pr-px {
    padding-right: 1px !important;
  }

  .gt-xs\:pb-px {
    padding-bottom: 1px !important;
  }

  .gt-xs\:pl-px {
    padding-left: 1px !important;
  }

  .gt-xs\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .gt-xs\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .gt-xs\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .gt-xs\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .gt-xs\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .gt-xs\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .gt-xs\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .gt-xs\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .gt-xs\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .gt-xs\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .gt-xs\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .gt-xs\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .gt-xs\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .gt-xs\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .gt-xs\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .gt-xs\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .gt-xs\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .gt-xs\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .gt-xs\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .gt-xs\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .gt-xs\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .gt-xs\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .gt-xs\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .gt-xs\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .gt-xs\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .gt-xs\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .gt-xs\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .gt-xs\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .gt-xs\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .gt-xs\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .gt-xs\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .gt-xs\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .gt-xs\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .gt-xs\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .gt-xs\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .gt-xs\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .gt-xs\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .gt-xs\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .gt-xs\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .gt-xs\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .gt-xs\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .gt-xs\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .gt-xs\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .gt-xs\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .gt-xs\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .gt-xs\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .gt-xs\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .gt-xs\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .gt-xs\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .gt-xs\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .gt-xs\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .gt-xs\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .gt-xs\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .gt-xs\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .gt-xs\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .gt-xs\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .gt-xs\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .gt-xs\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .gt-xs\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .gt-xs\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .gt-xs\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .gt-xs\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .gt-xs\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .gt-xs\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .gt-xs\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .gt-xs\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .gt-xs\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .gt-xs\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .gt-xs\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .gt-xs\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .gt-xs\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .gt-xs\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .gt-xs\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .gt-xs\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .gt-xs\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .gt-xs\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .gt-xs\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .gt-xs\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .gt-xs\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .gt-xs\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .gt-xs\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .gt-xs\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .gt-xs\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .gt-xs\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .gt-xs\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .gt-xs\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .gt-xs\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .gt-xs\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .gt-xs\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .gt-xs\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .gt-xs\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .gt-xs\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .gt-xs\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .gt-xs\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .gt-xs\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .gt-xs\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .gt-xs\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .gt-xs\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .gt-xs\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .gt-xs\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .gt-xs\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .gt-xs\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .gt-xs\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .gt-xs\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .gt-xs\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .gt-xs\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .gt-xs\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .gt-xs\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .gt-xs\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .gt-xs\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .gt-xs\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .gt-xs\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .gt-xs\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .gt-xs\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .gt-xs\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .gt-xs\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .gt-xs\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .gt-xs\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .gt-xs\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .gt-xs\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .gt-xs\:pt-full {
    padding-top: 100% !important;
  }

  .gt-xs\:pr-full {
    padding-right: 100% !important;
  }

  .gt-xs\:pb-full {
    padding-bottom: 100% !important;
  }

  .gt-xs\:pl-full {
    padding-left: 100% !important;
  }

  .gt-xs\:pt-2px {
    padding-top: 2px !important;
  }

  .gt-xs\:pr-2px {
    padding-right: 2px !important;
  }

  .gt-xs\:pb-2px {
    padding-bottom: 2px !important;
  }

  .gt-xs\:pl-2px {
    padding-left: 2px !important;
  }

  .gt-xs\:static {
    position: static !important;
  }

  .gt-xs\:fixed {
    position: fixed !important;
  }

  .gt-xs\:absolute {
    position: absolute !important;
  }

  .gt-xs\:relative {
    position: relative !important;
  }

  .gt-xs\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .gt-xs\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .gt-xs\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .gt-xs\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .gt-xs\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .gt-xs\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .gt-xs\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .gt-xs\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .gt-xs\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .gt-xs\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .gt-xs\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .gt-xs\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .gt-xs\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .gt-xs\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .gt-xs\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .gt-xs\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .gt-xs\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .gt-xs\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .gt-xs\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .gt-xs\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .gt-xs\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .gt-xs\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .gt-xs\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .gt-xs\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .gt-xs\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .gt-xs\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .gt-xs\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .gt-xs\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .gt-xs\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .gt-xs\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .gt-xs\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .gt-xs\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .gt-xs\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .gt-xs\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .gt-xs\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .gt-xs\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .gt-xs\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .gt-xs\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .gt-xs\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .gt-xs\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .gt-xs\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .gt-xs\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .gt-xs\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .gt-xs\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .gt-xs\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .gt-xs\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .gt-xs\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .gt-xs\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .gt-xs\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .gt-xs\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .gt-xs\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .gt-xs\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .gt-xs\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .gt-xs\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .gt-xs\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .gt-xs\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .gt-xs\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .gt-xs\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .gt-xs\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .gt-xs\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .gt-xs\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-xs\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-xs\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-xs\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .gt-xs\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-xs\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .gt-xs\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .gt-xs\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .gt-xs\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .gt-xs\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .gt-xs\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-xs\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-xs\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-xs\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-xs\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-xs\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .gt-xs\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-xs\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .gt-xs\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-xs\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .gt-xs\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-xs\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .gt-xs\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-xs\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .gt-xs\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-xs\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .gt-xs\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .gt-xs\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .gt-xs\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .gt-xs\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .gt-xs\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .gt-xs\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .gt-xs\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .gt-xs\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .gt-xs\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .gt-xs\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .gt-xs\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .gt-xs\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .gt-xs\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .gt-xs\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .gt-xs\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .gt-xs\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .gt-xs\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .gt-xs\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .gt-xs\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .gt-xs\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .gt-xs\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .gt-xs\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .gt-xs\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .gt-xs\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .gt-xs\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .gt-xs\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .gt-xs\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .gt-xs\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .gt-xs\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .gt-xs\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .gt-xs\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .gt-xs\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .gt-xs\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .gt-xs\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .gt-xs\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .gt-xs\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .gt-xs\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .gt-xs\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .gt-xs\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .gt-xs\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .gt-xs\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .gt-xs\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .gt-xs\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .gt-xs\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .gt-xs\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .gt-xs\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .gt-xs\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .gt-xs\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .gt-xs\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .gt-xs\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .gt-xs\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .gt-xs\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .gt-xs\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .gt-xs\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .gt-xs\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .gt-xs\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .gt-xs\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .gt-xs\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .gt-xs\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .gt-xs\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .gt-xs\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .gt-xs\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .gt-xs\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .gt-xs\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .gt-xs\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .gt-xs\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .gt-xs\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .gt-xs\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .gt-xs\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .gt-xs\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .gt-xs\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .gt-xs\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .gt-xs\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .gt-xs\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .gt-xs\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .gt-xs\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .gt-xs\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .gt-xs\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .gt-xs\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .gt-xs\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .gt-xs\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .gt-xs\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .gt-xs\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .gt-xs\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .gt-xs\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .gt-xs\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .gt-xs\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .gt-xs\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .gt-xs\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .gt-xs\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .gt-xs\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .gt-xs\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .gt-xs\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .gt-xs\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .gt-xs\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .gt-xs\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .gt-xs\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .gt-xs\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .gt-xs\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .gt-xs\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .gt-xs\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .gt-xs\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .gt-xs\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .gt-xs\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .gt-xs\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .gt-xs\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .gt-xs\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .gt-xs\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .gt-xs\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .gt-xs\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .gt-xs\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .gt-xs\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .gt-xs\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .gt-xs\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .gt-xs\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .gt-xs\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .gt-xs\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .gt-xs\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .gt-xs\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .gt-xs\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .gt-xs\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-xs\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-xs\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .gt-xs\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-xs\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .gt-xs\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-xs\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .gt-xs\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .gt-xs\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-xs\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-xs\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .gt-xs\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .gt-xs\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .gt-xs\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .gt-xs\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .gt-xs\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .gt-xs\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .gt-xs\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .gt-xs\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .gt-xs\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .gt-xs\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .gt-xs\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-xs\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .gt-xs\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-xs\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-xs\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-xs\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .gt-xs\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-xs\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .gt-xs\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-xs\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .gt-xs\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .gt-xs\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .gt-xs\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-xs\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .gt-xs\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .gt-xs\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .gt-xs\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-xs\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .gt-xs\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .gt-xs\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-xs\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-xs\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .gt-xs\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .gt-xs\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .gt-xs\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-xs\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .gt-xs\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .gt-xs\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .gt-xs\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-xs\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .gt-xs\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .gt-xs\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .gt-xs\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .gt-xs\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .gt-xs\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .gt-xs\:top-0 {
    top: 0 !important;
  }

  .gt-xs\:right-0 {
    right: 0 !important;
  }

  .gt-xs\:bottom-0 {
    bottom: 0 !important;
  }

  .gt-xs\:left-0 {
    left: 0 !important;
  }

  .gt-xs\:top-1 {
    top: 0.25rem !important;
  }

  .gt-xs\:right-1 {
    right: 0.25rem !important;
  }

  .gt-xs\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .gt-xs\:left-1 {
    left: 0.25rem !important;
  }

  .gt-xs\:top-2 {
    top: 0.5rem !important;
  }

  .gt-xs\:right-2 {
    right: 0.5rem !important;
  }

  .gt-xs\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .gt-xs\:left-2 {
    left: 0.5rem !important;
  }

  .gt-xs\:top-3 {
    top: 0.75rem !important;
  }

  .gt-xs\:right-3 {
    right: 0.75rem !important;
  }

  .gt-xs\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .gt-xs\:left-3 {
    left: 0.75rem !important;
  }

  .gt-xs\:top-4 {
    top: 1rem !important;
  }

  .gt-xs\:right-4 {
    right: 1rem !important;
  }

  .gt-xs\:bottom-4 {
    bottom: 1rem !important;
  }

  .gt-xs\:left-4 {
    left: 1rem !important;
  }

  .gt-xs\:top-5 {
    top: 1.25rem !important;
  }

  .gt-xs\:right-5 {
    right: 1.25rem !important;
  }

  .gt-xs\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .gt-xs\:left-5 {
    left: 1.25rem !important;
  }

  .gt-xs\:top-6 {
    top: 1.5rem !important;
  }

  .gt-xs\:right-6 {
    right: 1.5rem !important;
  }

  .gt-xs\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .gt-xs\:left-6 {
    left: 1.5rem !important;
  }

  .gt-xs\:top-7 {
    top: 1.75rem !important;
  }

  .gt-xs\:right-7 {
    right: 1.75rem !important;
  }

  .gt-xs\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .gt-xs\:left-7 {
    left: 1.75rem !important;
  }

  .gt-xs\:top-8 {
    top: 2rem !important;
  }

  .gt-xs\:right-8 {
    right: 2rem !important;
  }

  .gt-xs\:bottom-8 {
    bottom: 2rem !important;
  }

  .gt-xs\:left-8 {
    left: 2rem !important;
  }

  .gt-xs\:top-9 {
    top: 2.25rem !important;
  }

  .gt-xs\:right-9 {
    right: 2.25rem !important;
  }

  .gt-xs\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .gt-xs\:left-9 {
    left: 2.25rem !important;
  }

  .gt-xs\:top-10 {
    top: 2.5rem !important;
  }

  .gt-xs\:right-10 {
    right: 2.5rem !important;
  }

  .gt-xs\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .gt-xs\:left-10 {
    left: 2.5rem !important;
  }

  .gt-xs\:top-11 {
    top: 2.75rem !important;
  }

  .gt-xs\:right-11 {
    right: 2.75rem !important;
  }

  .gt-xs\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .gt-xs\:left-11 {
    left: 2.75rem !important;
  }

  .gt-xs\:top-12 {
    top: 3rem !important;
  }

  .gt-xs\:right-12 {
    right: 3rem !important;
  }

  .gt-xs\:bottom-12 {
    bottom: 3rem !important;
  }

  .gt-xs\:left-12 {
    left: 3rem !important;
  }

  .gt-xs\:top-13 {
    top: 3.25rem !important;
  }

  .gt-xs\:right-13 {
    right: 3.25rem !important;
  }

  .gt-xs\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .gt-xs\:left-13 {
    left: 3.25rem !important;
  }

  .gt-xs\:top-14 {
    top: 3.5rem !important;
  }

  .gt-xs\:right-14 {
    right: 3.5rem !important;
  }

  .gt-xs\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .gt-xs\:left-14 {
    left: 3.5rem !important;
  }

  .gt-xs\:top-15 {
    top: 3.75rem !important;
  }

  .gt-xs\:right-15 {
    right: 3.75rem !important;
  }

  .gt-xs\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .gt-xs\:left-15 {
    left: 3.75rem !important;
  }

  .gt-xs\:top-16 {
    top: 4rem !important;
  }

  .gt-xs\:right-16 {
    right: 4rem !important;
  }

  .gt-xs\:bottom-16 {
    bottom: 4rem !important;
  }

  .gt-xs\:left-16 {
    left: 4rem !important;
  }

  .gt-xs\:top-18 {
    top: 4.5rem !important;
  }

  .gt-xs\:right-18 {
    right: 4.5rem !important;
  }

  .gt-xs\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .gt-xs\:left-18 {
    left: 4.5rem !important;
  }

  .gt-xs\:top-20 {
    top: 5rem !important;
  }

  .gt-xs\:right-20 {
    right: 5rem !important;
  }

  .gt-xs\:bottom-20 {
    bottom: 5rem !important;
  }

  .gt-xs\:left-20 {
    left: 5rem !important;
  }

  .gt-xs\:top-22 {
    top: 5.5rem !important;
  }

  .gt-xs\:right-22 {
    right: 5.5rem !important;
  }

  .gt-xs\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .gt-xs\:left-22 {
    left: 5.5rem !important;
  }

  .gt-xs\:top-24 {
    top: 6rem !important;
  }

  .gt-xs\:right-24 {
    right: 6rem !important;
  }

  .gt-xs\:bottom-24 {
    bottom: 6rem !important;
  }

  .gt-xs\:left-24 {
    left: 6rem !important;
  }

  .gt-xs\:top-26 {
    top: 6.5rem !important;
  }

  .gt-xs\:right-26 {
    right: 6.5rem !important;
  }

  .gt-xs\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .gt-xs\:left-26 {
    left: 6.5rem !important;
  }

  .gt-xs\:top-28 {
    top: 7rem !important;
  }

  .gt-xs\:right-28 {
    right: 7rem !important;
  }

  .gt-xs\:bottom-28 {
    bottom: 7rem !important;
  }

  .gt-xs\:left-28 {
    left: 7rem !important;
  }

  .gt-xs\:top-30 {
    top: 7.5rem !important;
  }

  .gt-xs\:right-30 {
    right: 7.5rem !important;
  }

  .gt-xs\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .gt-xs\:left-30 {
    left: 7.5rem !important;
  }

  .gt-xs\:top-32 {
    top: 8rem !important;
  }

  .gt-xs\:right-32 {
    right: 8rem !important;
  }

  .gt-xs\:bottom-32 {
    bottom: 8rem !important;
  }

  .gt-xs\:left-32 {
    left: 8rem !important;
  }

  .gt-xs\:top-36 {
    top: 9rem !important;
  }

  .gt-xs\:right-36 {
    right: 9rem !important;
  }

  .gt-xs\:bottom-36 {
    bottom: 9rem !important;
  }

  .gt-xs\:left-36 {
    left: 9rem !important;
  }

  .gt-xs\:top-40 {
    top: 10rem !important;
  }

  .gt-xs\:right-40 {
    right: 10rem !important;
  }

  .gt-xs\:bottom-40 {
    bottom: 10rem !important;
  }

  .gt-xs\:left-40 {
    left: 10rem !important;
  }

  .gt-xs\:top-44 {
    top: 11rem !important;
  }

  .gt-xs\:right-44 {
    right: 11rem !important;
  }

  .gt-xs\:bottom-44 {
    bottom: 11rem !important;
  }

  .gt-xs\:left-44 {
    left: 11rem !important;
  }

  .gt-xs\:top-48 {
    top: 12rem !important;
  }

  .gt-xs\:right-48 {
    right: 12rem !important;
  }

  .gt-xs\:bottom-48 {
    bottom: 12rem !important;
  }

  .gt-xs\:left-48 {
    left: 12rem !important;
  }

  .gt-xs\:top-50 {
    top: 12.5rem !important;
  }

  .gt-xs\:right-50 {
    right: 12.5rem !important;
  }

  .gt-xs\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .gt-xs\:left-50 {
    left: 12.5rem !important;
  }

  .gt-xs\:top-52 {
    top: 13rem !important;
  }

  .gt-xs\:right-52 {
    right: 13rem !important;
  }

  .gt-xs\:bottom-52 {
    bottom: 13rem !important;
  }

  .gt-xs\:left-52 {
    left: 13rem !important;
  }

  .gt-xs\:top-56 {
    top: 14rem !important;
  }

  .gt-xs\:right-56 {
    right: 14rem !important;
  }

  .gt-xs\:bottom-56 {
    bottom: 14rem !important;
  }

  .gt-xs\:left-56 {
    left: 14rem !important;
  }

  .gt-xs\:top-60 {
    top: 15rem !important;
  }

  .gt-xs\:right-60 {
    right: 15rem !important;
  }

  .gt-xs\:bottom-60 {
    bottom: 15rem !important;
  }

  .gt-xs\:left-60 {
    left: 15rem !important;
  }

  .gt-xs\:top-64 {
    top: 16rem !important;
  }

  .gt-xs\:right-64 {
    right: 16rem !important;
  }

  .gt-xs\:bottom-64 {
    bottom: 16rem !important;
  }

  .gt-xs\:left-64 {
    left: 16rem !important;
  }

  .gt-xs\:top-72 {
    top: 18rem !important;
  }

  .gt-xs\:right-72 {
    right: 18rem !important;
  }

  .gt-xs\:bottom-72 {
    bottom: 18rem !important;
  }

  .gt-xs\:left-72 {
    left: 18rem !important;
  }

  .gt-xs\:top-80 {
    top: 20rem !important;
  }

  .gt-xs\:right-80 {
    right: 20rem !important;
  }

  .gt-xs\:bottom-80 {
    bottom: 20rem !important;
  }

  .gt-xs\:left-80 {
    left: 20rem !important;
  }

  .gt-xs\:top-90 {
    top: 24rem !important;
  }

  .gt-xs\:right-90 {
    right: 24rem !important;
  }

  .gt-xs\:bottom-90 {
    bottom: 24rem !important;
  }

  .gt-xs\:left-90 {
    left: 24rem !important;
  }

  .gt-xs\:top-96 {
    top: 24rem !important;
  }

  .gt-xs\:right-96 {
    right: 24rem !important;
  }

  .gt-xs\:bottom-96 {
    bottom: 24rem !important;
  }

  .gt-xs\:left-96 {
    left: 24rem !important;
  }

  .gt-xs\:top-100 {
    top: 25rem !important;
  }

  .gt-xs\:right-100 {
    right: 25rem !important;
  }

  .gt-xs\:bottom-100 {
    bottom: 25rem !important;
  }

  .gt-xs\:left-100 {
    left: 25rem !important;
  }

  .gt-xs\:top-120 {
    top: 30rem !important;
  }

  .gt-xs\:right-120 {
    right: 30rem !important;
  }

  .gt-xs\:bottom-120 {
    bottom: 30rem !important;
  }

  .gt-xs\:left-120 {
    left: 30rem !important;
  }

  .gt-xs\:top-128 {
    top: 32rem !important;
  }

  .gt-xs\:right-128 {
    right: 32rem !important;
  }

  .gt-xs\:bottom-128 {
    bottom: 32rem !important;
  }

  .gt-xs\:left-128 {
    left: 32rem !important;
  }

  .gt-xs\:top-140 {
    top: 35rem !important;
  }

  .gt-xs\:right-140 {
    right: 35rem !important;
  }

  .gt-xs\:bottom-140 {
    bottom: 35rem !important;
  }

  .gt-xs\:left-140 {
    left: 35rem !important;
  }

  .gt-xs\:top-160 {
    top: 40rem !important;
  }

  .gt-xs\:right-160 {
    right: 40rem !important;
  }

  .gt-xs\:bottom-160 {
    bottom: 40rem !important;
  }

  .gt-xs\:left-160 {
    left: 40rem !important;
  }

  .gt-xs\:top-180 {
    top: 45rem !important;
  }

  .gt-xs\:right-180 {
    right: 45rem !important;
  }

  .gt-xs\:bottom-180 {
    bottom: 45rem !important;
  }

  .gt-xs\:left-180 {
    left: 45rem !important;
  }

  .gt-xs\:top-192 {
    top: 48rem !important;
  }

  .gt-xs\:right-192 {
    right: 48rem !important;
  }

  .gt-xs\:bottom-192 {
    bottom: 48rem !important;
  }

  .gt-xs\:left-192 {
    left: 48rem !important;
  }

  .gt-xs\:top-200 {
    top: 50rem !important;
  }

  .gt-xs\:right-200 {
    right: 50rem !important;
  }

  .gt-xs\:bottom-200 {
    bottom: 50rem !important;
  }

  .gt-xs\:left-200 {
    left: 50rem !important;
  }

  .gt-xs\:top-240 {
    top: 60rem !important;
  }

  .gt-xs\:right-240 {
    right: 60rem !important;
  }

  .gt-xs\:bottom-240 {
    bottom: 60rem !important;
  }

  .gt-xs\:left-240 {
    left: 60rem !important;
  }

  .gt-xs\:top-256 {
    top: 64rem !important;
  }

  .gt-xs\:right-256 {
    right: 64rem !important;
  }

  .gt-xs\:bottom-256 {
    bottom: 64rem !important;
  }

  .gt-xs\:left-256 {
    left: 64rem !important;
  }

  .gt-xs\:top-280 {
    top: 70rem !important;
  }

  .gt-xs\:right-280 {
    right: 70rem !important;
  }

  .gt-xs\:bottom-280 {
    bottom: 70rem !important;
  }

  .gt-xs\:left-280 {
    left: 70rem !important;
  }

  .gt-xs\:top-320 {
    top: 80rem !important;
  }

  .gt-xs\:right-320 {
    right: 80rem !important;
  }

  .gt-xs\:bottom-320 {
    bottom: 80rem !important;
  }

  .gt-xs\:left-320 {
    left: 80rem !important;
  }

  .gt-xs\:top-360 {
    top: 90rem !important;
  }

  .gt-xs\:right-360 {
    right: 90rem !important;
  }

  .gt-xs\:bottom-360 {
    bottom: 90rem !important;
  }

  .gt-xs\:left-360 {
    left: 90rem !important;
  }

  .gt-xs\:top-400 {
    top: 100rem !important;
  }

  .gt-xs\:right-400 {
    right: 100rem !important;
  }

  .gt-xs\:bottom-400 {
    bottom: 100rem !important;
  }

  .gt-xs\:left-400 {
    left: 100rem !important;
  }

  .gt-xs\:top-480 {
    top: 120rem !important;
  }

  .gt-xs\:right-480 {
    right: 120rem !important;
  }

  .gt-xs\:bottom-480 {
    bottom: 120rem !important;
  }

  .gt-xs\:left-480 {
    left: 120rem !important;
  }

  .gt-xs\:top-auto {
    top: auto !important;
  }

  .gt-xs\:right-auto {
    right: auto !important;
  }

  .gt-xs\:bottom-auto {
    bottom: auto !important;
  }

  .gt-xs\:left-auto {
    left: auto !important;
  }

  .gt-xs\:top-px {
    top: 1px !important;
  }

  .gt-xs\:right-px {
    right: 1px !important;
  }

  .gt-xs\:bottom-px {
    bottom: 1px !important;
  }

  .gt-xs\:left-px {
    left: 1px !important;
  }

  .gt-xs\:top-0\.5 {
    top: 0.125rem !important;
  }

  .gt-xs\:right-0\.5 {
    right: 0.125rem !important;
  }

  .gt-xs\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .gt-xs\:left-0\.5 {
    left: 0.125rem !important;
  }

  .gt-xs\:top-1\.5 {
    top: 0.375rem !important;
  }

  .gt-xs\:right-1\.5 {
    right: 0.375rem !important;
  }

  .gt-xs\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .gt-xs\:left-1\.5 {
    left: 0.375rem !important;
  }

  .gt-xs\:top-2\.5 {
    top: 0.625rem !important;
  }

  .gt-xs\:right-2\.5 {
    right: 0.625rem !important;
  }

  .gt-xs\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .gt-xs\:left-2\.5 {
    left: 0.625rem !important;
  }

  .gt-xs\:top-3\.5 {
    top: 0.875rem !important;
  }

  .gt-xs\:right-3\.5 {
    right: 0.875rem !important;
  }

  .gt-xs\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .gt-xs\:left-3\.5 {
    left: 0.875rem !important;
  }

  .gt-xs\:top-1\/2 {
    top: 50% !important;
  }

  .gt-xs\:right-1\/2 {
    right: 50% !important;
  }

  .gt-xs\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .gt-xs\:left-1\/2 {
    left: 50% !important;
  }

  .gt-xs\:top-1\/3 {
    top: 33.333333% !important;
  }

  .gt-xs\:right-1\/3 {
    right: 33.333333% !important;
  }

  .gt-xs\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .gt-xs\:left-1\/3 {
    left: 33.333333% !important;
  }

  .gt-xs\:top-2\/3 {
    top: 66.666667% !important;
  }

  .gt-xs\:right-2\/3 {
    right: 66.666667% !important;
  }

  .gt-xs\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .gt-xs\:left-2\/3 {
    left: 66.666667% !important;
  }

  .gt-xs\:top-1\/4 {
    top: 25% !important;
  }

  .gt-xs\:right-1\/4 {
    right: 25% !important;
  }

  .gt-xs\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .gt-xs\:left-1\/4 {
    left: 25% !important;
  }

  .gt-xs\:top-2\/4 {
    top: 50% !important;
  }

  .gt-xs\:right-2\/4 {
    right: 50% !important;
  }

  .gt-xs\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .gt-xs\:left-2\/4 {
    left: 50% !important;
  }

  .gt-xs\:top-3\/4 {
    top: 75% !important;
  }

  .gt-xs\:right-3\/4 {
    right: 75% !important;
  }

  .gt-xs\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .gt-xs\:left-3\/4 {
    left: 75% !important;
  }

  .gt-xs\:top-1\/5 {
    top: 20% !important;
  }

  .gt-xs\:right-1\/5 {
    right: 20% !important;
  }

  .gt-xs\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .gt-xs\:left-1\/5 {
    left: 20% !important;
  }

  .gt-xs\:top-2\/5 {
    top: 40% !important;
  }

  .gt-xs\:right-2\/5 {
    right: 40% !important;
  }

  .gt-xs\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .gt-xs\:left-2\/5 {
    left: 40% !important;
  }

  .gt-xs\:top-3\/5 {
    top: 60% !important;
  }

  .gt-xs\:right-3\/5 {
    right: 60% !important;
  }

  .gt-xs\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .gt-xs\:left-3\/5 {
    left: 60% !important;
  }

  .gt-xs\:top-4\/5 {
    top: 80% !important;
  }

  .gt-xs\:right-4\/5 {
    right: 80% !important;
  }

  .gt-xs\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .gt-xs\:left-4\/5 {
    left: 80% !important;
  }

  .gt-xs\:top-1\/6 {
    top: 16.666667% !important;
  }

  .gt-xs\:right-1\/6 {
    right: 16.666667% !important;
  }

  .gt-xs\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .gt-xs\:left-1\/6 {
    left: 16.666667% !important;
  }

  .gt-xs\:top-2\/6 {
    top: 33.333333% !important;
  }

  .gt-xs\:right-2\/6 {
    right: 33.333333% !important;
  }

  .gt-xs\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .gt-xs\:left-2\/6 {
    left: 33.333333% !important;
  }

  .gt-xs\:top-3\/6 {
    top: 50% !important;
  }

  .gt-xs\:right-3\/6 {
    right: 50% !important;
  }

  .gt-xs\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .gt-xs\:left-3\/6 {
    left: 50% !important;
  }

  .gt-xs\:top-4\/6 {
    top: 66.666667% !important;
  }

  .gt-xs\:right-4\/6 {
    right: 66.666667% !important;
  }

  .gt-xs\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .gt-xs\:left-4\/6 {
    left: 66.666667% !important;
  }

  .gt-xs\:top-5\/6 {
    top: 83.333333% !important;
  }

  .gt-xs\:right-5\/6 {
    right: 83.333333% !important;
  }

  .gt-xs\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .gt-xs\:left-5\/6 {
    left: 83.333333% !important;
  }

  .gt-xs\:top-1\/12 {
    top: 8.333333% !important;
  }

  .gt-xs\:right-1\/12 {
    right: 8.333333% !important;
  }

  .gt-xs\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .gt-xs\:left-1\/12 {
    left: 8.333333% !important;
  }

  .gt-xs\:top-2\/12 {
    top: 16.666667% !important;
  }

  .gt-xs\:right-2\/12 {
    right: 16.666667% !important;
  }

  .gt-xs\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .gt-xs\:left-2\/12 {
    left: 16.666667% !important;
  }

  .gt-xs\:top-3\/12 {
    top: 25% !important;
  }

  .gt-xs\:right-3\/12 {
    right: 25% !important;
  }

  .gt-xs\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .gt-xs\:left-3\/12 {
    left: 25% !important;
  }

  .gt-xs\:top-4\/12 {
    top: 33.333333% !important;
  }

  .gt-xs\:right-4\/12 {
    right: 33.333333% !important;
  }

  .gt-xs\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .gt-xs\:left-4\/12 {
    left: 33.333333% !important;
  }

  .gt-xs\:top-5\/12 {
    top: 41.666667% !important;
  }

  .gt-xs\:right-5\/12 {
    right: 41.666667% !important;
  }

  .gt-xs\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .gt-xs\:left-5\/12 {
    left: 41.666667% !important;
  }

  .gt-xs\:top-6\/12 {
    top: 50% !important;
  }

  .gt-xs\:right-6\/12 {
    right: 50% !important;
  }

  .gt-xs\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .gt-xs\:left-6\/12 {
    left: 50% !important;
  }

  .gt-xs\:top-7\/12 {
    top: 58.333333% !important;
  }

  .gt-xs\:right-7\/12 {
    right: 58.333333% !important;
  }

  .gt-xs\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .gt-xs\:left-7\/12 {
    left: 58.333333% !important;
  }

  .gt-xs\:top-8\/12 {
    top: 66.666667% !important;
  }

  .gt-xs\:right-8\/12 {
    right: 66.666667% !important;
  }

  .gt-xs\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .gt-xs\:left-8\/12 {
    left: 66.666667% !important;
  }

  .gt-xs\:top-9\/12 {
    top: 75% !important;
  }

  .gt-xs\:right-9\/12 {
    right: 75% !important;
  }

  .gt-xs\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .gt-xs\:left-9\/12 {
    left: 75% !important;
  }

  .gt-xs\:top-10\/12 {
    top: 83.333333% !important;
  }

  .gt-xs\:right-10\/12 {
    right: 83.333333% !important;
  }

  .gt-xs\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .gt-xs\:left-10\/12 {
    left: 83.333333% !important;
  }

  .gt-xs\:top-11\/12 {
    top: 91.666667% !important;
  }

  .gt-xs\:right-11\/12 {
    right: 91.666667% !important;
  }

  .gt-xs\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .gt-xs\:left-11\/12 {
    left: 91.666667% !important;
  }

  .gt-xs\:top-full {
    top: 100% !important;
  }

  .gt-xs\:right-full {
    right: 100% !important;
  }

  .gt-xs\:bottom-full {
    bottom: 100% !important;
  }

  .gt-xs\:left-full {
    left: 100% !important;
  }

  .gt-xs\:top-2px {
    top: 2px !important;
  }

  .gt-xs\:right-2px {
    right: 2px !important;
  }

  .gt-xs\:bottom-2px {
    bottom: 2px !important;
  }

  .gt-xs\:left-2px {
    left: 2px !important;
  }

  .gt-xs\:text-left {
    text-align: left !important;
  }

  .gt-xs\:text-center {
    text-align: center !important;
  }

  .gt-xs\:text-right {
    text-align: right !important;
  }

  .gt-xs\:text-justify {
    text-align: justify !important;
  }

  .gt-xs\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .gt-xs\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .gt-xs\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .gt-xs\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .gt-xs\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .gt-xs\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .gt-xs\:visible {
    visibility: visible !important;
  }

  .gt-xs\:invisible {
    visibility: hidden !important;
  }

  .gt-xs\:whitespace-normal {
    white-space: normal !important;
  }

  .gt-xs\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .gt-xs\:whitespace-pre {
    white-space: pre !important;
  }

  .gt-xs\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .gt-xs\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .gt-xs\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .gt-xs\:break-words {
    overflow-wrap: break-word !important;
  }

  .gt-xs\:break-all {
    word-break: break-all !important;
  }

  .gt-xs\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .gt-xs\:w-0 {
    width: 0 !important;
  }

  .gt-xs\:w-1 {
    width: 0.25rem !important;
  }

  .gt-xs\:w-2 {
    width: 0.5rem !important;
  }

  .gt-xs\:w-3 {
    width: 0.75rem !important;
  }

  .gt-xs\:w-4 {
    width: 1rem !important;
  }

  .gt-xs\:w-5 {
    width: 1.25rem !important;
  }

  .gt-xs\:w-6 {
    width: 1.5rem !important;
  }

  .gt-xs\:w-7 {
    width: 1.75rem !important;
  }

  .gt-xs\:w-8 {
    width: 2rem !important;
  }

  .gt-xs\:w-9 {
    width: 2.25rem !important;
  }

  .gt-xs\:w-10 {
    width: 2.5rem !important;
  }

  .gt-xs\:w-11 {
    width: 2.75rem !important;
  }

  .gt-xs\:w-12 {
    width: 3rem !important;
  }

  .gt-xs\:w-13 {
    width: 3.25rem !important;
  }

  .gt-xs\:w-14 {
    width: 3.5rem !important;
  }

  .gt-xs\:w-15 {
    width: 3.75rem !important;
  }

  .gt-xs\:w-16 {
    width: 4rem !important;
  }

  .gt-xs\:w-18 {
    width: 4.5rem !important;
  }

  .gt-xs\:w-20 {
    width: 5rem !important;
  }

  .gt-xs\:w-22 {
    width: 5.5rem !important;
  }

  .gt-xs\:w-24 {
    width: 6rem !important;
  }

  .gt-xs\:w-26 {
    width: 6.5rem !important;
  }

  .gt-xs\:w-28 {
    width: 7rem !important;
  }

  .gt-xs\:w-30 {
    width: 7.5rem !important;
  }

  .gt-xs\:w-32 {
    width: 8rem !important;
  }

  .gt-xs\:w-36 {
    width: 9rem !important;
  }

  .gt-xs\:w-40 {
    width: 10rem !important;
  }

  .gt-xs\:w-44 {
    width: 11rem !important;
  }

  .gt-xs\:w-48 {
    width: 12rem !important;
  }

  .gt-xs\:w-50 {
    width: 12.5rem !important;
  }

  .gt-xs\:w-52 {
    width: 13rem !important;
  }

  .gt-xs\:w-56 {
    width: 14rem !important;
  }

  .gt-xs\:w-60 {
    width: 15rem !important;
  }

  .gt-xs\:w-64 {
    width: 16rem !important;
  }

  .gt-xs\:w-72 {
    width: 18rem !important;
  }

  .gt-xs\:w-80 {
    width: 20rem !important;
  }

  .gt-xs\:w-90 {
    width: 24rem !important;
  }

  .gt-xs\:w-96 {
    width: 24rem !important;
  }

  .gt-xs\:w-100 {
    width: 25rem !important;
  }

  .gt-xs\:w-120 {
    width: 30rem !important;
  }

  .gt-xs\:w-128 {
    width: 32rem !important;
  }

  .gt-xs\:w-140 {
    width: 35rem !important;
  }

  .gt-xs\:w-160 {
    width: 40rem !important;
  }

  .gt-xs\:w-180 {
    width: 45rem !important;
  }

  .gt-xs\:w-192 {
    width: 48rem !important;
  }

  .gt-xs\:w-200 {
    width: 50rem !important;
  }

  .gt-xs\:w-240 {
    width: 60rem !important;
  }

  .gt-xs\:w-256 {
    width: 64rem !important;
  }

  .gt-xs\:w-280 {
    width: 70rem !important;
  }

  .gt-xs\:w-320 {
    width: 80rem !important;
  }

  .gt-xs\:w-360 {
    width: 90rem !important;
  }

  .gt-xs\:w-400 {
    width: 100rem !important;
  }

  .gt-xs\:w-480 {
    width: 120rem !important;
  }

  .gt-xs\:w-auto {
    width: auto !important;
  }

  .gt-xs\:w-px {
    width: 1px !important;
  }

  .gt-xs\:w-0\.5 {
    width: 0.125rem !important;
  }

  .gt-xs\:w-1\.5 {
    width: 0.375rem !important;
  }

  .gt-xs\:w-2\.5 {
    width: 0.625rem !important;
  }

  .gt-xs\:w-3\.5 {
    width: 0.875rem !important;
  }

  .gt-xs\:w-1\/2 {
    width: 50% !important;
  }

  .gt-xs\:w-1\/3 {
    width: 33.333333% !important;
  }

  .gt-xs\:w-2\/3 {
    width: 66.666667% !important;
  }

  .gt-xs\:w-1\/4 {
    width: 25% !important;
  }

  .gt-xs\:w-2\/4 {
    width: 50% !important;
  }

  .gt-xs\:w-3\/4 {
    width: 75% !important;
  }

  .gt-xs\:w-1\/5 {
    width: 20% !important;
  }

  .gt-xs\:w-2\/5 {
    width: 40% !important;
  }

  .gt-xs\:w-3\/5 {
    width: 60% !important;
  }

  .gt-xs\:w-4\/5 {
    width: 80% !important;
  }

  .gt-xs\:w-1\/6 {
    width: 16.666667% !important;
  }

  .gt-xs\:w-2\/6 {
    width: 33.333333% !important;
  }

  .gt-xs\:w-3\/6 {
    width: 50% !important;
  }

  .gt-xs\:w-4\/6 {
    width: 66.666667% !important;
  }

  .gt-xs\:w-5\/6 {
    width: 83.333333% !important;
  }

  .gt-xs\:w-1\/12 {
    width: 8.333333% !important;
  }

  .gt-xs\:w-2\/12 {
    width: 16.666667% !important;
  }

  .gt-xs\:w-3\/12 {
    width: 25% !important;
  }

  .gt-xs\:w-4\/12 {
    width: 33.333333% !important;
  }

  .gt-xs\:w-5\/12 {
    width: 41.666667% !important;
  }

  .gt-xs\:w-6\/12 {
    width: 50% !important;
  }

  .gt-xs\:w-7\/12 {
    width: 58.333333% !important;
  }

  .gt-xs\:w-8\/12 {
    width: 66.666667% !important;
  }

  .gt-xs\:w-9\/12 {
    width: 75% !important;
  }

  .gt-xs\:w-10\/12 {
    width: 83.333333% !important;
  }

  .gt-xs\:w-11\/12 {
    width: 91.666667% !important;
  }

  .gt-xs\:w-full {
    width: 100% !important;
  }

  .gt-xs\:w-2px {
    width: 2px !important;
  }

  .gt-xs\:w-screen {
    width: 100vw !important;
  }

  .gt-xs\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .gt-xs\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .gt-xs\:z-0 {
    z-index: 0 !important;
  }

  .gt-xs\:z-10 {
    z-index: 10 !important;
  }

  .gt-xs\:z-20 {
    z-index: 20 !important;
  }

  .gt-xs\:z-30 {
    z-index: 30 !important;
  }

  .gt-xs\:z-40 {
    z-index: 40 !important;
  }

  .gt-xs\:z-50 {
    z-index: 50 !important;
  }

  .gt-xs\:z-60 {
    z-index: 60 !important;
  }

  .gt-xs\:z-70 {
    z-index: 70 !important;
  }

  .gt-xs\:z-80 {
    z-index: 80 !important;
  }

  .gt-xs\:z-90 {
    z-index: 90 !important;
  }

  .gt-xs\:z-99 {
    z-index: 99 !important;
  }

  .gt-xs\:z-999 {
    z-index: 999 !important;
  }

  .gt-xs\:z-9999 {
    z-index: 9999 !important;
  }

  .gt-xs\:z-99999 {
    z-index: 99999 !important;
  }

  .gt-xs\:z-auto {
    z-index: auto !important;
  }

  .gt-xs\:-z-1 {
    z-index: -1 !important;
  }

  .gt-xs\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .gt-xs\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .gt-xs\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .gt-xs\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .gt-xs\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .gt-xs\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .gt-xs\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .gt-xs\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .gt-xs\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .gt-xs\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .gt-xs\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .gt-xs\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .gt-xs\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .gt-xs\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .gt-xs\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .gt-xs\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .gt-xs\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .gt-xs\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .gt-xs\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .gt-xs\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .gt-xs\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .gt-xs\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .gt-xs\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .gt-xs\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .gt-xs\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .gt-xs\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .gt-xs\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .gt-xs\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .gt-xs\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .gt-xs\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .gt-xs\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .gt-xs\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .gt-xs\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .gt-xs\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .gt-xs\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .gt-xs\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .gt-xs\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .gt-xs\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .gt-xs\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .gt-xs\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .gt-xs\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .gt-xs\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .gt-xs\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .gt-xs\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .gt-xs\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .gt-xs\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .gt-xs\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .gt-xs\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .gt-xs\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .gt-xs\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .gt-xs\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .gt-xs\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .gt-xs\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .gt-xs\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .gt-xs\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .gt-xs\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .gt-xs\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .gt-xs\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .gt-xs\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-xs\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .gt-xs\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .gt-xs\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .gt-xs\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-xs\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .gt-xs\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .gt-xs\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .gt-xs\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .gt-xs\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .gt-xs\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .gt-xs\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .gt-xs\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-xs\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .gt-xs\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .gt-xs\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .gt-xs\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .gt-xs\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .gt-xs\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .gt-xs\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .gt-xs\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-xs\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .gt-xs\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .gt-xs\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .gt-xs\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .gt-xs\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .gt-xs\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .gt-xs\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .gt-xs\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .gt-xs\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .gt-xs\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .gt-xs\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .gt-xs\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .gt-xs\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .gt-xs\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .gt-xs\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .gt-xs\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .gt-xs\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .gt-xs\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .gt-xs\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .gt-xs\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .gt-xs\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .gt-xs\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .gt-xs\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .gt-xs\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .gt-xs\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .gt-xs\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .gt-xs\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .gt-xs\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .gt-xs\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .gt-xs\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .gt-xs\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .gt-xs\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .gt-xs\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .gt-xs\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .gt-xs\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .gt-xs\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .gt-xs\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .gt-xs\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .gt-xs\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .gt-xs\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .gt-xs\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .gt-xs\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .gt-xs\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .gt-xs\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .gt-xs\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .gt-xs\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .gt-xs\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .gt-xs\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .gt-xs\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .gt-xs\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .gt-xs\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .gt-xs\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .gt-xs\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .gt-xs\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .gt-xs\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .gt-xs\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .gt-xs\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .gt-xs\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .gt-xs\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .gt-xs\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .gt-xs\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .gt-xs\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .gt-xs\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .gt-xs\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .gt-xs\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .gt-xs\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-xs\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .gt-xs\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .gt-xs\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .gt-xs\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-xs\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .gt-xs\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .gt-xs\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .gt-xs\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .gt-xs\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .gt-xs\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .gt-xs\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .gt-xs\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-xs\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .gt-xs\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .gt-xs\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .gt-xs\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .gt-xs\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .gt-xs\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .gt-xs\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .gt-xs\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-xs\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .gt-xs\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .gt-xs\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .gt-xs\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .gt-xs\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .gt-xs\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .gt-xs\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .gt-xs\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .gt-xs\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .gt-xs\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .gt-xs\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .gt-xs\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .gt-xs\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .gt-xs\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .gt-xs\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .gt-xs\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .gt-xs\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .gt-xs\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .gt-xs\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .gt-xs\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .gt-xs\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .gt-xs\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .gt-xs\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .gt-xs\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .gt-xs\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .gt-xs\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .gt-xs\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .gt-xs\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .gt-xs\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .gt-xs\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .gt-xs\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .gt-xs\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .gt-xs\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .gt-xs\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .gt-xs\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .gt-xs\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .gt-xs\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .gt-xs\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .gt-xs\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .gt-xs\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .gt-xs\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .gt-xs\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .gt-xs\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .gt-xs\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .gt-xs\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .gt-xs\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .gt-xs\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .gt-xs\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .gt-xs\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .gt-xs\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .gt-xs\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .gt-xs\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .gt-xs\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .gt-xs\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .gt-xs\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .gt-xs\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .gt-xs\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .gt-xs\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .gt-xs\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .gt-xs\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .gt-xs\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .gt-xs\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .gt-xs\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .gt-xs\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .gt-xs\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .gt-xs\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-xs\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .gt-xs\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .gt-xs\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .gt-xs\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-xs\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .gt-xs\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .gt-xs\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .gt-xs\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .gt-xs\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .gt-xs\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .gt-xs\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .gt-xs\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-xs\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .gt-xs\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .gt-xs\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .gt-xs\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .gt-xs\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .gt-xs\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .gt-xs\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .gt-xs\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-xs\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .gt-xs\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .gt-xs\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .gt-xs\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .gt-xs\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .gt-xs\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .gt-xs\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .gt-xs\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .gt-xs\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .gt-xs\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .gt-xs\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

  .gt-xs\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

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

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

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

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

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

  .gt-xs\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .gt-xs\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .gt-xs\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

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

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

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

  .gt-xs\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .gt-xs\:col-auto {
    grid-column: auto !important;
  }

  .gt-xs\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

  .gt-xs\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }

  .gt-xs\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .gt-xs\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .gt-xs\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .gt-xs\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .gt-xs\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .gt-xs\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .gt-xs\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .gt-xs\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .gt-xs\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .gt-xs\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .gt-xs\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .gt-xs\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .gt-xs\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .gt-xs\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .gt-xs\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .gt-xs\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .gt-xs\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .gt-xs\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .gt-xs\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .gt-xs\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .gt-xs\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .gt-xs\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .gt-xs\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .gt-xs\:col-start-auto {
    grid-column-start: auto !important;
  }

  .gt-xs\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .gt-xs\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .gt-xs\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .gt-xs\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .gt-xs\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .gt-xs\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .gt-xs\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .gt-xs\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .gt-xs\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .gt-xs\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .gt-xs\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .gt-xs\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .gt-xs\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .gt-xs\:col-end-auto {
    grid-column-end: auto !important;
  }

  .gt-xs\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .gt-xs\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .gt-xs\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .gt-xs\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .gt-xs\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .gt-xs\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .gt-xs\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .gt-xs\:row-auto {
    grid-row: auto !important;
  }

  .gt-xs\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .gt-xs\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .gt-xs\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .gt-xs\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .gt-xs\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .gt-xs\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .gt-xs\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .gt-xs\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .gt-xs\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .gt-xs\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .gt-xs\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .gt-xs\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .gt-xs\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .gt-xs\:row-start-auto {
    grid-row-start: auto !important;
  }

  .gt-xs\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .gt-xs\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .gt-xs\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .gt-xs\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .gt-xs\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .gt-xs\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .gt-xs\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .gt-xs\:row-end-auto {
    grid-row-end: auto !important;
  }

  .gt-xs\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .gt-xs\:transform-none {
    transform: none !important;
  }

  .gt-xs\:origin-center {
    transform-origin: center !important;
  }

  .gt-xs\:origin-top {
    transform-origin: top !important;
  }

  .gt-xs\:origin-top-right {
    transform-origin: top right !important;
  }

  .gt-xs\:origin-right {
    transform-origin: right !important;
  }

  .gt-xs\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .gt-xs\:origin-bottom {
    transform-origin: bottom !important;
  }

  .gt-xs\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .gt-xs\:origin-left {
    transform-origin: left !important;
  }

  .gt-xs\:origin-top-left {
    transform-origin: top left !important;
  }

  .gt-xs\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .gt-xs\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .gt-xs\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .gt-xs\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .gt-xs\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .gt-xs\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .gt-xs\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .gt-xs\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .gt-xs\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .gt-xs\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .gt-xs\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .gt-xs\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .gt-xs\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .gt-xs\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .gt-xs\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .gt-xs\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .gt-xs\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .gt-xs\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .gt-xs\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .gt-xs\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .gt-xs\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .gt-xs\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .gt-xs\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .gt-xs\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .gt-xs\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .gt-xs\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .gt-xs\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .gt-xs\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .gt-xs\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .gt-xs\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (min-width: 960px) {
  .gt-sm\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .gt-sm\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .gt-sm\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-sm\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .gt-sm\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .gt-sm\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .gt-sm\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .gt-sm\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .gt-sm\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .gt-sm\:rounded-none {
    border-radius: 0 !important;
  }

  .gt-sm\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .gt-sm\:rounded {
    border-radius: 0.25rem !important;
  }

  .gt-sm\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .gt-sm\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .gt-sm\:rounded-full {
    border-radius: 9999px !important;
  }

  .gt-sm\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .gt-sm\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .gt-sm\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .gt-sm\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .gt-sm\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .gt-sm\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .gt-sm\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .gt-sm\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .gt-sm\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .gt-sm\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .gt-sm\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .gt-sm\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .gt-sm\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .gt-sm\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .gt-sm\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .gt-sm\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .gt-sm\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .gt-sm\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .gt-sm\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .gt-sm\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .gt-sm\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .gt-sm\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .gt-sm\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .gt-sm\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .gt-sm\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .gt-sm\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .gt-sm\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .gt-sm\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .gt-sm\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .gt-sm\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .gt-sm\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .gt-sm\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .gt-sm\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .gt-sm\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .gt-sm\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .gt-sm\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .gt-sm\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .gt-sm\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .gt-sm\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .gt-sm\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .gt-sm\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .gt-sm\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .gt-sm\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .gt-sm\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .gt-sm\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .gt-sm\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .gt-sm\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .gt-sm\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .gt-sm\:border-0 {
    border-width: 0 !important;
  }

  .gt-sm\:border-2 {
    border-width: 2px !important;
  }

  .gt-sm\:border-4 {
    border-width: 4px !important;
  }

  .gt-sm\:border-8 {
    border-width: 8px !important;
  }

  .gt-sm\:border {
    border-width: 1px !important;
  }

  .gt-sm\:border-t-0 {
    border-top-width: 0 !important;
  }

  .gt-sm\:border-r-0 {
    border-right-width: 0 !important;
  }

  .gt-sm\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .gt-sm\:border-l-0 {
    border-left-width: 0 !important;
  }

  .gt-sm\:border-t-2 {
    border-top-width: 2px !important;
  }

  .gt-sm\:border-r-2 {
    border-right-width: 2px !important;
  }

  .gt-sm\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .gt-sm\:border-l-2 {
    border-left-width: 2px !important;
  }

  .gt-sm\:border-t-4 {
    border-top-width: 4px !important;
  }

  .gt-sm\:border-r-4 {
    border-right-width: 4px !important;
  }

  .gt-sm\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .gt-sm\:border-l-4 {
    border-left-width: 4px !important;
  }

  .gt-sm\:border-t-8 {
    border-top-width: 8px !important;
  }

  .gt-sm\:border-r-8 {
    border-right-width: 8px !important;
  }

  .gt-sm\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .gt-sm\:border-l-8 {
    border-left-width: 8px !important;
  }

  .gt-sm\:border-t {
    border-top-width: 1px !important;
  }

  .gt-sm\:border-r {
    border-right-width: 1px !important;
  }

  .gt-sm\:border-b {
    border-bottom-width: 1px !important;
  }

  .gt-sm\:border-l {
    border-left-width: 1px !important;
  }

  .gt-sm\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .gt-sm\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .gt-sm\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .gt-sm\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .gt-sm\:first\:border:first-child {
    border-width: 1px !important;
  }

  .gt-sm\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .gt-sm\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .gt-sm\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .gt-sm\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .gt-sm\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .gt-sm\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .gt-sm\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .gt-sm\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .gt-sm\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .gt-sm\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .gt-sm\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .gt-sm\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .gt-sm\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .gt-sm\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .gt-sm\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .gt-sm\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .gt-sm\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .gt-sm\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .gt-sm\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .gt-sm\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .gt-sm\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .gt-sm\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .gt-sm\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .gt-sm\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .gt-sm\:last\:border:last-child {
    border-width: 1px !important;
  }

  .gt-sm\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .gt-sm\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .gt-sm\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .gt-sm\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .gt-sm\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .gt-sm\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .gt-sm\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .gt-sm\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .gt-sm\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .gt-sm\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .gt-sm\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .gt-sm\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .gt-sm\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .gt-sm\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .gt-sm\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .gt-sm\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .gt-sm\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .gt-sm\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .gt-sm\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .gt-sm\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .gt-sm\:block {
    display: block !important;
  }

  .gt-sm\:inline-block {
    display: inline-block !important;
  }

  .gt-sm\:inline {
    display: inline !important;
  }

  .gt-sm\:flex {
    display: flex !important;
  }

  .gt-sm\:inline-flex {
    display: inline-flex !important;
  }

  .gt-sm\:table {
    display: table !important;
  }

  .gt-sm\:table-caption {
    display: table-caption !important;
  }

  .gt-sm\:table-cell {
    display: table-cell !important;
  }

  .gt-sm\:table-column {
    display: table-column !important;
  }

  .gt-sm\:table-column-group {
    display: table-column-group !important;
  }

  .gt-sm\:table-footer-group {
    display: table-footer-group !important;
  }

  .gt-sm\:table-header-group {
    display: table-header-group !important;
  }

  .gt-sm\:table-row-group {
    display: table-row-group !important;
  }

  .gt-sm\:table-row {
    display: table-row !important;
  }

  .gt-sm\:flow-root {
    display: flow-root !important;
  }

  .gt-sm\:grid {
    display: grid !important;
  }

  .gt-sm\:inline-grid {
    display: inline-grid !important;
  }

  .gt-sm\:contents {
    display: contents !important;
  }

  .gt-sm\:hidden {
    display: none !important;
  }

  .gt-sm\:flex-row {
    flex-direction: row !important;
  }

  .gt-sm\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .gt-sm\:flex-col {
    flex-direction: column !important;
  }

  .gt-sm\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .gt-sm\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .gt-sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gt-sm\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .gt-sm\:items-start {
    align-items: flex-start !important;
  }

  .gt-sm\:items-end {
    align-items: flex-end !important;
  }

  .gt-sm\:items-center {
    align-items: center !important;
  }

  .gt-sm\:items-baseline {
    align-items: baseline !important;
  }

  .gt-sm\:items-stretch {
    align-items: stretch !important;
  }

  .gt-sm\:self-auto {
    align-self: auto !important;
  }

  .gt-sm\:self-start {
    align-self: flex-start !important;
  }

  .gt-sm\:self-end {
    align-self: flex-end !important;
  }

  .gt-sm\:self-center {
    align-self: center !important;
  }

  .gt-sm\:self-stretch {
    align-self: stretch !important;
  }

  .gt-sm\:justify-start {
    justify-content: flex-start !important;
  }

  .gt-sm\:justify-end {
    justify-content: flex-end !important;
  }

  .gt-sm\:justify-center {
    justify-content: center !important;
  }

  .gt-sm\:justify-between {
    justify-content: space-between !important;
  }

  .gt-sm\:justify-around {
    justify-content: space-around !important;
  }

  .gt-sm\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .gt-sm\:content-center {
    align-content: center !important;
  }

  .gt-sm\:content-start {
    align-content: flex-start !important;
  }

  .gt-sm\:content-end {
    align-content: flex-end !important;
  }

  .gt-sm\:content-between {
    align-content: space-between !important;
  }

  .gt-sm\:content-around {
    align-content: space-around !important;
  }

  .gt-sm\:flex-0 {
    flex: 0 0 auto !important;
  }

  .gt-sm\:flex-1 {
    flex: 1 1 0% !important;
  }

  .gt-sm\:flex-auto {
    flex: 1 1 auto !important;
  }

  .gt-sm\:flex-initial {
    flex: 0 1 auto !important;
  }

  .gt-sm\:flex-none {
    flex: none !important;
  }

  .gt-sm\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .gt-sm\:flex-grow {
    flex-grow: 1 !important;
  }

  .gt-sm\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .gt-sm\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .gt-sm\:order-1 {
    order: 1 !important;
  }

  .gt-sm\:order-2 {
    order: 2 !important;
  }

  .gt-sm\:order-3 {
    order: 3 !important;
  }

  .gt-sm\:order-4 {
    order: 4 !important;
  }

  .gt-sm\:order-5 {
    order: 5 !important;
  }

  .gt-sm\:order-6 {
    order: 6 !important;
  }

  .gt-sm\:order-7 {
    order: 7 !important;
  }

  .gt-sm\:order-8 {
    order: 8 !important;
  }

  .gt-sm\:order-9 {
    order: 9 !important;
  }

  .gt-sm\:order-10 {
    order: 10 !important;
  }

  .gt-sm\:order-11 {
    order: 11 !important;
  }

  .gt-sm\:order-12 {
    order: 12 !important;
  }

  .gt-sm\:order-first {
    order: -9999 !important;
  }

  .gt-sm\:order-last {
    order: 9999 !important;
  }

  .gt-sm\:order-none {
    order: 0 !important;
  }

  .gt-sm\:font-hairline {
    font-weight: 100 !important;
  }

  .gt-sm\:font-thin {
    font-weight: 200 !important;
  }

  .gt-sm\:font-light {
    font-weight: 300 !important;
  }

  .gt-sm\:font-normal {
    font-weight: 400 !important;
  }

  .gt-sm\:font-medium {
    font-weight: 500 !important;
  }

  .gt-sm\:font-semibold {
    font-weight: 600 !important;
  }

  .gt-sm\:font-bold {
    font-weight: 700 !important;
  }

  .gt-sm\:font-extrabold {
    font-weight: 800 !important;
  }

  .gt-sm\:font-black {
    font-weight: 900 !important;
  }

  .gt-sm\:h-0 {
    height: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .gt-sm\:h-13 {
    height: 3.25rem !important;
  }

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

  .gt-sm\:h-15 {
    height: 3.75rem !important;
  }

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

  .gt-sm\:h-18 {
    height: 4.5rem !important;
  }

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

  .gt-sm\:h-22 {
    height: 5.5rem !important;
  }

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

  .gt-sm\:h-26 {
    height: 6.5rem !important;
  }

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

  .gt-sm\:h-30 {
    height: 7.5rem !important;
  }

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

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

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

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

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

  .gt-sm\:h-50 {
    height: 12.5rem !important;
  }

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

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

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

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

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

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

  .gt-sm\:h-90 {
    height: 24rem !important;
  }

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

  .gt-sm\:h-100 {
    height: 25rem !important;
  }

  .gt-sm\:h-120 {
    height: 30rem !important;
  }

  .gt-sm\:h-128 {
    height: 32rem !important;
  }

  .gt-sm\:h-140 {
    height: 35rem !important;
  }

  .gt-sm\:h-160 {
    height: 40rem !important;
  }

  .gt-sm\:h-180 {
    height: 45rem !important;
  }

  .gt-sm\:h-192 {
    height: 48rem !important;
  }

  .gt-sm\:h-200 {
    height: 50rem !important;
  }

  .gt-sm\:h-240 {
    height: 60rem !important;
  }

  .gt-sm\:h-256 {
    height: 64rem !important;
  }

  .gt-sm\:h-280 {
    height: 70rem !important;
  }

  .gt-sm\:h-320 {
    height: 80rem !important;
  }

  .gt-sm\:h-360 {
    height: 90rem !important;
  }

  .gt-sm\:h-400 {
    height: 100rem !important;
  }

  .gt-sm\:h-480 {
    height: 120rem !important;
  }

  .gt-sm\:h-auto {
    height: auto !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .gt-sm\:h-1\/12 {
    height: 8.333333% !important;
  }

  .gt-sm\:h-2\/12 {
    height: 16.666667% !important;
  }

  .gt-sm\:h-3\/12 {
    height: 25% !important;
  }

  .gt-sm\:h-4\/12 {
    height: 33.333333% !important;
  }

  .gt-sm\:h-5\/12 {
    height: 41.666667% !important;
  }

  .gt-sm\:h-6\/12 {
    height: 50% !important;
  }

  .gt-sm\:h-7\/12 {
    height: 58.333333% !important;
  }

  .gt-sm\:h-8\/12 {
    height: 66.666667% !important;
  }

  .gt-sm\:h-9\/12 {
    height: 75% !important;
  }

  .gt-sm\:h-10\/12 {
    height: 83.333333% !important;
  }

  .gt-sm\:h-11\/12 {
    height: 91.666667% !important;
  }

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

  .gt-sm\:h-2px {
    height: 2px !important;
  }

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

  .gt-sm\:text-xs {
    font-size: 0.625rem !important;
  }

  .gt-sm\:text-sm {
    font-size: 0.75rem !important;
  }

  .gt-sm\:text-md {
    font-size: 0.8125rem !important;
  }

  .gt-sm\:text-base {
    font-size: 0.875rem !important;
  }

  .gt-sm\:text-lg {
    font-size: 1rem !important;
  }

  .gt-sm\:text-xl {
    font-size: 1.125rem !important;
  }

  .gt-sm\:text-2xl {
    font-size: 1.25rem !important;
  }

  .gt-sm\:text-3xl {
    font-size: 1.5rem !important;
  }

  .gt-sm\:text-4xl {
    font-size: 2rem !important;
  }

  .gt-sm\:text-5xl {
    font-size: 2.25rem !important;
  }

  .gt-sm\:text-6xl {
    font-size: 2.5rem !important;
  }

  .gt-sm\:text-7xl {
    font-size: 3rem !important;
  }

  .gt-sm\:text-8xl {
    font-size: 4rem !important;
  }

  .gt-sm\:text-9xl {
    font-size: 6rem !important;
  }

  .gt-sm\:text-10xl {
    font-size: 8rem !important;
  }

  .gt-sm\:leading-3 {
    line-height: 0.75rem !important;
  }

  .gt-sm\:leading-4 {
    line-height: 1rem !important;
  }

  .gt-sm\:leading-5 {
    line-height: 1.25rem !important;
  }

  .gt-sm\:leading-6 {
    line-height: 1.5rem !important;
  }

  .gt-sm\:leading-7 {
    line-height: 1.75rem !important;
  }

  .gt-sm\:leading-8 {
    line-height: 2rem !important;
  }

  .gt-sm\:leading-9 {
    line-height: 2.25rem !important;
  }

  .gt-sm\:leading-10 {
    line-height: 2.5rem !important;
  }

  .gt-sm\:leading-none {
    line-height: 1 !important;
  }

  .gt-sm\:leading-tight {
    line-height: 1.25 !important;
  }

  .gt-sm\:leading-snug {
    line-height: 1.375 !important;
  }

  .gt-sm\:leading-normal {
    line-height: 1.5 !important;
  }

  .gt-sm\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .gt-sm\:leading-loose {
    line-height: 2 !important;
  }

  .gt-sm\:m-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .gt-sm\:m-13 {
    margin: 3.25rem !important;
  }

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

  .gt-sm\:m-15 {
    margin: 3.75rem !important;
  }

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

  .gt-sm\:m-18 {
    margin: 4.5rem !important;
  }

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

  .gt-sm\:m-22 {
    margin: 5.5rem !important;
  }

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

  .gt-sm\:m-26 {
    margin: 6.5rem !important;
  }

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

  .gt-sm\:m-30 {
    margin: 7.5rem !important;
  }

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

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

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

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

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

  .gt-sm\:m-50 {
    margin: 12.5rem !important;
  }

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

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

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

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

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

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

  .gt-sm\:m-90 {
    margin: 24rem !important;
  }

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

  .gt-sm\:m-100 {
    margin: 25rem !important;
  }

  .gt-sm\:m-120 {
    margin: 30rem !important;
  }

  .gt-sm\:m-128 {
    margin: 32rem !important;
  }

  .gt-sm\:m-140 {
    margin: 35rem !important;
  }

  .gt-sm\:m-160 {
    margin: 40rem !important;
  }

  .gt-sm\:m-180 {
    margin: 45rem !important;
  }

  .gt-sm\:m-192 {
    margin: 48rem !important;
  }

  .gt-sm\:m-200 {
    margin: 50rem !important;
  }

  .gt-sm\:m-240 {
    margin: 60rem !important;
  }

  .gt-sm\:m-256 {
    margin: 64rem !important;
  }

  .gt-sm\:m-280 {
    margin: 70rem !important;
  }

  .gt-sm\:m-320 {
    margin: 80rem !important;
  }

  .gt-sm\:m-360 {
    margin: 90rem !important;
  }

  .gt-sm\:m-400 {
    margin: 100rem !important;
  }

  .gt-sm\:m-480 {
    margin: 120rem !important;
  }

  .gt-sm\:m-auto {
    margin: auto !important;
  }

  .gt-sm\:m-px {
    margin: 1px !important;
  }

  .gt-sm\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .gt-sm\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .gt-sm\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .gt-sm\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .gt-sm\:m-1\/2 {
    margin: 50% !important;
  }

  .gt-sm\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .gt-sm\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .gt-sm\:m-1\/4 {
    margin: 25% !important;
  }

  .gt-sm\:m-2\/4 {
    margin: 50% !important;
  }

  .gt-sm\:m-3\/4 {
    margin: 75% !important;
  }

  .gt-sm\:m-1\/5 {
    margin: 20% !important;
  }

  .gt-sm\:m-2\/5 {
    margin: 40% !important;
  }

  .gt-sm\:m-3\/5 {
    margin: 60% !important;
  }

  .gt-sm\:m-4\/5 {
    margin: 80% !important;
  }

  .gt-sm\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .gt-sm\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .gt-sm\:m-3\/6 {
    margin: 50% !important;
  }

  .gt-sm\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .gt-sm\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .gt-sm\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .gt-sm\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .gt-sm\:m-3\/12 {
    margin: 25% !important;
  }

  .gt-sm\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .gt-sm\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .gt-sm\:m-6\/12 {
    margin: 50% !important;
  }

  .gt-sm\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .gt-sm\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .gt-sm\:m-9\/12 {
    margin: 75% !important;
  }

  .gt-sm\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .gt-sm\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .gt-sm\:m-full {
    margin: 100% !important;
  }

  .gt-sm\:m-2px {
    margin: 2px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .gt-sm\:-m-13 {
    margin: -3.25rem !important;
  }

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

  .gt-sm\:-m-15 {
    margin: -3.75rem !important;
  }

  .gt-sm\:-m-16 {
    margin: -4rem !important;
  }

  .gt-sm\:-m-18 {
    margin: -4.5rem !important;
  }

  .gt-sm\:-m-20 {
    margin: -5rem !important;
  }

  .gt-sm\:-m-22 {
    margin: -5.5rem !important;
  }

  .gt-sm\:-m-24 {
    margin: -6rem !important;
  }

  .gt-sm\:-m-26 {
    margin: -6.5rem !important;
  }

  .gt-sm\:-m-28 {
    margin: -7rem !important;
  }

  .gt-sm\:-m-30 {
    margin: -7.5rem !important;
  }

  .gt-sm\:-m-32 {
    margin: -8rem !important;
  }

  .gt-sm\:-m-36 {
    margin: -9rem !important;
  }

  .gt-sm\:-m-40 {
    margin: -10rem !important;
  }

  .gt-sm\:-m-44 {
    margin: -11rem !important;
  }

  .gt-sm\:-m-48 {
    margin: -12rem !important;
  }

  .gt-sm\:-m-50 {
    margin: -12.5rem !important;
  }

  .gt-sm\:-m-52 {
    margin: -13rem !important;
  }

  .gt-sm\:-m-56 {
    margin: -14rem !important;
  }

  .gt-sm\:-m-60 {
    margin: -15rem !important;
  }

  .gt-sm\:-m-64 {
    margin: -16rem !important;
  }

  .gt-sm\:-m-72 {
    margin: -18rem !important;
  }

  .gt-sm\:-m-80 {
    margin: -20rem !important;
  }

  .gt-sm\:-m-90 {
    margin: -24rem !important;
  }

  .gt-sm\:-m-96 {
    margin: -24rem !important;
  }

  .gt-sm\:-m-100 {
    margin: -25rem !important;
  }

  .gt-sm\:-m-120 {
    margin: -30rem !important;
  }

  .gt-sm\:-m-128 {
    margin: -32rem !important;
  }

  .gt-sm\:-m-140 {
    margin: -35rem !important;
  }

  .gt-sm\:-m-160 {
    margin: -40rem !important;
  }

  .gt-sm\:-m-180 {
    margin: -45rem !important;
  }

  .gt-sm\:-m-192 {
    margin: -48rem !important;
  }

  .gt-sm\:-m-200 {
    margin: -50rem !important;
  }

  .gt-sm\:-m-240 {
    margin: -60rem !important;
  }

  .gt-sm\:-m-256 {
    margin: -64rem !important;
  }

  .gt-sm\:-m-280 {
    margin: -70rem !important;
  }

  .gt-sm\:-m-320 {
    margin: -80rem !important;
  }

  .gt-sm\:-m-360 {
    margin: -90rem !important;
  }

  .gt-sm\:-m-400 {
    margin: -100rem !important;
  }

  .gt-sm\:-m-480 {
    margin: -120rem !important;
  }

  .gt-sm\:-m-px {
    margin: -1px !important;
  }

  .gt-sm\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .gt-sm\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .gt-sm\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .gt-sm\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .gt-sm\:-m-1\/2 {
    margin: -50% !important;
  }

  .gt-sm\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .gt-sm\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .gt-sm\:-m-1\/4 {
    margin: -25% !important;
  }

  .gt-sm\:-m-2\/4 {
    margin: -50% !important;
  }

  .gt-sm\:-m-3\/4 {
    margin: -75% !important;
  }

  .gt-sm\:-m-1\/5 {
    margin: -20% !important;
  }

  .gt-sm\:-m-2\/5 {
    margin: -40% !important;
  }

  .gt-sm\:-m-3\/5 {
    margin: -60% !important;
  }

  .gt-sm\:-m-4\/5 {
    margin: -80% !important;
  }

  .gt-sm\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .gt-sm\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .gt-sm\:-m-3\/6 {
    margin: -50% !important;
  }

  .gt-sm\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .gt-sm\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .gt-sm\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .gt-sm\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .gt-sm\:-m-3\/12 {
    margin: -25% !important;
  }

  .gt-sm\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .gt-sm\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .gt-sm\:-m-6\/12 {
    margin: -50% !important;
  }

  .gt-sm\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .gt-sm\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .gt-sm\:-m-9\/12 {
    margin: -75% !important;
  }

  .gt-sm\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .gt-sm\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .gt-sm\:-m-full {
    margin: -100% !important;
  }

  .gt-sm\:-m-2px {
    margin: -2px !important;
  }

  .gt-sm\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .gt-sm\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .gt-sm\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .gt-sm\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .gt-sm\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .gt-sm\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .gt-sm\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .gt-sm\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .gt-sm\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .gt-sm\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .gt-sm\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .gt-sm\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .gt-sm\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .gt-sm\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .gt-sm\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .gt-sm\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .gt-sm\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .gt-sm\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .gt-sm\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .gt-sm\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .gt-sm\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .gt-sm\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .gt-sm\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .gt-sm\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .gt-sm\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .gt-sm\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .gt-sm\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .gt-sm\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .gt-sm\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .gt-sm\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .gt-sm\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .gt-sm\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .gt-sm\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .gt-sm\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .gt-sm\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .gt-sm\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .gt-sm\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .gt-sm\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .gt-sm\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .gt-sm\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .gt-sm\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .gt-sm\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .gt-sm\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .gt-sm\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .gt-sm\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .gt-sm\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .gt-sm\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .gt-sm\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .gt-sm\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .gt-sm\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .gt-sm\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .gt-sm\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .gt-sm\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .gt-sm\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .gt-sm\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .gt-sm\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .gt-sm\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .gt-sm\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .gt-sm\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .gt-sm\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .gt-sm\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .gt-sm\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .gt-sm\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .gt-sm\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .gt-sm\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .gt-sm\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .gt-sm\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .gt-sm\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .gt-sm\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .gt-sm\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .gt-sm\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .gt-sm\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .gt-sm\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .gt-sm\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .gt-sm\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .gt-sm\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .gt-sm\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .gt-sm\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .gt-sm\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .gt-sm\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .gt-sm\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .gt-sm\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .gt-sm\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .gt-sm\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .gt-sm\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .gt-sm\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .gt-sm\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .gt-sm\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .gt-sm\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .gt-sm\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .gt-sm\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .gt-sm\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .gt-sm\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .gt-sm\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .gt-sm\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .gt-sm\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .gt-sm\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .gt-sm\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .gt-sm\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .gt-sm\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .gt-sm\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .gt-sm\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .gt-sm\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .gt-sm\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .gt-sm\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .gt-sm\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .gt-sm\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .gt-sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .gt-sm\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .gt-sm\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .gt-sm\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .gt-sm\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .gt-sm\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .gt-sm\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .gt-sm\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .gt-sm\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .gt-sm\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .gt-sm\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .gt-sm\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-sm\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-sm\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .gt-sm\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .gt-sm\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .gt-sm\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .gt-sm\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .gt-sm\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .gt-sm\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-sm\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-sm\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .gt-sm\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .gt-sm\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .gt-sm\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .gt-sm\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .gt-sm\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .gt-sm\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .gt-sm\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .gt-sm\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .gt-sm\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .gt-sm\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .gt-sm\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .gt-sm\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .gt-sm\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .gt-sm\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-sm\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-sm\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .gt-sm\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .gt-sm\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .gt-sm\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .gt-sm\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .gt-sm\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .gt-sm\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .gt-sm\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .gt-sm\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .gt-sm\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .gt-sm\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .gt-sm\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .gt-sm\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .gt-sm\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .gt-sm\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-sm\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-sm\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .gt-sm\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .gt-sm\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .gt-sm\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .gt-sm\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .gt-sm\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .gt-sm\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .gt-sm\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .gt-sm\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .gt-sm\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .gt-sm\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .gt-sm\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .gt-sm\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .gt-sm\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .gt-sm\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .gt-sm\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .gt-sm\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .gt-sm\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .gt-sm\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .gt-sm\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .gt-sm\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .gt-sm\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .gt-sm\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .gt-sm\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .gt-sm\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .gt-sm\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .gt-sm\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .gt-sm\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .gt-sm\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .gt-sm\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .gt-sm\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .gt-sm\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .gt-sm\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .gt-sm\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .gt-sm\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .gt-sm\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .gt-sm\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .gt-sm\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .gt-sm\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .gt-sm\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .gt-sm\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .gt-sm\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .gt-sm\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .gt-sm\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .gt-sm\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .gt-sm\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .gt-sm\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .gt-sm\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .gt-sm\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .gt-sm\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .gt-sm\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .gt-sm\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .gt-sm\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .gt-sm\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .gt-sm\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .gt-sm\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .gt-sm\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .gt-sm\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .gt-sm\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .gt-sm\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .gt-sm\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .gt-sm\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .gt-sm\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .gt-sm\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .gt-sm\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .gt-sm\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .gt-sm\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .gt-sm\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .gt-sm\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .gt-sm\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .gt-sm\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .gt-sm\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .gt-sm\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .gt-sm\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .gt-sm\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .gt-sm\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .gt-sm\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .gt-sm\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .gt-sm\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .gt-sm\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .gt-sm\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .gt-sm\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .gt-sm\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .gt-sm\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .gt-sm\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .gt-sm\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .gt-sm\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .gt-sm\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .gt-sm\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .gt-sm\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .gt-sm\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .gt-sm\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .gt-sm\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .gt-sm\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .gt-sm\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .gt-sm\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .gt-sm\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .gt-sm\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .gt-sm\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .gt-sm\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .gt-sm\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .gt-sm\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .gt-sm\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .gt-sm\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .gt-sm\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .gt-sm\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .gt-sm\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .gt-sm\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .gt-sm\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .gt-sm\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .gt-sm\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .gt-sm\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .gt-sm\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .gt-sm\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .gt-sm\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .gt-sm\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .gt-sm\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .gt-sm\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .gt-sm\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .gt-sm\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .gt-sm\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .gt-sm\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .gt-sm\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .gt-sm\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .gt-sm\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .gt-sm\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .gt-sm\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .gt-sm\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .gt-sm\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-sm\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-sm\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .gt-sm\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .gt-sm\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .gt-sm\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .gt-sm\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .gt-sm\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .gt-sm\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-sm\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-sm\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .gt-sm\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .gt-sm\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .gt-sm\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .gt-sm\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .gt-sm\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .gt-sm\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .gt-sm\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .gt-sm\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .gt-sm\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .gt-sm\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .gt-sm\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .gt-sm\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .gt-sm\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .gt-sm\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-sm\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-sm\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .gt-sm\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .gt-sm\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .gt-sm\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .gt-sm\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .gt-sm\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .gt-sm\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .gt-sm\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .gt-sm\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .gt-sm\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .gt-sm\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .gt-sm\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .gt-sm\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .gt-sm\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .gt-sm\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-sm\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-sm\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .gt-sm\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .gt-sm\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .gt-sm\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .gt-sm\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .gt-sm\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .gt-sm\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .gt-sm\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .gt-sm\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .gt-sm\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .gt-sm\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .gt-sm\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .gt-sm\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .gt-sm\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .gt-sm\:mt-0 {
    margin-top: 0 !important;
  }

  .gt-sm\:mr-0 {
    margin-right: 0 !important;
  }

  .gt-sm\:mb-0 {
    margin-bottom: 0 !important;
  }

  .gt-sm\:ml-0 {
    margin-left: 0 !important;
  }

  .gt-sm\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .gt-sm\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .gt-sm\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .gt-sm\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .gt-sm\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .gt-sm\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .gt-sm\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .gt-sm\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .gt-sm\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .gt-sm\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .gt-sm\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .gt-sm\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .gt-sm\:mt-4 {
    margin-top: 1rem !important;
  }

  .gt-sm\:mr-4 {
    margin-right: 1rem !important;
  }

  .gt-sm\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .gt-sm\:ml-4 {
    margin-left: 1rem !important;
  }

  .gt-sm\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .gt-sm\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .gt-sm\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .gt-sm\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .gt-sm\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .gt-sm\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .gt-sm\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .gt-sm\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .gt-sm\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .gt-sm\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .gt-sm\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .gt-sm\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .gt-sm\:mt-8 {
    margin-top: 2rem !important;
  }

  .gt-sm\:mr-8 {
    margin-right: 2rem !important;
  }

  .gt-sm\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .gt-sm\:ml-8 {
    margin-left: 2rem !important;
  }

  .gt-sm\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .gt-sm\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .gt-sm\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .gt-sm\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .gt-sm\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .gt-sm\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .gt-sm\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .gt-sm\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .gt-sm\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .gt-sm\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .gt-sm\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .gt-sm\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .gt-sm\:mt-12 {
    margin-top: 3rem !important;
  }

  .gt-sm\:mr-12 {
    margin-right: 3rem !important;
  }

  .gt-sm\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .gt-sm\:ml-12 {
    margin-left: 3rem !important;
  }

  .gt-sm\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .gt-sm\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .gt-sm\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .gt-sm\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .gt-sm\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .gt-sm\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .gt-sm\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .gt-sm\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .gt-sm\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .gt-sm\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .gt-sm\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .gt-sm\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .gt-sm\:mt-16 {
    margin-top: 4rem !important;
  }

  .gt-sm\:mr-16 {
    margin-right: 4rem !important;
  }

  .gt-sm\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .gt-sm\:ml-16 {
    margin-left: 4rem !important;
  }

  .gt-sm\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .gt-sm\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .gt-sm\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .gt-sm\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .gt-sm\:mt-20 {
    margin-top: 5rem !important;
  }

  .gt-sm\:mr-20 {
    margin-right: 5rem !important;
  }

  .gt-sm\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .gt-sm\:ml-20 {
    margin-left: 5rem !important;
  }

  .gt-sm\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .gt-sm\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .gt-sm\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .gt-sm\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .gt-sm\:mt-24 {
    margin-top: 6rem !important;
  }

  .gt-sm\:mr-24 {
    margin-right: 6rem !important;
  }

  .gt-sm\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .gt-sm\:ml-24 {
    margin-left: 6rem !important;
  }

  .gt-sm\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .gt-sm\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .gt-sm\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .gt-sm\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .gt-sm\:mt-28 {
    margin-top: 7rem !important;
  }

  .gt-sm\:mr-28 {
    margin-right: 7rem !important;
  }

  .gt-sm\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .gt-sm\:ml-28 {
    margin-left: 7rem !important;
  }

  .gt-sm\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .gt-sm\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .gt-sm\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .gt-sm\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .gt-sm\:mt-32 {
    margin-top: 8rem !important;
  }

  .gt-sm\:mr-32 {
    margin-right: 8rem !important;
  }

  .gt-sm\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .gt-sm\:ml-32 {
    margin-left: 8rem !important;
  }

  .gt-sm\:mt-36 {
    margin-top: 9rem !important;
  }

  .gt-sm\:mr-36 {
    margin-right: 9rem !important;
  }

  .gt-sm\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .gt-sm\:ml-36 {
    margin-left: 9rem !important;
  }

  .gt-sm\:mt-40 {
    margin-top: 10rem !important;
  }

  .gt-sm\:mr-40 {
    margin-right: 10rem !important;
  }

  .gt-sm\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .gt-sm\:ml-40 {
    margin-left: 10rem !important;
  }

  .gt-sm\:mt-44 {
    margin-top: 11rem !important;
  }

  .gt-sm\:mr-44 {
    margin-right: 11rem !important;
  }

  .gt-sm\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .gt-sm\:ml-44 {
    margin-left: 11rem !important;
  }

  .gt-sm\:mt-48 {
    margin-top: 12rem !important;
  }

  .gt-sm\:mr-48 {
    margin-right: 12rem !important;
  }

  .gt-sm\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .gt-sm\:ml-48 {
    margin-left: 12rem !important;
  }

  .gt-sm\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .gt-sm\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .gt-sm\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .gt-sm\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .gt-sm\:mt-52 {
    margin-top: 13rem !important;
  }

  .gt-sm\:mr-52 {
    margin-right: 13rem !important;
  }

  .gt-sm\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .gt-sm\:ml-52 {
    margin-left: 13rem !important;
  }

  .gt-sm\:mt-56 {
    margin-top: 14rem !important;
  }

  .gt-sm\:mr-56 {
    margin-right: 14rem !important;
  }

  .gt-sm\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .gt-sm\:ml-56 {
    margin-left: 14rem !important;
  }

  .gt-sm\:mt-60 {
    margin-top: 15rem !important;
  }

  .gt-sm\:mr-60 {
    margin-right: 15rem !important;
  }

  .gt-sm\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .gt-sm\:ml-60 {
    margin-left: 15rem !important;
  }

  .gt-sm\:mt-64 {
    margin-top: 16rem !important;
  }

  .gt-sm\:mr-64 {
    margin-right: 16rem !important;
  }

  .gt-sm\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .gt-sm\:ml-64 {
    margin-left: 16rem !important;
  }

  .gt-sm\:mt-72 {
    margin-top: 18rem !important;
  }

  .gt-sm\:mr-72 {
    margin-right: 18rem !important;
  }

  .gt-sm\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .gt-sm\:ml-72 {
    margin-left: 18rem !important;
  }

  .gt-sm\:mt-80 {
    margin-top: 20rem !important;
  }

  .gt-sm\:mr-80 {
    margin-right: 20rem !important;
  }

  .gt-sm\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .gt-sm\:ml-80 {
    margin-left: 20rem !important;
  }

  .gt-sm\:mt-90 {
    margin-top: 24rem !important;
  }

  .gt-sm\:mr-90 {
    margin-right: 24rem !important;
  }

  .gt-sm\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .gt-sm\:ml-90 {
    margin-left: 24rem !important;
  }

  .gt-sm\:mt-96 {
    margin-top: 24rem !important;
  }

  .gt-sm\:mr-96 {
    margin-right: 24rem !important;
  }

  .gt-sm\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .gt-sm\:ml-96 {
    margin-left: 24rem !important;
  }

  .gt-sm\:mt-100 {
    margin-top: 25rem !important;
  }

  .gt-sm\:mr-100 {
    margin-right: 25rem !important;
  }

  .gt-sm\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .gt-sm\:ml-100 {
    margin-left: 25rem !important;
  }

  .gt-sm\:mt-120 {
    margin-top: 30rem !important;
  }

  .gt-sm\:mr-120 {
    margin-right: 30rem !important;
  }

  .gt-sm\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .gt-sm\:ml-120 {
    margin-left: 30rem !important;
  }

  .gt-sm\:mt-128 {
    margin-top: 32rem !important;
  }

  .gt-sm\:mr-128 {
    margin-right: 32rem !important;
  }

  .gt-sm\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .gt-sm\:ml-128 {
    margin-left: 32rem !important;
  }

  .gt-sm\:mt-140 {
    margin-top: 35rem !important;
  }

  .gt-sm\:mr-140 {
    margin-right: 35rem !important;
  }

  .gt-sm\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .gt-sm\:ml-140 {
    margin-left: 35rem !important;
  }

  .gt-sm\:mt-160 {
    margin-top: 40rem !important;
  }

  .gt-sm\:mr-160 {
    margin-right: 40rem !important;
  }

  .gt-sm\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .gt-sm\:ml-160 {
    margin-left: 40rem !important;
  }

  .gt-sm\:mt-180 {
    margin-top: 45rem !important;
  }

  .gt-sm\:mr-180 {
    margin-right: 45rem !important;
  }

  .gt-sm\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .gt-sm\:ml-180 {
    margin-left: 45rem !important;
  }

  .gt-sm\:mt-192 {
    margin-top: 48rem !important;
  }

  .gt-sm\:mr-192 {
    margin-right: 48rem !important;
  }

  .gt-sm\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .gt-sm\:ml-192 {
    margin-left: 48rem !important;
  }

  .gt-sm\:mt-200 {
    margin-top: 50rem !important;
  }

  .gt-sm\:mr-200 {
    margin-right: 50rem !important;
  }

  .gt-sm\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .gt-sm\:ml-200 {
    margin-left: 50rem !important;
  }

  .gt-sm\:mt-240 {
    margin-top: 60rem !important;
  }

  .gt-sm\:mr-240 {
    margin-right: 60rem !important;
  }

  .gt-sm\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .gt-sm\:ml-240 {
    margin-left: 60rem !important;
  }

  .gt-sm\:mt-256 {
    margin-top: 64rem !important;
  }

  .gt-sm\:mr-256 {
    margin-right: 64rem !important;
  }

  .gt-sm\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .gt-sm\:ml-256 {
    margin-left: 64rem !important;
  }

  .gt-sm\:mt-280 {
    margin-top: 70rem !important;
  }

  .gt-sm\:mr-280 {
    margin-right: 70rem !important;
  }

  .gt-sm\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .gt-sm\:ml-280 {
    margin-left: 70rem !important;
  }

  .gt-sm\:mt-320 {
    margin-top: 80rem !important;
  }

  .gt-sm\:mr-320 {
    margin-right: 80rem !important;
  }

  .gt-sm\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .gt-sm\:ml-320 {
    margin-left: 80rem !important;
  }

  .gt-sm\:mt-360 {
    margin-top: 90rem !important;
  }

  .gt-sm\:mr-360 {
    margin-right: 90rem !important;
  }

  .gt-sm\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .gt-sm\:ml-360 {
    margin-left: 90rem !important;
  }

  .gt-sm\:mt-400 {
    margin-top: 100rem !important;
  }

  .gt-sm\:mr-400 {
    margin-right: 100rem !important;
  }

  .gt-sm\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .gt-sm\:ml-400 {
    margin-left: 100rem !important;
  }

  .gt-sm\:mt-480 {
    margin-top: 120rem !important;
  }

  .gt-sm\:mr-480 {
    margin-right: 120rem !important;
  }

  .gt-sm\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .gt-sm\:ml-480 {
    margin-left: 120rem !important;
  }

  .gt-sm\:mt-auto {
    margin-top: auto !important;
  }

  .gt-sm\:mr-auto {
    margin-right: auto !important;
  }

  .gt-sm\:mb-auto {
    margin-bottom: auto !important;
  }

  .gt-sm\:ml-auto {
    margin-left: auto !important;
  }

  .gt-sm\:mt-px {
    margin-top: 1px !important;
  }

  .gt-sm\:mr-px {
    margin-right: 1px !important;
  }

  .gt-sm\:mb-px {
    margin-bottom: 1px !important;
  }

  .gt-sm\:ml-px {
    margin-left: 1px !important;
  }

  .gt-sm\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .gt-sm\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .gt-sm\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .gt-sm\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .gt-sm\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .gt-sm\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .gt-sm\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .gt-sm\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .gt-sm\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .gt-sm\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .gt-sm\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .gt-sm\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .gt-sm\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .gt-sm\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .gt-sm\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .gt-sm\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .gt-sm\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .gt-sm\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .gt-sm\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .gt-sm\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .gt-sm\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .gt-sm\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .gt-sm\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .gt-sm\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .gt-sm\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .gt-sm\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .gt-sm\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .gt-sm\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .gt-sm\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .gt-sm\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .gt-sm\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .gt-sm\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .gt-sm\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .gt-sm\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .gt-sm\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .gt-sm\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .gt-sm\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .gt-sm\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .gt-sm\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .gt-sm\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .gt-sm\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .gt-sm\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .gt-sm\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .gt-sm\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .gt-sm\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .gt-sm\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .gt-sm\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .gt-sm\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .gt-sm\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .gt-sm\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .gt-sm\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .gt-sm\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .gt-sm\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .gt-sm\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .gt-sm\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .gt-sm\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .gt-sm\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .gt-sm\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .gt-sm\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .gt-sm\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .gt-sm\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .gt-sm\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .gt-sm\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .gt-sm\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .gt-sm\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .gt-sm\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .gt-sm\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .gt-sm\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .gt-sm\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .gt-sm\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .gt-sm\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .gt-sm\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .gt-sm\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .gt-sm\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .gt-sm\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .gt-sm\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .gt-sm\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .gt-sm\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .gt-sm\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .gt-sm\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .gt-sm\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .gt-sm\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .gt-sm\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .gt-sm\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .gt-sm\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .gt-sm\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .gt-sm\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .gt-sm\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .gt-sm\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .gt-sm\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .gt-sm\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .gt-sm\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .gt-sm\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .gt-sm\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .gt-sm\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .gt-sm\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .gt-sm\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .gt-sm\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .gt-sm\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .gt-sm\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .gt-sm\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .gt-sm\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .gt-sm\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .gt-sm\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .gt-sm\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .gt-sm\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .gt-sm\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .gt-sm\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .gt-sm\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .gt-sm\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .gt-sm\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .gt-sm\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .gt-sm\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .gt-sm\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .gt-sm\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .gt-sm\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .gt-sm\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .gt-sm\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .gt-sm\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .gt-sm\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .gt-sm\:mt-full {
    margin-top: 100% !important;
  }

  .gt-sm\:mr-full {
    margin-right: 100% !important;
  }

  .gt-sm\:mb-full {
    margin-bottom: 100% !important;
  }

  .gt-sm\:ml-full {
    margin-left: 100% !important;
  }

  .gt-sm\:mt-2px {
    margin-top: 2px !important;
  }

  .gt-sm\:mr-2px {
    margin-right: 2px !important;
  }

  .gt-sm\:mb-2px {
    margin-bottom: 2px !important;
  }

  .gt-sm\:ml-2px {
    margin-left: 2px !important;
  }

  .gt-sm\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .gt-sm\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .gt-sm\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .gt-sm\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .gt-sm\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .gt-sm\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .gt-sm\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .gt-sm\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .gt-sm\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .gt-sm\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .gt-sm\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .gt-sm\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .gt-sm\:-mt-4 {
    margin-top: -1rem !important;
  }

  .gt-sm\:-mr-4 {
    margin-right: -1rem !important;
  }

  .gt-sm\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .gt-sm\:-ml-4 {
    margin-left: -1rem !important;
  }

  .gt-sm\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .gt-sm\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .gt-sm\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .gt-sm\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .gt-sm\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .gt-sm\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .gt-sm\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .gt-sm\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .gt-sm\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .gt-sm\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .gt-sm\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .gt-sm\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .gt-sm\:-mt-8 {
    margin-top: -2rem !important;
  }

  .gt-sm\:-mr-8 {
    margin-right: -2rem !important;
  }

  .gt-sm\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .gt-sm\:-ml-8 {
    margin-left: -2rem !important;
  }

  .gt-sm\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .gt-sm\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .gt-sm\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .gt-sm\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .gt-sm\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .gt-sm\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .gt-sm\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .gt-sm\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .gt-sm\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .gt-sm\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .gt-sm\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .gt-sm\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .gt-sm\:-mt-12 {
    margin-top: -3rem !important;
  }

  .gt-sm\:-mr-12 {
    margin-right: -3rem !important;
  }

  .gt-sm\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .gt-sm\:-ml-12 {
    margin-left: -3rem !important;
  }

  .gt-sm\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .gt-sm\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .gt-sm\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .gt-sm\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .gt-sm\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .gt-sm\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .gt-sm\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .gt-sm\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .gt-sm\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .gt-sm\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .gt-sm\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .gt-sm\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .gt-sm\:-mt-16 {
    margin-top: -4rem !important;
  }

  .gt-sm\:-mr-16 {
    margin-right: -4rem !important;
  }

  .gt-sm\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .gt-sm\:-ml-16 {
    margin-left: -4rem !important;
  }

  .gt-sm\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .gt-sm\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .gt-sm\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .gt-sm\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .gt-sm\:-mt-20 {
    margin-top: -5rem !important;
  }

  .gt-sm\:-mr-20 {
    margin-right: -5rem !important;
  }

  .gt-sm\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .gt-sm\:-ml-20 {
    margin-left: -5rem !important;
  }

  .gt-sm\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .gt-sm\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .gt-sm\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .gt-sm\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .gt-sm\:-mt-24 {
    margin-top: -6rem !important;
  }

  .gt-sm\:-mr-24 {
    margin-right: -6rem !important;
  }

  .gt-sm\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .gt-sm\:-ml-24 {
    margin-left: -6rem !important;
  }

  .gt-sm\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .gt-sm\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .gt-sm\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .gt-sm\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .gt-sm\:-mt-28 {
    margin-top: -7rem !important;
  }

  .gt-sm\:-mr-28 {
    margin-right: -7rem !important;
  }

  .gt-sm\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .gt-sm\:-ml-28 {
    margin-left: -7rem !important;
  }

  .gt-sm\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .gt-sm\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .gt-sm\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .gt-sm\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .gt-sm\:-mt-32 {
    margin-top: -8rem !important;
  }

  .gt-sm\:-mr-32 {
    margin-right: -8rem !important;
  }

  .gt-sm\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .gt-sm\:-ml-32 {
    margin-left: -8rem !important;
  }

  .gt-sm\:-mt-36 {
    margin-top: -9rem !important;
  }

  .gt-sm\:-mr-36 {
    margin-right: -9rem !important;
  }

  .gt-sm\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .gt-sm\:-ml-36 {
    margin-left: -9rem !important;
  }

  .gt-sm\:-mt-40 {
    margin-top: -10rem !important;
  }

  .gt-sm\:-mr-40 {
    margin-right: -10rem !important;
  }

  .gt-sm\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .gt-sm\:-ml-40 {
    margin-left: -10rem !important;
  }

  .gt-sm\:-mt-44 {
    margin-top: -11rem !important;
  }

  .gt-sm\:-mr-44 {
    margin-right: -11rem !important;
  }

  .gt-sm\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .gt-sm\:-ml-44 {
    margin-left: -11rem !important;
  }

  .gt-sm\:-mt-48 {
    margin-top: -12rem !important;
  }

  .gt-sm\:-mr-48 {
    margin-right: -12rem !important;
  }

  .gt-sm\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .gt-sm\:-ml-48 {
    margin-left: -12rem !important;
  }

  .gt-sm\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .gt-sm\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .gt-sm\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .gt-sm\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .gt-sm\:-mt-52 {
    margin-top: -13rem !important;
  }

  .gt-sm\:-mr-52 {
    margin-right: -13rem !important;
  }

  .gt-sm\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .gt-sm\:-ml-52 {
    margin-left: -13rem !important;
  }

  .gt-sm\:-mt-56 {
    margin-top: -14rem !important;
  }

  .gt-sm\:-mr-56 {
    margin-right: -14rem !important;
  }

  .gt-sm\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .gt-sm\:-ml-56 {
    margin-left: -14rem !important;
  }

  .gt-sm\:-mt-60 {
    margin-top: -15rem !important;
  }

  .gt-sm\:-mr-60 {
    margin-right: -15rem !important;
  }

  .gt-sm\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .gt-sm\:-ml-60 {
    margin-left: -15rem !important;
  }

  .gt-sm\:-mt-64 {
    margin-top: -16rem !important;
  }

  .gt-sm\:-mr-64 {
    margin-right: -16rem !important;
  }

  .gt-sm\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .gt-sm\:-ml-64 {
    margin-left: -16rem !important;
  }

  .gt-sm\:-mt-72 {
    margin-top: -18rem !important;
  }

  .gt-sm\:-mr-72 {
    margin-right: -18rem !important;
  }

  .gt-sm\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .gt-sm\:-ml-72 {
    margin-left: -18rem !important;
  }

  .gt-sm\:-mt-80 {
    margin-top: -20rem !important;
  }

  .gt-sm\:-mr-80 {
    margin-right: -20rem !important;
  }

  .gt-sm\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .gt-sm\:-ml-80 {
    margin-left: -20rem !important;
  }

  .gt-sm\:-mt-90 {
    margin-top: -24rem !important;
  }

  .gt-sm\:-mr-90 {
    margin-right: -24rem !important;
  }

  .gt-sm\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .gt-sm\:-ml-90 {
    margin-left: -24rem !important;
  }

  .gt-sm\:-mt-96 {
    margin-top: -24rem !important;
  }

  .gt-sm\:-mr-96 {
    margin-right: -24rem !important;
  }

  .gt-sm\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .gt-sm\:-ml-96 {
    margin-left: -24rem !important;
  }

  .gt-sm\:-mt-100 {
    margin-top: -25rem !important;
  }

  .gt-sm\:-mr-100 {
    margin-right: -25rem !important;
  }

  .gt-sm\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .gt-sm\:-ml-100 {
    margin-left: -25rem !important;
  }

  .gt-sm\:-mt-120 {
    margin-top: -30rem !important;
  }

  .gt-sm\:-mr-120 {
    margin-right: -30rem !important;
  }

  .gt-sm\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .gt-sm\:-ml-120 {
    margin-left: -30rem !important;
  }

  .gt-sm\:-mt-128 {
    margin-top: -32rem !important;
  }

  .gt-sm\:-mr-128 {
    margin-right: -32rem !important;
  }

  .gt-sm\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .gt-sm\:-ml-128 {
    margin-left: -32rem !important;
  }

  .gt-sm\:-mt-140 {
    margin-top: -35rem !important;
  }

  .gt-sm\:-mr-140 {
    margin-right: -35rem !important;
  }

  .gt-sm\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .gt-sm\:-ml-140 {
    margin-left: -35rem !important;
  }

  .gt-sm\:-mt-160 {
    margin-top: -40rem !important;
  }

  .gt-sm\:-mr-160 {
    margin-right: -40rem !important;
  }

  .gt-sm\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .gt-sm\:-ml-160 {
    margin-left: -40rem !important;
  }

  .gt-sm\:-mt-180 {
    margin-top: -45rem !important;
  }

  .gt-sm\:-mr-180 {
    margin-right: -45rem !important;
  }

  .gt-sm\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .gt-sm\:-ml-180 {
    margin-left: -45rem !important;
  }

  .gt-sm\:-mt-192 {
    margin-top: -48rem !important;
  }

  .gt-sm\:-mr-192 {
    margin-right: -48rem !important;
  }

  .gt-sm\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .gt-sm\:-ml-192 {
    margin-left: -48rem !important;
  }

  .gt-sm\:-mt-200 {
    margin-top: -50rem !important;
  }

  .gt-sm\:-mr-200 {
    margin-right: -50rem !important;
  }

  .gt-sm\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .gt-sm\:-ml-200 {
    margin-left: -50rem !important;
  }

  .gt-sm\:-mt-240 {
    margin-top: -60rem !important;
  }

  .gt-sm\:-mr-240 {
    margin-right: -60rem !important;
  }

  .gt-sm\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .gt-sm\:-ml-240 {
    margin-left: -60rem !important;
  }

  .gt-sm\:-mt-256 {
    margin-top: -64rem !important;
  }

  .gt-sm\:-mr-256 {
    margin-right: -64rem !important;
  }

  .gt-sm\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .gt-sm\:-ml-256 {
    margin-left: -64rem !important;
  }

  .gt-sm\:-mt-280 {
    margin-top: -70rem !important;
  }

  .gt-sm\:-mr-280 {
    margin-right: -70rem !important;
  }

  .gt-sm\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .gt-sm\:-ml-280 {
    margin-left: -70rem !important;
  }

  .gt-sm\:-mt-320 {
    margin-top: -80rem !important;
  }

  .gt-sm\:-mr-320 {
    margin-right: -80rem !important;
  }

  .gt-sm\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .gt-sm\:-ml-320 {
    margin-left: -80rem !important;
  }

  .gt-sm\:-mt-360 {
    margin-top: -90rem !important;
  }

  .gt-sm\:-mr-360 {
    margin-right: -90rem !important;
  }

  .gt-sm\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .gt-sm\:-ml-360 {
    margin-left: -90rem !important;
  }

  .gt-sm\:-mt-400 {
    margin-top: -100rem !important;
  }

  .gt-sm\:-mr-400 {
    margin-right: -100rem !important;
  }

  .gt-sm\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .gt-sm\:-ml-400 {
    margin-left: -100rem !important;
  }

  .gt-sm\:-mt-480 {
    margin-top: -120rem !important;
  }

  .gt-sm\:-mr-480 {
    margin-right: -120rem !important;
  }

  .gt-sm\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .gt-sm\:-ml-480 {
    margin-left: -120rem !important;
  }

  .gt-sm\:-mt-px {
    margin-top: -1px !important;
  }

  .gt-sm\:-mr-px {
    margin-right: -1px !important;
  }

  .gt-sm\:-mb-px {
    margin-bottom: -1px !important;
  }

  .gt-sm\:-ml-px {
    margin-left: -1px !important;
  }

  .gt-sm\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .gt-sm\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .gt-sm\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .gt-sm\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .gt-sm\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .gt-sm\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .gt-sm\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .gt-sm\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .gt-sm\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .gt-sm\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .gt-sm\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .gt-sm\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .gt-sm\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .gt-sm\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .gt-sm\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .gt-sm\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .gt-sm\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .gt-sm\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .gt-sm\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .gt-sm\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .gt-sm\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .gt-sm\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .gt-sm\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .gt-sm\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .gt-sm\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .gt-sm\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .gt-sm\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .gt-sm\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .gt-sm\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .gt-sm\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .gt-sm\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .gt-sm\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .gt-sm\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .gt-sm\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .gt-sm\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .gt-sm\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .gt-sm\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .gt-sm\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .gt-sm\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .gt-sm\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .gt-sm\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .gt-sm\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .gt-sm\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .gt-sm\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .gt-sm\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .gt-sm\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .gt-sm\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .gt-sm\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .gt-sm\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .gt-sm\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .gt-sm\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .gt-sm\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .gt-sm\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .gt-sm\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .gt-sm\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .gt-sm\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .gt-sm\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .gt-sm\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .gt-sm\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .gt-sm\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .gt-sm\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .gt-sm\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .gt-sm\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .gt-sm\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .gt-sm\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .gt-sm\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .gt-sm\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .gt-sm\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .gt-sm\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .gt-sm\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .gt-sm\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .gt-sm\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .gt-sm\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .gt-sm\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .gt-sm\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .gt-sm\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .gt-sm\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .gt-sm\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .gt-sm\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .gt-sm\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .gt-sm\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .gt-sm\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .gt-sm\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .gt-sm\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .gt-sm\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .gt-sm\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .gt-sm\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .gt-sm\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .gt-sm\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .gt-sm\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .gt-sm\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .gt-sm\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .gt-sm\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .gt-sm\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .gt-sm\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .gt-sm\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .gt-sm\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .gt-sm\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .gt-sm\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .gt-sm\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .gt-sm\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .gt-sm\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .gt-sm\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .gt-sm\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .gt-sm\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .gt-sm\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .gt-sm\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .gt-sm\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .gt-sm\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .gt-sm\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .gt-sm\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .gt-sm\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .gt-sm\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .gt-sm\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .gt-sm\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .gt-sm\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .gt-sm\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .gt-sm\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .gt-sm\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .gt-sm\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .gt-sm\:-mt-full {
    margin-top: -100% !important;
  }

  .gt-sm\:-mr-full {
    margin-right: -100% !important;
  }

  .gt-sm\:-mb-full {
    margin-bottom: -100% !important;
  }

  .gt-sm\:-ml-full {
    margin-left: -100% !important;
  }

  .gt-sm\:-mt-2px {
    margin-top: -2px !important;
  }

  .gt-sm\:-mr-2px {
    margin-right: -2px !important;
  }

  .gt-sm\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .gt-sm\:-ml-2px {
    margin-left: -2px !important;
  }

  .gt-sm\:max-h-0 {
    max-height: 0 !important;
  }

  .gt-sm\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .gt-sm\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .gt-sm\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .gt-sm\:max-h-4 {
    max-height: 1rem !important;
  }

  .gt-sm\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .gt-sm\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .gt-sm\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .gt-sm\:max-h-8 {
    max-height: 2rem !important;
  }

  .gt-sm\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .gt-sm\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .gt-sm\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .gt-sm\:max-h-12 {
    max-height: 3rem !important;
  }

  .gt-sm\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .gt-sm\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .gt-sm\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .gt-sm\:max-h-16 {
    max-height: 4rem !important;
  }

  .gt-sm\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .gt-sm\:max-h-20 {
    max-height: 5rem !important;
  }

  .gt-sm\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .gt-sm\:max-h-24 {
    max-height: 6rem !important;
  }

  .gt-sm\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .gt-sm\:max-h-28 {
    max-height: 7rem !important;
  }

  .gt-sm\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .gt-sm\:max-h-32 {
    max-height: 8rem !important;
  }

  .gt-sm\:max-h-36 {
    max-height: 9rem !important;
  }

  .gt-sm\:max-h-40 {
    max-height: 10rem !important;
  }

  .gt-sm\:max-h-44 {
    max-height: 11rem !important;
  }

  .gt-sm\:max-h-48 {
    max-height: 12rem !important;
  }

  .gt-sm\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .gt-sm\:max-h-52 {
    max-height: 13rem !important;
  }

  .gt-sm\:max-h-56 {
    max-height: 14rem !important;
  }

  .gt-sm\:max-h-60 {
    max-height: 15rem !important;
  }

  .gt-sm\:max-h-64 {
    max-height: 16rem !important;
  }

  .gt-sm\:max-h-72 {
    max-height: 18rem !important;
  }

  .gt-sm\:max-h-80 {
    max-height: 20rem !important;
  }

  .gt-sm\:max-h-90 {
    max-height: 24rem !important;
  }

  .gt-sm\:max-h-96 {
    max-height: 24rem !important;
  }

  .gt-sm\:max-h-100 {
    max-height: 25rem !important;
  }

  .gt-sm\:max-h-120 {
    max-height: 30rem !important;
  }

  .gt-sm\:max-h-128 {
    max-height: 32rem !important;
  }

  .gt-sm\:max-h-140 {
    max-height: 35rem !important;
  }

  .gt-sm\:max-h-160 {
    max-height: 40rem !important;
  }

  .gt-sm\:max-h-180 {
    max-height: 45rem !important;
  }

  .gt-sm\:max-h-192 {
    max-height: 48rem !important;
  }

  .gt-sm\:max-h-200 {
    max-height: 50rem !important;
  }

  .gt-sm\:max-h-240 {
    max-height: 60rem !important;
  }

  .gt-sm\:max-h-256 {
    max-height: 64rem !important;
  }

  .gt-sm\:max-h-280 {
    max-height: 70rem !important;
  }

  .gt-sm\:max-h-320 {
    max-height: 80rem !important;
  }

  .gt-sm\:max-h-360 {
    max-height: 90rem !important;
  }

  .gt-sm\:max-h-400 {
    max-height: 100rem !important;
  }

  .gt-sm\:max-h-480 {
    max-height: 120rem !important;
  }

  .gt-sm\:max-h-screen {
    max-height: 100vh !important;
  }

  .gt-sm\:max-h-px {
    max-height: 1px !important;
  }

  .gt-sm\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .gt-sm\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .gt-sm\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .gt-sm\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .gt-sm\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .gt-sm\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .gt-sm\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .gt-sm\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .gt-sm\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .gt-sm\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .gt-sm\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .gt-sm\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .gt-sm\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .gt-sm\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .gt-sm\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .gt-sm\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .gt-sm\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .gt-sm\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .gt-sm\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .gt-sm\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .gt-sm\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .gt-sm\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .gt-sm\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .gt-sm\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .gt-sm\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .gt-sm\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .gt-sm\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .gt-sm\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .gt-sm\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .gt-sm\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .gt-sm\:max-h-full {
    max-height: 100% !important;
  }

  .gt-sm\:max-h-2px {
    max-height: 2px !important;
  }

  .gt-sm\:max-h-none {
    max-height: none !important;
  }

  .gt-sm\:max-w-0 {
    max-width: 0 !important;
  }

  .gt-sm\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .gt-sm\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .gt-sm\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .gt-sm\:max-w-4 {
    max-width: 1rem !important;
  }

  .gt-sm\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .gt-sm\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .gt-sm\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .gt-sm\:max-w-8 {
    max-width: 2rem !important;
  }

  .gt-sm\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .gt-sm\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .gt-sm\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .gt-sm\:max-w-12 {
    max-width: 3rem !important;
  }

  .gt-sm\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .gt-sm\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .gt-sm\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .gt-sm\:max-w-16 {
    max-width: 4rem !important;
  }

  .gt-sm\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .gt-sm\:max-w-20 {
    max-width: 5rem !important;
  }

  .gt-sm\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .gt-sm\:max-w-24 {
    max-width: 6rem !important;
  }

  .gt-sm\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .gt-sm\:max-w-28 {
    max-width: 7rem !important;
  }

  .gt-sm\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .gt-sm\:max-w-32 {
    max-width: 8rem !important;
  }

  .gt-sm\:max-w-36 {
    max-width: 9rem !important;
  }

  .gt-sm\:max-w-40 {
    max-width: 10rem !important;
  }

  .gt-sm\:max-w-44 {
    max-width: 11rem !important;
  }

  .gt-sm\:max-w-48 {
    max-width: 12rem !important;
  }

  .gt-sm\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .gt-sm\:max-w-52 {
    max-width: 13rem !important;
  }

  .gt-sm\:max-w-56 {
    max-width: 14rem !important;
  }

  .gt-sm\:max-w-60 {
    max-width: 15rem !important;
  }

  .gt-sm\:max-w-64 {
    max-width: 16rem !important;
  }

  .gt-sm\:max-w-72 {
    max-width: 18rem !important;
  }

  .gt-sm\:max-w-80 {
    max-width: 20rem !important;
  }

  .gt-sm\:max-w-90 {
    max-width: 24rem !important;
  }

  .gt-sm\:max-w-96 {
    max-width: 24rem !important;
  }

  .gt-sm\:max-w-100 {
    max-width: 25rem !important;
  }

  .gt-sm\:max-w-120 {
    max-width: 30rem !important;
  }

  .gt-sm\:max-w-128 {
    max-width: 32rem !important;
  }

  .gt-sm\:max-w-140 {
    max-width: 35rem !important;
  }

  .gt-sm\:max-w-160 {
    max-width: 40rem !important;
  }

  .gt-sm\:max-w-180 {
    max-width: 45rem !important;
  }

  .gt-sm\:max-w-192 {
    max-width: 48rem !important;
  }

  .gt-sm\:max-w-200 {
    max-width: 50rem !important;
  }

  .gt-sm\:max-w-240 {
    max-width: 60rem !important;
  }

  .gt-sm\:max-w-256 {
    max-width: 64rem !important;
  }

  .gt-sm\:max-w-280 {
    max-width: 70rem !important;
  }

  .gt-sm\:max-w-320 {
    max-width: 80rem !important;
  }

  .gt-sm\:max-w-360 {
    max-width: 90rem !important;
  }

  .gt-sm\:max-w-400 {
    max-width: 100rem !important;
  }

  .gt-sm\:max-w-480 {
    max-width: 120rem !important;
  }

  .gt-sm\:max-w-none {
    max-width: none !important;
  }

  .gt-sm\:max-w-xs {
    max-width: 20rem !important;
  }

  .gt-sm\:max-w-sm {
    max-width: 24rem !important;
  }

  .gt-sm\:max-w-md {
    max-width: 28rem !important;
  }

  .gt-sm\:max-w-lg {
    max-width: 32rem !important;
  }

  .gt-sm\:max-w-xl {
    max-width: 36rem !important;
  }

  .gt-sm\:max-w-2xl {
    max-width: 42rem !important;
  }

  .gt-sm\:max-w-3xl {
    max-width: 48rem !important;
  }

  .gt-sm\:max-w-4xl {
    max-width: 56rem !important;
  }

  .gt-sm\:max-w-5xl {
    max-width: 64rem !important;
  }

  .gt-sm\:max-w-6xl {
    max-width: 72rem !important;
  }

  .gt-sm\:max-w-7xl {
    max-width: 80rem !important;
  }

  .gt-sm\:max-w-full {
    max-width: 100% !important;
  }

  .gt-sm\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .gt-sm\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .gt-sm\:max-w-screen {
    max-width: 100vw !important;
  }

  .gt-sm\:max-w-px {
    max-width: 1px !important;
  }

  .gt-sm\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .gt-sm\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .gt-sm\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .gt-sm\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .gt-sm\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .gt-sm\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .gt-sm\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .gt-sm\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .gt-sm\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .gt-sm\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .gt-sm\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .gt-sm\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .gt-sm\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .gt-sm\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .gt-sm\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .gt-sm\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .gt-sm\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .gt-sm\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .gt-sm\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .gt-sm\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .gt-sm\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .gt-sm\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .gt-sm\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .gt-sm\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .gt-sm\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .gt-sm\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .gt-sm\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .gt-sm\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .gt-sm\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .gt-sm\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .gt-sm\:max-w-2px {
    max-width: 2px !important;
  }

  .gt-sm\:min-h-0 {
    min-height: 0 !important;
  }

  .gt-sm\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .gt-sm\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .gt-sm\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .gt-sm\:min-h-4 {
    min-height: 1rem !important;
  }

  .gt-sm\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .gt-sm\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .gt-sm\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .gt-sm\:min-h-8 {
    min-height: 2rem !important;
  }

  .gt-sm\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .gt-sm\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .gt-sm\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .gt-sm\:min-h-12 {
    min-height: 3rem !important;
  }

  .gt-sm\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .gt-sm\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .gt-sm\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .gt-sm\:min-h-16 {
    min-height: 4rem !important;
  }

  .gt-sm\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .gt-sm\:min-h-20 {
    min-height: 5rem !important;
  }

  .gt-sm\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .gt-sm\:min-h-24 {
    min-height: 6rem !important;
  }

  .gt-sm\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .gt-sm\:min-h-28 {
    min-height: 7rem !important;
  }

  .gt-sm\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .gt-sm\:min-h-32 {
    min-height: 8rem !important;
  }

  .gt-sm\:min-h-36 {
    min-height: 9rem !important;
  }

  .gt-sm\:min-h-40 {
    min-height: 10rem !important;
  }

  .gt-sm\:min-h-44 {
    min-height: 11rem !important;
  }

  .gt-sm\:min-h-48 {
    min-height: 12rem !important;
  }

  .gt-sm\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .gt-sm\:min-h-52 {
    min-height: 13rem !important;
  }

  .gt-sm\:min-h-56 {
    min-height: 14rem !important;
  }

  .gt-sm\:min-h-60 {
    min-height: 15rem !important;
  }

  .gt-sm\:min-h-64 {
    min-height: 16rem !important;
  }

  .gt-sm\:min-h-72 {
    min-height: 18rem !important;
  }

  .gt-sm\:min-h-80 {
    min-height: 20rem !important;
  }

  .gt-sm\:min-h-90 {
    min-height: 24rem !important;
  }

  .gt-sm\:min-h-96 {
    min-height: 24rem !important;
  }

  .gt-sm\:min-h-100 {
    min-height: 25rem !important;
  }

  .gt-sm\:min-h-120 {
    min-height: 30rem !important;
  }

  .gt-sm\:min-h-128 {
    min-height: 32rem !important;
  }

  .gt-sm\:min-h-140 {
    min-height: 35rem !important;
  }

  .gt-sm\:min-h-160 {
    min-height: 40rem !important;
  }

  .gt-sm\:min-h-180 {
    min-height: 45rem !important;
  }

  .gt-sm\:min-h-192 {
    min-height: 48rem !important;
  }

  .gt-sm\:min-h-200 {
    min-height: 50rem !important;
  }

  .gt-sm\:min-h-240 {
    min-height: 60rem !important;
  }

  .gt-sm\:min-h-256 {
    min-height: 64rem !important;
  }

  .gt-sm\:min-h-280 {
    min-height: 70rem !important;
  }

  .gt-sm\:min-h-320 {
    min-height: 80rem !important;
  }

  .gt-sm\:min-h-360 {
    min-height: 90rem !important;
  }

  .gt-sm\:min-h-400 {
    min-height: 100rem !important;
  }

  .gt-sm\:min-h-480 {
    min-height: 120rem !important;
  }

  .gt-sm\:min-h-full {
    min-height: 100% !important;
  }

  .gt-sm\:min-h-screen {
    min-height: 100vh !important;
  }

  .gt-sm\:min-h-px {
    min-height: 1px !important;
  }

  .gt-sm\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .gt-sm\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .gt-sm\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .gt-sm\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .gt-sm\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .gt-sm\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .gt-sm\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .gt-sm\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .gt-sm\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .gt-sm\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .gt-sm\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .gt-sm\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .gt-sm\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .gt-sm\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .gt-sm\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .gt-sm\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .gt-sm\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .gt-sm\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .gt-sm\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .gt-sm\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .gt-sm\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .gt-sm\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .gt-sm\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .gt-sm\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .gt-sm\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .gt-sm\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .gt-sm\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .gt-sm\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .gt-sm\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .gt-sm\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .gt-sm\:min-h-2px {
    min-height: 2px !important;
  }

  .gt-sm\:min-w-0 {
    min-width: 0 !important;
  }

  .gt-sm\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .gt-sm\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .gt-sm\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .gt-sm\:min-w-4 {
    min-width: 1rem !important;
  }

  .gt-sm\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .gt-sm\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .gt-sm\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .gt-sm\:min-w-8 {
    min-width: 2rem !important;
  }

  .gt-sm\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .gt-sm\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .gt-sm\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .gt-sm\:min-w-12 {
    min-width: 3rem !important;
  }

  .gt-sm\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .gt-sm\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .gt-sm\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .gt-sm\:min-w-16 {
    min-width: 4rem !important;
  }

  .gt-sm\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .gt-sm\:min-w-20 {
    min-width: 5rem !important;
  }

  .gt-sm\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .gt-sm\:min-w-24 {
    min-width: 6rem !important;
  }

  .gt-sm\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .gt-sm\:min-w-28 {
    min-width: 7rem !important;
  }

  .gt-sm\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .gt-sm\:min-w-32 {
    min-width: 8rem !important;
  }

  .gt-sm\:min-w-36 {
    min-width: 9rem !important;
  }

  .gt-sm\:min-w-40 {
    min-width: 10rem !important;
  }

  .gt-sm\:min-w-44 {
    min-width: 11rem !important;
  }

  .gt-sm\:min-w-48 {
    min-width: 12rem !important;
  }

  .gt-sm\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .gt-sm\:min-w-52 {
    min-width: 13rem !important;
  }

  .gt-sm\:min-w-56 {
    min-width: 14rem !important;
  }

  .gt-sm\:min-w-60 {
    min-width: 15rem !important;
  }

  .gt-sm\:min-w-64 {
    min-width: 16rem !important;
  }

  .gt-sm\:min-w-72 {
    min-width: 18rem !important;
  }

  .gt-sm\:min-w-80 {
    min-width: 20rem !important;
  }

  .gt-sm\:min-w-90 {
    min-width: 24rem !important;
  }

  .gt-sm\:min-w-96 {
    min-width: 24rem !important;
  }

  .gt-sm\:min-w-100 {
    min-width: 25rem !important;
  }

  .gt-sm\:min-w-120 {
    min-width: 30rem !important;
  }

  .gt-sm\:min-w-128 {
    min-width: 32rem !important;
  }

  .gt-sm\:min-w-140 {
    min-width: 35rem !important;
  }

  .gt-sm\:min-w-160 {
    min-width: 40rem !important;
  }

  .gt-sm\:min-w-180 {
    min-width: 45rem !important;
  }

  .gt-sm\:min-w-192 {
    min-width: 48rem !important;
  }

  .gt-sm\:min-w-200 {
    min-width: 50rem !important;
  }

  .gt-sm\:min-w-240 {
    min-width: 60rem !important;
  }

  .gt-sm\:min-w-256 {
    min-width: 64rem !important;
  }

  .gt-sm\:min-w-280 {
    min-width: 70rem !important;
  }

  .gt-sm\:min-w-320 {
    min-width: 80rem !important;
  }

  .gt-sm\:min-w-360 {
    min-width: 90rem !important;
  }

  .gt-sm\:min-w-400 {
    min-width: 100rem !important;
  }

  .gt-sm\:min-w-480 {
    min-width: 120rem !important;
  }

  .gt-sm\:min-w-full {
    min-width: 100% !important;
  }

  .gt-sm\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .gt-sm\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .gt-sm\:min-w-screen {
    min-width: 100vw !important;
  }

  .gt-sm\:min-w-px {
    min-width: 1px !important;
  }

  .gt-sm\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .gt-sm\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .gt-sm\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .gt-sm\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .gt-sm\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .gt-sm\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .gt-sm\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .gt-sm\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .gt-sm\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .gt-sm\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .gt-sm\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .gt-sm\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .gt-sm\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .gt-sm\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .gt-sm\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .gt-sm\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .gt-sm\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .gt-sm\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .gt-sm\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .gt-sm\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .gt-sm\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .gt-sm\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .gt-sm\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .gt-sm\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .gt-sm\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .gt-sm\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .gt-sm\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .gt-sm\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .gt-sm\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .gt-sm\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .gt-sm\:min-w-2px {
    min-width: 2px !important;
  }

  .gt-sm\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .gt-sm\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .gt-sm\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .gt-sm\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .gt-sm\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .gt-sm\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .gt-sm\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .gt-sm\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .gt-sm\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .gt-sm\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .gt-sm\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .gt-sm\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .gt-sm\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .gt-sm\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .gt-sm\:opacity-0 {
    opacity: 0 !important;
  }

  .gt-sm\:opacity-12 {
    opacity: 0.12 !important;
  }

  .gt-sm\:opacity-25 {
    opacity: 0.25 !important;
  }

  .gt-sm\:opacity-38 {
    opacity: 0.38 !important;
  }

  .gt-sm\:opacity-50 {
    opacity: 0.5 !important;
  }

  .gt-sm\:opacity-54 {
    opacity: 0.54 !important;
  }

  .gt-sm\:opacity-70 {
    opacity: 0.7 !important;
  }

  .gt-sm\:opacity-75 {
    opacity: 0.75 !important;
  }

  .gt-sm\:opacity-84 {
    opacity: 0.84 !important;
  }

  .gt-sm\:opacity-100 {
    opacity: 1 !important;
  }

  .gt-sm\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .gt-sm\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .gt-sm\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .gt-sm\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .gt-sm\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .gt-sm\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .gt-sm\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .gt-sm\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .gt-sm\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .gt-sm\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .gt-sm\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .gt-sm\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .gt-sm\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .gt-sm\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .gt-sm\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .gt-sm\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .gt-sm\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .gt-sm\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .gt-sm\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .gt-sm\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .gt-sm\:overflow-auto {
    overflow: auto !important;
  }

  .gt-sm\:overflow-hidden {
    overflow: hidden !important;
  }

  .gt-sm\:overflow-visible {
    overflow: visible !important;
  }

  .gt-sm\:overflow-scroll {
    overflow: scroll !important;
  }

  .gt-sm\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .gt-sm\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .gt-sm\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .gt-sm\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .gt-sm\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .gt-sm\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .gt-sm\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .gt-sm\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .gt-sm\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .gt-sm\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .gt-sm\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .gt-sm\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .gt-sm\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .gt-sm\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .gt-sm\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .gt-sm\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .gt-sm\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .gt-sm\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .gt-sm\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .gt-sm\:p-0 {
    padding: 0 !important;
  }

  .gt-sm\:p-1 {
    padding: 0.25rem !important;
  }

  .gt-sm\:p-2 {
    padding: 0.5rem !important;
  }

  .gt-sm\:p-3 {
    padding: 0.75rem !important;
  }

  .gt-sm\:p-4 {
    padding: 1rem !important;
  }

  .gt-sm\:p-5 {
    padding: 1.25rem !important;
  }

  .gt-sm\:p-6 {
    padding: 1.5rem !important;
  }

  .gt-sm\:p-7 {
    padding: 1.75rem !important;
  }

  .gt-sm\:p-8 {
    padding: 2rem !important;
  }

  .gt-sm\:p-9 {
    padding: 2.25rem !important;
  }

  .gt-sm\:p-10 {
    padding: 2.5rem !important;
  }

  .gt-sm\:p-11 {
    padding: 2.75rem !important;
  }

  .gt-sm\:p-12 {
    padding: 3rem !important;
  }

  .gt-sm\:p-13 {
    padding: 3.25rem !important;
  }

  .gt-sm\:p-14 {
    padding: 3.5rem !important;
  }

  .gt-sm\:p-15 {
    padding: 3.75rem !important;
  }

  .gt-sm\:p-16 {
    padding: 4rem !important;
  }

  .gt-sm\:p-18 {
    padding: 4.5rem !important;
  }

  .gt-sm\:p-20 {
    padding: 5rem !important;
  }

  .gt-sm\:p-22 {
    padding: 5.5rem !important;
  }

  .gt-sm\:p-24 {
    padding: 6rem !important;
  }

  .gt-sm\:p-26 {
    padding: 6.5rem !important;
  }

  .gt-sm\:p-28 {
    padding: 7rem !important;
  }

  .gt-sm\:p-30 {
    padding: 7.5rem !important;
  }

  .gt-sm\:p-32 {
    padding: 8rem !important;
  }

  .gt-sm\:p-36 {
    padding: 9rem !important;
  }

  .gt-sm\:p-40 {
    padding: 10rem !important;
  }

  .gt-sm\:p-44 {
    padding: 11rem !important;
  }

  .gt-sm\:p-48 {
    padding: 12rem !important;
  }

  .gt-sm\:p-50 {
    padding: 12.5rem !important;
  }

  .gt-sm\:p-52 {
    padding: 13rem !important;
  }

  .gt-sm\:p-56 {
    padding: 14rem !important;
  }

  .gt-sm\:p-60 {
    padding: 15rem !important;
  }

  .gt-sm\:p-64 {
    padding: 16rem !important;
  }

  .gt-sm\:p-72 {
    padding: 18rem !important;
  }

  .gt-sm\:p-80 {
    padding: 20rem !important;
  }

  .gt-sm\:p-90 {
    padding: 24rem !important;
  }

  .gt-sm\:p-96 {
    padding: 24rem !important;
  }

  .gt-sm\:p-100 {
    padding: 25rem !important;
  }

  .gt-sm\:p-120 {
    padding: 30rem !important;
  }

  .gt-sm\:p-128 {
    padding: 32rem !important;
  }

  .gt-sm\:p-140 {
    padding: 35rem !important;
  }

  .gt-sm\:p-160 {
    padding: 40rem !important;
  }

  .gt-sm\:p-180 {
    padding: 45rem !important;
  }

  .gt-sm\:p-192 {
    padding: 48rem !important;
  }

  .gt-sm\:p-200 {
    padding: 50rem !important;
  }

  .gt-sm\:p-240 {
    padding: 60rem !important;
  }

  .gt-sm\:p-256 {
    padding: 64rem !important;
  }

  .gt-sm\:p-280 {
    padding: 70rem !important;
  }

  .gt-sm\:p-320 {
    padding: 80rem !important;
  }

  .gt-sm\:p-360 {
    padding: 90rem !important;
  }

  .gt-sm\:p-400 {
    padding: 100rem !important;
  }

  .gt-sm\:p-480 {
    padding: 120rem !important;
  }

  .gt-sm\:p-px {
    padding: 1px !important;
  }

  .gt-sm\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .gt-sm\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .gt-sm\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .gt-sm\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .gt-sm\:p-1\/2 {
    padding: 50% !important;
  }

  .gt-sm\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .gt-sm\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .gt-sm\:p-1\/4 {
    padding: 25% !important;
  }

  .gt-sm\:p-2\/4 {
    padding: 50% !important;
  }

  .gt-sm\:p-3\/4 {
    padding: 75% !important;
  }

  .gt-sm\:p-1\/5 {
    padding: 20% !important;
  }

  .gt-sm\:p-2\/5 {
    padding: 40% !important;
  }

  .gt-sm\:p-3\/5 {
    padding: 60% !important;
  }

  .gt-sm\:p-4\/5 {
    padding: 80% !important;
  }

  .gt-sm\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .gt-sm\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .gt-sm\:p-3\/6 {
    padding: 50% !important;
  }

  .gt-sm\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .gt-sm\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .gt-sm\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .gt-sm\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .gt-sm\:p-3\/12 {
    padding: 25% !important;
  }

  .gt-sm\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .gt-sm\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .gt-sm\:p-6\/12 {
    padding: 50% !important;
  }

  .gt-sm\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .gt-sm\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .gt-sm\:p-9\/12 {
    padding: 75% !important;
  }

  .gt-sm\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .gt-sm\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .gt-sm\:p-full {
    padding: 100% !important;
  }

  .gt-sm\:p-2px {
    padding: 2px !important;
  }

  .gt-sm\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .gt-sm\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .gt-sm\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .gt-sm\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .gt-sm\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .gt-sm\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .gt-sm\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .gt-sm\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .gt-sm\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .gt-sm\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .gt-sm\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .gt-sm\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .gt-sm\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .gt-sm\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .gt-sm\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .gt-sm\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .gt-sm\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .gt-sm\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .gt-sm\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .gt-sm\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .gt-sm\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .gt-sm\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .gt-sm\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .gt-sm\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .gt-sm\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .gt-sm\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .gt-sm\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .gt-sm\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .gt-sm\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .gt-sm\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .gt-sm\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .gt-sm\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .gt-sm\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .gt-sm\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .gt-sm\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .gt-sm\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .gt-sm\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .gt-sm\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .gt-sm\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .gt-sm\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .gt-sm\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .gt-sm\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .gt-sm\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .gt-sm\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .gt-sm\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .gt-sm\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .gt-sm\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .gt-sm\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .gt-sm\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .gt-sm\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .gt-sm\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .gt-sm\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .gt-sm\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .gt-sm\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .gt-sm\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .gt-sm\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .gt-sm\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .gt-sm\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .gt-sm\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .gt-sm\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .gt-sm\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .gt-sm\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .gt-sm\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .gt-sm\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .gt-sm\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .gt-sm\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .gt-sm\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .gt-sm\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .gt-sm\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .gt-sm\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .gt-sm\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .gt-sm\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .gt-sm\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .gt-sm\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .gt-sm\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .gt-sm\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .gt-sm\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .gt-sm\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .gt-sm\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .gt-sm\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .gt-sm\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .gt-sm\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .gt-sm\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .gt-sm\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .gt-sm\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .gt-sm\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .gt-sm\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .gt-sm\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .gt-sm\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .gt-sm\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .gt-sm\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .gt-sm\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .gt-sm\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .gt-sm\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .gt-sm\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .gt-sm\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .gt-sm\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .gt-sm\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .gt-sm\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .gt-sm\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .gt-sm\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .gt-sm\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .gt-sm\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .gt-sm\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .gt-sm\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .gt-sm\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .gt-sm\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .gt-sm\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .gt-sm\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .gt-sm\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .gt-sm\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .gt-sm\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .gt-sm\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .gt-sm\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .gt-sm\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .gt-sm\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .gt-sm\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-sm\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-sm\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .gt-sm\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .gt-sm\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .gt-sm\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .gt-sm\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .gt-sm\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .gt-sm\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-sm\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-sm\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .gt-sm\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .gt-sm\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .gt-sm\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .gt-sm\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .gt-sm\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .gt-sm\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .gt-sm\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .gt-sm\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .gt-sm\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .gt-sm\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .gt-sm\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .gt-sm\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .gt-sm\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .gt-sm\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-sm\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-sm\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .gt-sm\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .gt-sm\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .gt-sm\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .gt-sm\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .gt-sm\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .gt-sm\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .gt-sm\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .gt-sm\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .gt-sm\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .gt-sm\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .gt-sm\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .gt-sm\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .gt-sm\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .gt-sm\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-sm\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-sm\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .gt-sm\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .gt-sm\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .gt-sm\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .gt-sm\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .gt-sm\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .gt-sm\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .gt-sm\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .gt-sm\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .gt-sm\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .gt-sm\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .gt-sm\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .gt-sm\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .gt-sm\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .gt-sm\:pt-0 {
    padding-top: 0 !important;
  }

  .gt-sm\:pr-0 {
    padding-right: 0 !important;
  }

  .gt-sm\:pb-0 {
    padding-bottom: 0 !important;
  }

  .gt-sm\:pl-0 {
    padding-left: 0 !important;
  }

  .gt-sm\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .gt-sm\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .gt-sm\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .gt-sm\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .gt-sm\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .gt-sm\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .gt-sm\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .gt-sm\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .gt-sm\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .gt-sm\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .gt-sm\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .gt-sm\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .gt-sm\:pt-4 {
    padding-top: 1rem !important;
  }

  .gt-sm\:pr-4 {
    padding-right: 1rem !important;
  }

  .gt-sm\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .gt-sm\:pl-4 {
    padding-left: 1rem !important;
  }

  .gt-sm\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .gt-sm\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .gt-sm\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .gt-sm\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .gt-sm\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .gt-sm\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .gt-sm\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .gt-sm\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .gt-sm\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .gt-sm\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .gt-sm\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .gt-sm\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .gt-sm\:pt-8 {
    padding-top: 2rem !important;
  }

  .gt-sm\:pr-8 {
    padding-right: 2rem !important;
  }

  .gt-sm\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .gt-sm\:pl-8 {
    padding-left: 2rem !important;
  }

  .gt-sm\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .gt-sm\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .gt-sm\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .gt-sm\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .gt-sm\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .gt-sm\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .gt-sm\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .gt-sm\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .gt-sm\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .gt-sm\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .gt-sm\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .gt-sm\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .gt-sm\:pt-12 {
    padding-top: 3rem !important;
  }

  .gt-sm\:pr-12 {
    padding-right: 3rem !important;
  }

  .gt-sm\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .gt-sm\:pl-12 {
    padding-left: 3rem !important;
  }

  .gt-sm\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .gt-sm\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .gt-sm\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .gt-sm\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .gt-sm\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .gt-sm\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .gt-sm\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .gt-sm\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .gt-sm\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .gt-sm\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .gt-sm\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .gt-sm\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .gt-sm\:pt-16 {
    padding-top: 4rem !important;
  }

  .gt-sm\:pr-16 {
    padding-right: 4rem !important;
  }

  .gt-sm\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .gt-sm\:pl-16 {
    padding-left: 4rem !important;
  }

  .gt-sm\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .gt-sm\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .gt-sm\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .gt-sm\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .gt-sm\:pt-20 {
    padding-top: 5rem !important;
  }

  .gt-sm\:pr-20 {
    padding-right: 5rem !important;
  }

  .gt-sm\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .gt-sm\:pl-20 {
    padding-left: 5rem !important;
  }

  .gt-sm\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .gt-sm\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .gt-sm\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .gt-sm\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .gt-sm\:pt-24 {
    padding-top: 6rem !important;
  }

  .gt-sm\:pr-24 {
    padding-right: 6rem !important;
  }

  .gt-sm\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .gt-sm\:pl-24 {
    padding-left: 6rem !important;
  }

  .gt-sm\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .gt-sm\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .gt-sm\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .gt-sm\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .gt-sm\:pt-28 {
    padding-top: 7rem !important;
  }

  .gt-sm\:pr-28 {
    padding-right: 7rem !important;
  }

  .gt-sm\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .gt-sm\:pl-28 {
    padding-left: 7rem !important;
  }

  .gt-sm\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .gt-sm\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .gt-sm\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .gt-sm\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .gt-sm\:pt-32 {
    padding-top: 8rem !important;
  }

  .gt-sm\:pr-32 {
    padding-right: 8rem !important;
  }

  .gt-sm\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .gt-sm\:pl-32 {
    padding-left: 8rem !important;
  }

  .gt-sm\:pt-36 {
    padding-top: 9rem !important;
  }

  .gt-sm\:pr-36 {
    padding-right: 9rem !important;
  }

  .gt-sm\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .gt-sm\:pl-36 {
    padding-left: 9rem !important;
  }

  .gt-sm\:pt-40 {
    padding-top: 10rem !important;
  }

  .gt-sm\:pr-40 {
    padding-right: 10rem !important;
  }

  .gt-sm\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .gt-sm\:pl-40 {
    padding-left: 10rem !important;
  }

  .gt-sm\:pt-44 {
    padding-top: 11rem !important;
  }

  .gt-sm\:pr-44 {
    padding-right: 11rem !important;
  }

  .gt-sm\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .gt-sm\:pl-44 {
    padding-left: 11rem !important;
  }

  .gt-sm\:pt-48 {
    padding-top: 12rem !important;
  }

  .gt-sm\:pr-48 {
    padding-right: 12rem !important;
  }

  .gt-sm\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .gt-sm\:pl-48 {
    padding-left: 12rem !important;
  }

  .gt-sm\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .gt-sm\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .gt-sm\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .gt-sm\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .gt-sm\:pt-52 {
    padding-top: 13rem !important;
  }

  .gt-sm\:pr-52 {
    padding-right: 13rem !important;
  }

  .gt-sm\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .gt-sm\:pl-52 {
    padding-left: 13rem !important;
  }

  .gt-sm\:pt-56 {
    padding-top: 14rem !important;
  }

  .gt-sm\:pr-56 {
    padding-right: 14rem !important;
  }

  .gt-sm\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .gt-sm\:pl-56 {
    padding-left: 14rem !important;
  }

  .gt-sm\:pt-60 {
    padding-top: 15rem !important;
  }

  .gt-sm\:pr-60 {
    padding-right: 15rem !important;
  }

  .gt-sm\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .gt-sm\:pl-60 {
    padding-left: 15rem !important;
  }

  .gt-sm\:pt-64 {
    padding-top: 16rem !important;
  }

  .gt-sm\:pr-64 {
    padding-right: 16rem !important;
  }

  .gt-sm\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .gt-sm\:pl-64 {
    padding-left: 16rem !important;
  }

  .gt-sm\:pt-72 {
    padding-top: 18rem !important;
  }

  .gt-sm\:pr-72 {
    padding-right: 18rem !important;
  }

  .gt-sm\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .gt-sm\:pl-72 {
    padding-left: 18rem !important;
  }

  .gt-sm\:pt-80 {
    padding-top: 20rem !important;
  }

  .gt-sm\:pr-80 {
    padding-right: 20rem !important;
  }

  .gt-sm\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .gt-sm\:pl-80 {
    padding-left: 20rem !important;
  }

  .gt-sm\:pt-90 {
    padding-top: 24rem !important;
  }

  .gt-sm\:pr-90 {
    padding-right: 24rem !important;
  }

  .gt-sm\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .gt-sm\:pl-90 {
    padding-left: 24rem !important;
  }

  .gt-sm\:pt-96 {
    padding-top: 24rem !important;
  }

  .gt-sm\:pr-96 {
    padding-right: 24rem !important;
  }

  .gt-sm\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .gt-sm\:pl-96 {
    padding-left: 24rem !important;
  }

  .gt-sm\:pt-100 {
    padding-top: 25rem !important;
  }

  .gt-sm\:pr-100 {
    padding-right: 25rem !important;
  }

  .gt-sm\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .gt-sm\:pl-100 {
    padding-left: 25rem !important;
  }

  .gt-sm\:pt-120 {
    padding-top: 30rem !important;
  }

  .gt-sm\:pr-120 {
    padding-right: 30rem !important;
  }

  .gt-sm\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .gt-sm\:pl-120 {
    padding-left: 30rem !important;
  }

  .gt-sm\:pt-128 {
    padding-top: 32rem !important;
  }

  .gt-sm\:pr-128 {
    padding-right: 32rem !important;
  }

  .gt-sm\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .gt-sm\:pl-128 {
    padding-left: 32rem !important;
  }

  .gt-sm\:pt-140 {
    padding-top: 35rem !important;
  }

  .gt-sm\:pr-140 {
    padding-right: 35rem !important;
  }

  .gt-sm\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .gt-sm\:pl-140 {
    padding-left: 35rem !important;
  }

  .gt-sm\:pt-160 {
    padding-top: 40rem !important;
  }

  .gt-sm\:pr-160 {
    padding-right: 40rem !important;
  }

  .gt-sm\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .gt-sm\:pl-160 {
    padding-left: 40rem !important;
  }

  .gt-sm\:pt-180 {
    padding-top: 45rem !important;
  }

  .gt-sm\:pr-180 {
    padding-right: 45rem !important;
  }

  .gt-sm\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .gt-sm\:pl-180 {
    padding-left: 45rem !important;
  }

  .gt-sm\:pt-192 {
    padding-top: 48rem !important;
  }

  .gt-sm\:pr-192 {
    padding-right: 48rem !important;
  }

  .gt-sm\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .gt-sm\:pl-192 {
    padding-left: 48rem !important;
  }

  .gt-sm\:pt-200 {
    padding-top: 50rem !important;
  }

  .gt-sm\:pr-200 {
    padding-right: 50rem !important;
  }

  .gt-sm\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .gt-sm\:pl-200 {
    padding-left: 50rem !important;
  }

  .gt-sm\:pt-240 {
    padding-top: 60rem !important;
  }

  .gt-sm\:pr-240 {
    padding-right: 60rem !important;
  }

  .gt-sm\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .gt-sm\:pl-240 {
    padding-left: 60rem !important;
  }

  .gt-sm\:pt-256 {
    padding-top: 64rem !important;
  }

  .gt-sm\:pr-256 {
    padding-right: 64rem !important;
  }

  .gt-sm\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .gt-sm\:pl-256 {
    padding-left: 64rem !important;
  }

  .gt-sm\:pt-280 {
    padding-top: 70rem !important;
  }

  .gt-sm\:pr-280 {
    padding-right: 70rem !important;
  }

  .gt-sm\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .gt-sm\:pl-280 {
    padding-left: 70rem !important;
  }

  .gt-sm\:pt-320 {
    padding-top: 80rem !important;
  }

  .gt-sm\:pr-320 {
    padding-right: 80rem !important;
  }

  .gt-sm\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .gt-sm\:pl-320 {
    padding-left: 80rem !important;
  }

  .gt-sm\:pt-360 {
    padding-top: 90rem !important;
  }

  .gt-sm\:pr-360 {
    padding-right: 90rem !important;
  }

  .gt-sm\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .gt-sm\:pl-360 {
    padding-left: 90rem !important;
  }

  .gt-sm\:pt-400 {
    padding-top: 100rem !important;
  }

  .gt-sm\:pr-400 {
    padding-right: 100rem !important;
  }

  .gt-sm\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .gt-sm\:pl-400 {
    padding-left: 100rem !important;
  }

  .gt-sm\:pt-480 {
    padding-top: 120rem !important;
  }

  .gt-sm\:pr-480 {
    padding-right: 120rem !important;
  }

  .gt-sm\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .gt-sm\:pl-480 {
    padding-left: 120rem !important;
  }

  .gt-sm\:pt-px {
    padding-top: 1px !important;
  }

  .gt-sm\:pr-px {
    padding-right: 1px !important;
  }

  .gt-sm\:pb-px {
    padding-bottom: 1px !important;
  }

  .gt-sm\:pl-px {
    padding-left: 1px !important;
  }

  .gt-sm\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .gt-sm\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .gt-sm\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .gt-sm\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .gt-sm\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .gt-sm\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .gt-sm\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .gt-sm\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .gt-sm\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .gt-sm\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .gt-sm\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .gt-sm\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .gt-sm\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .gt-sm\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .gt-sm\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .gt-sm\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .gt-sm\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .gt-sm\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .gt-sm\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .gt-sm\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .gt-sm\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .gt-sm\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .gt-sm\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .gt-sm\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .gt-sm\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .gt-sm\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .gt-sm\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .gt-sm\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .gt-sm\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .gt-sm\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .gt-sm\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .gt-sm\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .gt-sm\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .gt-sm\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .gt-sm\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .gt-sm\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .gt-sm\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .gt-sm\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .gt-sm\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .gt-sm\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .gt-sm\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .gt-sm\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .gt-sm\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .gt-sm\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .gt-sm\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .gt-sm\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .gt-sm\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .gt-sm\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .gt-sm\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .gt-sm\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .gt-sm\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .gt-sm\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .gt-sm\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .gt-sm\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .gt-sm\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .gt-sm\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .gt-sm\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .gt-sm\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .gt-sm\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .gt-sm\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .gt-sm\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .gt-sm\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .gt-sm\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .gt-sm\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .gt-sm\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .gt-sm\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .gt-sm\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .gt-sm\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .gt-sm\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .gt-sm\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .gt-sm\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .gt-sm\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .gt-sm\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .gt-sm\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .gt-sm\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .gt-sm\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .gt-sm\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .gt-sm\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .gt-sm\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .gt-sm\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .gt-sm\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .gt-sm\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .gt-sm\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .gt-sm\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .gt-sm\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .gt-sm\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .gt-sm\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .gt-sm\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .gt-sm\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .gt-sm\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .gt-sm\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .gt-sm\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .gt-sm\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .gt-sm\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .gt-sm\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .gt-sm\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .gt-sm\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .gt-sm\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .gt-sm\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .gt-sm\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .gt-sm\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .gt-sm\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .gt-sm\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .gt-sm\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .gt-sm\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .gt-sm\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .gt-sm\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .gt-sm\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .gt-sm\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .gt-sm\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .gt-sm\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .gt-sm\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .gt-sm\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .gt-sm\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .gt-sm\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .gt-sm\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .gt-sm\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .gt-sm\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .gt-sm\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .gt-sm\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .gt-sm\:pt-full {
    padding-top: 100% !important;
  }

  .gt-sm\:pr-full {
    padding-right: 100% !important;
  }

  .gt-sm\:pb-full {
    padding-bottom: 100% !important;
  }

  .gt-sm\:pl-full {
    padding-left: 100% !important;
  }

  .gt-sm\:pt-2px {
    padding-top: 2px !important;
  }

  .gt-sm\:pr-2px {
    padding-right: 2px !important;
  }

  .gt-sm\:pb-2px {
    padding-bottom: 2px !important;
  }

  .gt-sm\:pl-2px {
    padding-left: 2px !important;
  }

  .gt-sm\:static {
    position: static !important;
  }

  .gt-sm\:fixed {
    position: fixed !important;
  }

  .gt-sm\:absolute {
    position: absolute !important;
  }

  .gt-sm\:relative {
    position: relative !important;
  }

  .gt-sm\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .gt-sm\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .gt-sm\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .gt-sm\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .gt-sm\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .gt-sm\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .gt-sm\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .gt-sm\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .gt-sm\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .gt-sm\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .gt-sm\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .gt-sm\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .gt-sm\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .gt-sm\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .gt-sm\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .gt-sm\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .gt-sm\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .gt-sm\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .gt-sm\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .gt-sm\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .gt-sm\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .gt-sm\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .gt-sm\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .gt-sm\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .gt-sm\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .gt-sm\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .gt-sm\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .gt-sm\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .gt-sm\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .gt-sm\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .gt-sm\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .gt-sm\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .gt-sm\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .gt-sm\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .gt-sm\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .gt-sm\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .gt-sm\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .gt-sm\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .gt-sm\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .gt-sm\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .gt-sm\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .gt-sm\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .gt-sm\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .gt-sm\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .gt-sm\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .gt-sm\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .gt-sm\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .gt-sm\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .gt-sm\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .gt-sm\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .gt-sm\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .gt-sm\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .gt-sm\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .gt-sm\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .gt-sm\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .gt-sm\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .gt-sm\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .gt-sm\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .gt-sm\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .gt-sm\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .gt-sm\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-sm\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-sm\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-sm\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .gt-sm\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-sm\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .gt-sm\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .gt-sm\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .gt-sm\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .gt-sm\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .gt-sm\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-sm\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-sm\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-sm\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-sm\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-sm\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .gt-sm\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-sm\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .gt-sm\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-sm\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .gt-sm\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-sm\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .gt-sm\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-sm\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .gt-sm\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-sm\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .gt-sm\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .gt-sm\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .gt-sm\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .gt-sm\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .gt-sm\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .gt-sm\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .gt-sm\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .gt-sm\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .gt-sm\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .gt-sm\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .gt-sm\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .gt-sm\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .gt-sm\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .gt-sm\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .gt-sm\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .gt-sm\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .gt-sm\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .gt-sm\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .gt-sm\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .gt-sm\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .gt-sm\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .gt-sm\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .gt-sm\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .gt-sm\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .gt-sm\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .gt-sm\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .gt-sm\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .gt-sm\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .gt-sm\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .gt-sm\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .gt-sm\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .gt-sm\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .gt-sm\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .gt-sm\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .gt-sm\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .gt-sm\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .gt-sm\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .gt-sm\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .gt-sm\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .gt-sm\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .gt-sm\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .gt-sm\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .gt-sm\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .gt-sm\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .gt-sm\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .gt-sm\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .gt-sm\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .gt-sm\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .gt-sm\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .gt-sm\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .gt-sm\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .gt-sm\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .gt-sm\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .gt-sm\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .gt-sm\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .gt-sm\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .gt-sm\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .gt-sm\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .gt-sm\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .gt-sm\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .gt-sm\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .gt-sm\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .gt-sm\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .gt-sm\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .gt-sm\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .gt-sm\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .gt-sm\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .gt-sm\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .gt-sm\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .gt-sm\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .gt-sm\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .gt-sm\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .gt-sm\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .gt-sm\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .gt-sm\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .gt-sm\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .gt-sm\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .gt-sm\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .gt-sm\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .gt-sm\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .gt-sm\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .gt-sm\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .gt-sm\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .gt-sm\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .gt-sm\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .gt-sm\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .gt-sm\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .gt-sm\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .gt-sm\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .gt-sm\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .gt-sm\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .gt-sm\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .gt-sm\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .gt-sm\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .gt-sm\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .gt-sm\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .gt-sm\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .gt-sm\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .gt-sm\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .gt-sm\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .gt-sm\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .gt-sm\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .gt-sm\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .gt-sm\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .gt-sm\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .gt-sm\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .gt-sm\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .gt-sm\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .gt-sm\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .gt-sm\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .gt-sm\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .gt-sm\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .gt-sm\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .gt-sm\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .gt-sm\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .gt-sm\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .gt-sm\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .gt-sm\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .gt-sm\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .gt-sm\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .gt-sm\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-sm\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-sm\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .gt-sm\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-sm\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .gt-sm\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-sm\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .gt-sm\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .gt-sm\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-sm\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-sm\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .gt-sm\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .gt-sm\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .gt-sm\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .gt-sm\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .gt-sm\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .gt-sm\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .gt-sm\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .gt-sm\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .gt-sm\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .gt-sm\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .gt-sm\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-sm\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .gt-sm\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-sm\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-sm\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-sm\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .gt-sm\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-sm\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .gt-sm\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-sm\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .gt-sm\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .gt-sm\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .gt-sm\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-sm\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .gt-sm\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .gt-sm\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .gt-sm\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-sm\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .gt-sm\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .gt-sm\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-sm\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-sm\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .gt-sm\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .gt-sm\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .gt-sm\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-sm\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .gt-sm\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .gt-sm\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .gt-sm\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-sm\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .gt-sm\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .gt-sm\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .gt-sm\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .gt-sm\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .gt-sm\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .gt-sm\:top-0 {
    top: 0 !important;
  }

  .gt-sm\:right-0 {
    right: 0 !important;
  }

  .gt-sm\:bottom-0 {
    bottom: 0 !important;
  }

  .gt-sm\:left-0 {
    left: 0 !important;
  }

  .gt-sm\:top-1 {
    top: 0.25rem !important;
  }

  .gt-sm\:right-1 {
    right: 0.25rem !important;
  }

  .gt-sm\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .gt-sm\:left-1 {
    left: 0.25rem !important;
  }

  .gt-sm\:top-2 {
    top: 0.5rem !important;
  }

  .gt-sm\:right-2 {
    right: 0.5rem !important;
  }

  .gt-sm\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .gt-sm\:left-2 {
    left: 0.5rem !important;
  }

  .gt-sm\:top-3 {
    top: 0.75rem !important;
  }

  .gt-sm\:right-3 {
    right: 0.75rem !important;
  }

  .gt-sm\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .gt-sm\:left-3 {
    left: 0.75rem !important;
  }

  .gt-sm\:top-4 {
    top: 1rem !important;
  }

  .gt-sm\:right-4 {
    right: 1rem !important;
  }

  .gt-sm\:bottom-4 {
    bottom: 1rem !important;
  }

  .gt-sm\:left-4 {
    left: 1rem !important;
  }

  .gt-sm\:top-5 {
    top: 1.25rem !important;
  }

  .gt-sm\:right-5 {
    right: 1.25rem !important;
  }

  .gt-sm\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .gt-sm\:left-5 {
    left: 1.25rem !important;
  }

  .gt-sm\:top-6 {
    top: 1.5rem !important;
  }

  .gt-sm\:right-6 {
    right: 1.5rem !important;
  }

  .gt-sm\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .gt-sm\:left-6 {
    left: 1.5rem !important;
  }

  .gt-sm\:top-7 {
    top: 1.75rem !important;
  }

  .gt-sm\:right-7 {
    right: 1.75rem !important;
  }

  .gt-sm\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .gt-sm\:left-7 {
    left: 1.75rem !important;
  }

  .gt-sm\:top-8 {
    top: 2rem !important;
  }

  .gt-sm\:right-8 {
    right: 2rem !important;
  }

  .gt-sm\:bottom-8 {
    bottom: 2rem !important;
  }

  .gt-sm\:left-8 {
    left: 2rem !important;
  }

  .gt-sm\:top-9 {
    top: 2.25rem !important;
  }

  .gt-sm\:right-9 {
    right: 2.25rem !important;
  }

  .gt-sm\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .gt-sm\:left-9 {
    left: 2.25rem !important;
  }

  .gt-sm\:top-10 {
    top: 2.5rem !important;
  }

  .gt-sm\:right-10 {
    right: 2.5rem !important;
  }

  .gt-sm\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .gt-sm\:left-10 {
    left: 2.5rem !important;
  }

  .gt-sm\:top-11 {
    top: 2.75rem !important;
  }

  .gt-sm\:right-11 {
    right: 2.75rem !important;
  }

  .gt-sm\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .gt-sm\:left-11 {
    left: 2.75rem !important;
  }

  .gt-sm\:top-12 {
    top: 3rem !important;
  }

  .gt-sm\:right-12 {
    right: 3rem !important;
  }

  .gt-sm\:bottom-12 {
    bottom: 3rem !important;
  }

  .gt-sm\:left-12 {
    left: 3rem !important;
  }

  .gt-sm\:top-13 {
    top: 3.25rem !important;
  }

  .gt-sm\:right-13 {
    right: 3.25rem !important;
  }

  .gt-sm\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .gt-sm\:left-13 {
    left: 3.25rem !important;
  }

  .gt-sm\:top-14 {
    top: 3.5rem !important;
  }

  .gt-sm\:right-14 {
    right: 3.5rem !important;
  }

  .gt-sm\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .gt-sm\:left-14 {
    left: 3.5rem !important;
  }

  .gt-sm\:top-15 {
    top: 3.75rem !important;
  }

  .gt-sm\:right-15 {
    right: 3.75rem !important;
  }

  .gt-sm\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .gt-sm\:left-15 {
    left: 3.75rem !important;
  }

  .gt-sm\:top-16 {
    top: 4rem !important;
  }

  .gt-sm\:right-16 {
    right: 4rem !important;
  }

  .gt-sm\:bottom-16 {
    bottom: 4rem !important;
  }

  .gt-sm\:left-16 {
    left: 4rem !important;
  }

  .gt-sm\:top-18 {
    top: 4.5rem !important;
  }

  .gt-sm\:right-18 {
    right: 4.5rem !important;
  }

  .gt-sm\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .gt-sm\:left-18 {
    left: 4.5rem !important;
  }

  .gt-sm\:top-20 {
    top: 5rem !important;
  }

  .gt-sm\:right-20 {
    right: 5rem !important;
  }

  .gt-sm\:bottom-20 {
    bottom: 5rem !important;
  }

  .gt-sm\:left-20 {
    left: 5rem !important;
  }

  .gt-sm\:top-22 {
    top: 5.5rem !important;
  }

  .gt-sm\:right-22 {
    right: 5.5rem !important;
  }

  .gt-sm\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .gt-sm\:left-22 {
    left: 5.5rem !important;
  }

  .gt-sm\:top-24 {
    top: 6rem !important;
  }

  .gt-sm\:right-24 {
    right: 6rem !important;
  }

  .gt-sm\:bottom-24 {
    bottom: 6rem !important;
  }

  .gt-sm\:left-24 {
    left: 6rem !important;
  }

  .gt-sm\:top-26 {
    top: 6.5rem !important;
  }

  .gt-sm\:right-26 {
    right: 6.5rem !important;
  }

  .gt-sm\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .gt-sm\:left-26 {
    left: 6.5rem !important;
  }

  .gt-sm\:top-28 {
    top: 7rem !important;
  }

  .gt-sm\:right-28 {
    right: 7rem !important;
  }

  .gt-sm\:bottom-28 {
    bottom: 7rem !important;
  }

  .gt-sm\:left-28 {
    left: 7rem !important;
  }

  .gt-sm\:top-30 {
    top: 7.5rem !important;
  }

  .gt-sm\:right-30 {
    right: 7.5rem !important;
  }

  .gt-sm\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .gt-sm\:left-30 {
    left: 7.5rem !important;
  }

  .gt-sm\:top-32 {
    top: 8rem !important;
  }

  .gt-sm\:right-32 {
    right: 8rem !important;
  }

  .gt-sm\:bottom-32 {
    bottom: 8rem !important;
  }

  .gt-sm\:left-32 {
    left: 8rem !important;
  }

  .gt-sm\:top-36 {
    top: 9rem !important;
  }

  .gt-sm\:right-36 {
    right: 9rem !important;
  }

  .gt-sm\:bottom-36 {
    bottom: 9rem !important;
  }

  .gt-sm\:left-36 {
    left: 9rem !important;
  }

  .gt-sm\:top-40 {
    top: 10rem !important;
  }

  .gt-sm\:right-40 {
    right: 10rem !important;
  }

  .gt-sm\:bottom-40 {
    bottom: 10rem !important;
  }

  .gt-sm\:left-40 {
    left: 10rem !important;
  }

  .gt-sm\:top-44 {
    top: 11rem !important;
  }

  .gt-sm\:right-44 {
    right: 11rem !important;
  }

  .gt-sm\:bottom-44 {
    bottom: 11rem !important;
  }

  .gt-sm\:left-44 {
    left: 11rem !important;
  }

  .gt-sm\:top-48 {
    top: 12rem !important;
  }

  .gt-sm\:right-48 {
    right: 12rem !important;
  }

  .gt-sm\:bottom-48 {
    bottom: 12rem !important;
  }

  .gt-sm\:left-48 {
    left: 12rem !important;
  }

  .gt-sm\:top-50 {
    top: 12.5rem !important;
  }

  .gt-sm\:right-50 {
    right: 12.5rem !important;
  }

  .gt-sm\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .gt-sm\:left-50 {
    left: 12.5rem !important;
  }

  .gt-sm\:top-52 {
    top: 13rem !important;
  }

  .gt-sm\:right-52 {
    right: 13rem !important;
  }

  .gt-sm\:bottom-52 {
    bottom: 13rem !important;
  }

  .gt-sm\:left-52 {
    left: 13rem !important;
  }

  .gt-sm\:top-56 {
    top: 14rem !important;
  }

  .gt-sm\:right-56 {
    right: 14rem !important;
  }

  .gt-sm\:bottom-56 {
    bottom: 14rem !important;
  }

  .gt-sm\:left-56 {
    left: 14rem !important;
  }

  .gt-sm\:top-60 {
    top: 15rem !important;
  }

  .gt-sm\:right-60 {
    right: 15rem !important;
  }

  .gt-sm\:bottom-60 {
    bottom: 15rem !important;
  }

  .gt-sm\:left-60 {
    left: 15rem !important;
  }

  .gt-sm\:top-64 {
    top: 16rem !important;
  }

  .gt-sm\:right-64 {
    right: 16rem !important;
  }

  .gt-sm\:bottom-64 {
    bottom: 16rem !important;
  }

  .gt-sm\:left-64 {
    left: 16rem !important;
  }

  .gt-sm\:top-72 {
    top: 18rem !important;
  }

  .gt-sm\:right-72 {
    right: 18rem !important;
  }

  .gt-sm\:bottom-72 {
    bottom: 18rem !important;
  }

  .gt-sm\:left-72 {
    left: 18rem !important;
  }

  .gt-sm\:top-80 {
    top: 20rem !important;
  }

  .gt-sm\:right-80 {
    right: 20rem !important;
  }

  .gt-sm\:bottom-80 {
    bottom: 20rem !important;
  }

  .gt-sm\:left-80 {
    left: 20rem !important;
  }

  .gt-sm\:top-90 {
    top: 24rem !important;
  }

  .gt-sm\:right-90 {
    right: 24rem !important;
  }

  .gt-sm\:bottom-90 {
    bottom: 24rem !important;
  }

  .gt-sm\:left-90 {
    left: 24rem !important;
  }

  .gt-sm\:top-96 {
    top: 24rem !important;
  }

  .gt-sm\:right-96 {
    right: 24rem !important;
  }

  .gt-sm\:bottom-96 {
    bottom: 24rem !important;
  }

  .gt-sm\:left-96 {
    left: 24rem !important;
  }

  .gt-sm\:top-100 {
    top: 25rem !important;
  }

  .gt-sm\:right-100 {
    right: 25rem !important;
  }

  .gt-sm\:bottom-100 {
    bottom: 25rem !important;
  }

  .gt-sm\:left-100 {
    left: 25rem !important;
  }

  .gt-sm\:top-120 {
    top: 30rem !important;
  }

  .gt-sm\:right-120 {
    right: 30rem !important;
  }

  .gt-sm\:bottom-120 {
    bottom: 30rem !important;
  }

  .gt-sm\:left-120 {
    left: 30rem !important;
  }

  .gt-sm\:top-128 {
    top: 32rem !important;
  }

  .gt-sm\:right-128 {
    right: 32rem !important;
  }

  .gt-sm\:bottom-128 {
    bottom: 32rem !important;
  }

  .gt-sm\:left-128 {
    left: 32rem !important;
  }

  .gt-sm\:top-140 {
    top: 35rem !important;
  }

  .gt-sm\:right-140 {
    right: 35rem !important;
  }

  .gt-sm\:bottom-140 {
    bottom: 35rem !important;
  }

  .gt-sm\:left-140 {
    left: 35rem !important;
  }

  .gt-sm\:top-160 {
    top: 40rem !important;
  }

  .gt-sm\:right-160 {
    right: 40rem !important;
  }

  .gt-sm\:bottom-160 {
    bottom: 40rem !important;
  }

  .gt-sm\:left-160 {
    left: 40rem !important;
  }

  .gt-sm\:top-180 {
    top: 45rem !important;
  }

  .gt-sm\:right-180 {
    right: 45rem !important;
  }

  .gt-sm\:bottom-180 {
    bottom: 45rem !important;
  }

  .gt-sm\:left-180 {
    left: 45rem !important;
  }

  .gt-sm\:top-192 {
    top: 48rem !important;
  }

  .gt-sm\:right-192 {
    right: 48rem !important;
  }

  .gt-sm\:bottom-192 {
    bottom: 48rem !important;
  }

  .gt-sm\:left-192 {
    left: 48rem !important;
  }

  .gt-sm\:top-200 {
    top: 50rem !important;
  }

  .gt-sm\:right-200 {
    right: 50rem !important;
  }

  .gt-sm\:bottom-200 {
    bottom: 50rem !important;
  }

  .gt-sm\:left-200 {
    left: 50rem !important;
  }

  .gt-sm\:top-240 {
    top: 60rem !important;
  }

  .gt-sm\:right-240 {
    right: 60rem !important;
  }

  .gt-sm\:bottom-240 {
    bottom: 60rem !important;
  }

  .gt-sm\:left-240 {
    left: 60rem !important;
  }

  .gt-sm\:top-256 {
    top: 64rem !important;
  }

  .gt-sm\:right-256 {
    right: 64rem !important;
  }

  .gt-sm\:bottom-256 {
    bottom: 64rem !important;
  }

  .gt-sm\:left-256 {
    left: 64rem !important;
  }

  .gt-sm\:top-280 {
    top: 70rem !important;
  }

  .gt-sm\:right-280 {
    right: 70rem !important;
  }

  .gt-sm\:bottom-280 {
    bottom: 70rem !important;
  }

  .gt-sm\:left-280 {
    left: 70rem !important;
  }

  .gt-sm\:top-320 {
    top: 80rem !important;
  }

  .gt-sm\:right-320 {
    right: 80rem !important;
  }

  .gt-sm\:bottom-320 {
    bottom: 80rem !important;
  }

  .gt-sm\:left-320 {
    left: 80rem !important;
  }

  .gt-sm\:top-360 {
    top: 90rem !important;
  }

  .gt-sm\:right-360 {
    right: 90rem !important;
  }

  .gt-sm\:bottom-360 {
    bottom: 90rem !important;
  }

  .gt-sm\:left-360 {
    left: 90rem !important;
  }

  .gt-sm\:top-400 {
    top: 100rem !important;
  }

  .gt-sm\:right-400 {
    right: 100rem !important;
  }

  .gt-sm\:bottom-400 {
    bottom: 100rem !important;
  }

  .gt-sm\:left-400 {
    left: 100rem !important;
  }

  .gt-sm\:top-480 {
    top: 120rem !important;
  }

  .gt-sm\:right-480 {
    right: 120rem !important;
  }

  .gt-sm\:bottom-480 {
    bottom: 120rem !important;
  }

  .gt-sm\:left-480 {
    left: 120rem !important;
  }

  .gt-sm\:top-auto {
    top: auto !important;
  }

  .gt-sm\:right-auto {
    right: auto !important;
  }

  .gt-sm\:bottom-auto {
    bottom: auto !important;
  }

  .gt-sm\:left-auto {
    left: auto !important;
  }

  .gt-sm\:top-px {
    top: 1px !important;
  }

  .gt-sm\:right-px {
    right: 1px !important;
  }

  .gt-sm\:bottom-px {
    bottom: 1px !important;
  }

  .gt-sm\:left-px {
    left: 1px !important;
  }

  .gt-sm\:top-0\.5 {
    top: 0.125rem !important;
  }

  .gt-sm\:right-0\.5 {
    right: 0.125rem !important;
  }

  .gt-sm\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .gt-sm\:left-0\.5 {
    left: 0.125rem !important;
  }

  .gt-sm\:top-1\.5 {
    top: 0.375rem !important;
  }

  .gt-sm\:right-1\.5 {
    right: 0.375rem !important;
  }

  .gt-sm\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .gt-sm\:left-1\.5 {
    left: 0.375rem !important;
  }

  .gt-sm\:top-2\.5 {
    top: 0.625rem !important;
  }

  .gt-sm\:right-2\.5 {
    right: 0.625rem !important;
  }

  .gt-sm\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .gt-sm\:left-2\.5 {
    left: 0.625rem !important;
  }

  .gt-sm\:top-3\.5 {
    top: 0.875rem !important;
  }

  .gt-sm\:right-3\.5 {
    right: 0.875rem !important;
  }

  .gt-sm\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .gt-sm\:left-3\.5 {
    left: 0.875rem !important;
  }

  .gt-sm\:top-1\/2 {
    top: 50% !important;
  }

  .gt-sm\:right-1\/2 {
    right: 50% !important;
  }

  .gt-sm\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .gt-sm\:left-1\/2 {
    left: 50% !important;
  }

  .gt-sm\:top-1\/3 {
    top: 33.333333% !important;
  }

  .gt-sm\:right-1\/3 {
    right: 33.333333% !important;
  }

  .gt-sm\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .gt-sm\:left-1\/3 {
    left: 33.333333% !important;
  }

  .gt-sm\:top-2\/3 {
    top: 66.666667% !important;
  }

  .gt-sm\:right-2\/3 {
    right: 66.666667% !important;
  }

  .gt-sm\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .gt-sm\:left-2\/3 {
    left: 66.666667% !important;
  }

  .gt-sm\:top-1\/4 {
    top: 25% !important;
  }

  .gt-sm\:right-1\/4 {
    right: 25% !important;
  }

  .gt-sm\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .gt-sm\:left-1\/4 {
    left: 25% !important;
  }

  .gt-sm\:top-2\/4 {
    top: 50% !important;
  }

  .gt-sm\:right-2\/4 {
    right: 50% !important;
  }

  .gt-sm\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .gt-sm\:left-2\/4 {
    left: 50% !important;
  }

  .gt-sm\:top-3\/4 {
    top: 75% !important;
  }

  .gt-sm\:right-3\/4 {
    right: 75% !important;
  }

  .gt-sm\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .gt-sm\:left-3\/4 {
    left: 75% !important;
  }

  .gt-sm\:top-1\/5 {
    top: 20% !important;
  }

  .gt-sm\:right-1\/5 {
    right: 20% !important;
  }

  .gt-sm\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .gt-sm\:left-1\/5 {
    left: 20% !important;
  }

  .gt-sm\:top-2\/5 {
    top: 40% !important;
  }

  .gt-sm\:right-2\/5 {
    right: 40% !important;
  }

  .gt-sm\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .gt-sm\:left-2\/5 {
    left: 40% !important;
  }

  .gt-sm\:top-3\/5 {
    top: 60% !important;
  }

  .gt-sm\:right-3\/5 {
    right: 60% !important;
  }

  .gt-sm\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .gt-sm\:left-3\/5 {
    left: 60% !important;
  }

  .gt-sm\:top-4\/5 {
    top: 80% !important;
  }

  .gt-sm\:right-4\/5 {
    right: 80% !important;
  }

  .gt-sm\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .gt-sm\:left-4\/5 {
    left: 80% !important;
  }

  .gt-sm\:top-1\/6 {
    top: 16.666667% !important;
  }

  .gt-sm\:right-1\/6 {
    right: 16.666667% !important;
  }

  .gt-sm\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .gt-sm\:left-1\/6 {
    left: 16.666667% !important;
  }

  .gt-sm\:top-2\/6 {
    top: 33.333333% !important;
  }

  .gt-sm\:right-2\/6 {
    right: 33.333333% !important;
  }

  .gt-sm\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .gt-sm\:left-2\/6 {
    left: 33.333333% !important;
  }

  .gt-sm\:top-3\/6 {
    top: 50% !important;
  }

  .gt-sm\:right-3\/6 {
    right: 50% !important;
  }

  .gt-sm\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .gt-sm\:left-3\/6 {
    left: 50% !important;
  }

  .gt-sm\:top-4\/6 {
    top: 66.666667% !important;
  }

  .gt-sm\:right-4\/6 {
    right: 66.666667% !important;
  }

  .gt-sm\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .gt-sm\:left-4\/6 {
    left: 66.666667% !important;
  }

  .gt-sm\:top-5\/6 {
    top: 83.333333% !important;
  }

  .gt-sm\:right-5\/6 {
    right: 83.333333% !important;
  }

  .gt-sm\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .gt-sm\:left-5\/6 {
    left: 83.333333% !important;
  }

  .gt-sm\:top-1\/12 {
    top: 8.333333% !important;
  }

  .gt-sm\:right-1\/12 {
    right: 8.333333% !important;
  }

  .gt-sm\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .gt-sm\:left-1\/12 {
    left: 8.333333% !important;
  }

  .gt-sm\:top-2\/12 {
    top: 16.666667% !important;
  }

  .gt-sm\:right-2\/12 {
    right: 16.666667% !important;
  }

  .gt-sm\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .gt-sm\:left-2\/12 {
    left: 16.666667% !important;
  }

  .gt-sm\:top-3\/12 {
    top: 25% !important;
  }

  .gt-sm\:right-3\/12 {
    right: 25% !important;
  }

  .gt-sm\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .gt-sm\:left-3\/12 {
    left: 25% !important;
  }

  .gt-sm\:top-4\/12 {
    top: 33.333333% !important;
  }

  .gt-sm\:right-4\/12 {
    right: 33.333333% !important;
  }

  .gt-sm\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .gt-sm\:left-4\/12 {
    left: 33.333333% !important;
  }

  .gt-sm\:top-5\/12 {
    top: 41.666667% !important;
  }

  .gt-sm\:right-5\/12 {
    right: 41.666667% !important;
  }

  .gt-sm\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .gt-sm\:left-5\/12 {
    left: 41.666667% !important;
  }

  .gt-sm\:top-6\/12 {
    top: 50% !important;
  }

  .gt-sm\:right-6\/12 {
    right: 50% !important;
  }

  .gt-sm\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .gt-sm\:left-6\/12 {
    left: 50% !important;
  }

  .gt-sm\:top-7\/12 {
    top: 58.333333% !important;
  }

  .gt-sm\:right-7\/12 {
    right: 58.333333% !important;
  }

  .gt-sm\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .gt-sm\:left-7\/12 {
    left: 58.333333% !important;
  }

  .gt-sm\:top-8\/12 {
    top: 66.666667% !important;
  }

  .gt-sm\:right-8\/12 {
    right: 66.666667% !important;
  }

  .gt-sm\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .gt-sm\:left-8\/12 {
    left: 66.666667% !important;
  }

  .gt-sm\:top-9\/12 {
    top: 75% !important;
  }

  .gt-sm\:right-9\/12 {
    right: 75% !important;
  }

  .gt-sm\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .gt-sm\:left-9\/12 {
    left: 75% !important;
  }

  .gt-sm\:top-10\/12 {
    top: 83.333333% !important;
  }

  .gt-sm\:right-10\/12 {
    right: 83.333333% !important;
  }

  .gt-sm\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .gt-sm\:left-10\/12 {
    left: 83.333333% !important;
  }

  .gt-sm\:top-11\/12 {
    top: 91.666667% !important;
  }

  .gt-sm\:right-11\/12 {
    right: 91.666667% !important;
  }

  .gt-sm\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .gt-sm\:left-11\/12 {
    left: 91.666667% !important;
  }

  .gt-sm\:top-full {
    top: 100% !important;
  }

  .gt-sm\:right-full {
    right: 100% !important;
  }

  .gt-sm\:bottom-full {
    bottom: 100% !important;
  }

  .gt-sm\:left-full {
    left: 100% !important;
  }

  .gt-sm\:top-2px {
    top: 2px !important;
  }

  .gt-sm\:right-2px {
    right: 2px !important;
  }

  .gt-sm\:bottom-2px {
    bottom: 2px !important;
  }

  .gt-sm\:left-2px {
    left: 2px !important;
  }

  .gt-sm\:text-left {
    text-align: left !important;
  }

  .gt-sm\:text-center {
    text-align: center !important;
  }

  .gt-sm\:text-right {
    text-align: right !important;
  }

  .gt-sm\:text-justify {
    text-align: justify !important;
  }

  .gt-sm\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .gt-sm\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .gt-sm\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .gt-sm\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .gt-sm\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .gt-sm\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .gt-sm\:visible {
    visibility: visible !important;
  }

  .gt-sm\:invisible {
    visibility: hidden !important;
  }

  .gt-sm\:whitespace-normal {
    white-space: normal !important;
  }

  .gt-sm\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .gt-sm\:whitespace-pre {
    white-space: pre !important;
  }

  .gt-sm\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .gt-sm\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .gt-sm\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .gt-sm\:break-words {
    overflow-wrap: break-word !important;
  }

  .gt-sm\:break-all {
    word-break: break-all !important;
  }

  .gt-sm\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .gt-sm\:w-0 {
    width: 0 !important;
  }

  .gt-sm\:w-1 {
    width: 0.25rem !important;
  }

  .gt-sm\:w-2 {
    width: 0.5rem !important;
  }

  .gt-sm\:w-3 {
    width: 0.75rem !important;
  }

  .gt-sm\:w-4 {
    width: 1rem !important;
  }

  .gt-sm\:w-5 {
    width: 1.25rem !important;
  }

  .gt-sm\:w-6 {
    width: 1.5rem !important;
  }

  .gt-sm\:w-7 {
    width: 1.75rem !important;
  }

  .gt-sm\:w-8 {
    width: 2rem !important;
  }

  .gt-sm\:w-9 {
    width: 2.25rem !important;
  }

  .gt-sm\:w-10 {
    width: 2.5rem !important;
  }

  .gt-sm\:w-11 {
    width: 2.75rem !important;
  }

  .gt-sm\:w-12 {
    width: 3rem !important;
  }

  .gt-sm\:w-13 {
    width: 3.25rem !important;
  }

  .gt-sm\:w-14 {
    width: 3.5rem !important;
  }

  .gt-sm\:w-15 {
    width: 3.75rem !important;
  }

  .gt-sm\:w-16 {
    width: 4rem !important;
  }

  .gt-sm\:w-18 {
    width: 4.5rem !important;
  }

  .gt-sm\:w-20 {
    width: 5rem !important;
  }

  .gt-sm\:w-22 {
    width: 5.5rem !important;
  }

  .gt-sm\:w-24 {
    width: 6rem !important;
  }

  .gt-sm\:w-26 {
    width: 6.5rem !important;
  }

  .gt-sm\:w-28 {
    width: 7rem !important;
  }

  .gt-sm\:w-30 {
    width: 7.5rem !important;
  }

  .gt-sm\:w-32 {
    width: 8rem !important;
  }

  .gt-sm\:w-36 {
    width: 9rem !important;
  }

  .gt-sm\:w-40 {
    width: 10rem !important;
  }

  .gt-sm\:w-44 {
    width: 11rem !important;
  }

  .gt-sm\:w-48 {
    width: 12rem !important;
  }

  .gt-sm\:w-50 {
    width: 12.5rem !important;
  }

  .gt-sm\:w-52 {
    width: 13rem !important;
  }

  .gt-sm\:w-56 {
    width: 14rem !important;
  }

  .gt-sm\:w-60 {
    width: 15rem !important;
  }

  .gt-sm\:w-64 {
    width: 16rem !important;
  }

  .gt-sm\:w-72 {
    width: 18rem !important;
  }

  .gt-sm\:w-80 {
    width: 20rem !important;
  }

  .gt-sm\:w-90 {
    width: 24rem !important;
  }

  .gt-sm\:w-96 {
    width: 24rem !important;
  }

  .gt-sm\:w-100 {
    width: 25rem !important;
  }

  .gt-sm\:w-120 {
    width: 30rem !important;
  }

  .gt-sm\:w-128 {
    width: 32rem !important;
  }

  .gt-sm\:w-140 {
    width: 35rem !important;
  }

  .gt-sm\:w-160 {
    width: 40rem !important;
  }

  .gt-sm\:w-180 {
    width: 45rem !important;
  }

  .gt-sm\:w-192 {
    width: 48rem !important;
  }

  .gt-sm\:w-200 {
    width: 50rem !important;
  }

  .gt-sm\:w-240 {
    width: 60rem !important;
  }

  .gt-sm\:w-256 {
    width: 64rem !important;
  }

  .gt-sm\:w-280 {
    width: 70rem !important;
  }

  .gt-sm\:w-320 {
    width: 80rem !important;
  }

  .gt-sm\:w-360 {
    width: 90rem !important;
  }

  .gt-sm\:w-400 {
    width: 100rem !important;
  }

  .gt-sm\:w-480 {
    width: 120rem !important;
  }

  .gt-sm\:w-auto {
    width: auto !important;
  }

  .gt-sm\:w-px {
    width: 1px !important;
  }

  .gt-sm\:w-0\.5 {
    width: 0.125rem !important;
  }

  .gt-sm\:w-1\.5 {
    width: 0.375rem !important;
  }

  .gt-sm\:w-2\.5 {
    width: 0.625rem !important;
  }

  .gt-sm\:w-3\.5 {
    width: 0.875rem !important;
  }

  .gt-sm\:w-1\/2 {
    width: 50% !important;
  }

  .gt-sm\:w-1\/3 {
    width: 33.333333% !important;
  }

  .gt-sm\:w-2\/3 {
    width: 66.666667% !important;
  }

  .gt-sm\:w-1\/4 {
    width: 25% !important;
  }

  .gt-sm\:w-2\/4 {
    width: 50% !important;
  }

  .gt-sm\:w-3\/4 {
    width: 75% !important;
  }

  .gt-sm\:w-1\/5 {
    width: 20% !important;
  }

  .gt-sm\:w-2\/5 {
    width: 40% !important;
  }

  .gt-sm\:w-3\/5 {
    width: 60% !important;
  }

  .gt-sm\:w-4\/5 {
    width: 80% !important;
  }

  .gt-sm\:w-1\/6 {
    width: 16.666667% !important;
  }

  .gt-sm\:w-2\/6 {
    width: 33.333333% !important;
  }

  .gt-sm\:w-3\/6 {
    width: 50% !important;
  }

  .gt-sm\:w-4\/6 {
    width: 66.666667% !important;
  }

  .gt-sm\:w-5\/6 {
    width: 83.333333% !important;
  }

  .gt-sm\:w-1\/12 {
    width: 8.333333% !important;
  }

  .gt-sm\:w-2\/12 {
    width: 16.666667% !important;
  }

  .gt-sm\:w-3\/12 {
    width: 25% !important;
  }

  .gt-sm\:w-4\/12 {
    width: 33.333333% !important;
  }

  .gt-sm\:w-5\/12 {
    width: 41.666667% !important;
  }

  .gt-sm\:w-6\/12 {
    width: 50% !important;
  }

  .gt-sm\:w-7\/12 {
    width: 58.333333% !important;
  }

  .gt-sm\:w-8\/12 {
    width: 66.666667% !important;
  }

  .gt-sm\:w-9\/12 {
    width: 75% !important;
  }

  .gt-sm\:w-10\/12 {
    width: 83.333333% !important;
  }

  .gt-sm\:w-11\/12 {
    width: 91.666667% !important;
  }

  .gt-sm\:w-full {
    width: 100% !important;
  }

  .gt-sm\:w-2px {
    width: 2px !important;
  }

  .gt-sm\:w-screen {
    width: 100vw !important;
  }

  .gt-sm\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .gt-sm\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .gt-sm\:z-0 {
    z-index: 0 !important;
  }

  .gt-sm\:z-10 {
    z-index: 10 !important;
  }

  .gt-sm\:z-20 {
    z-index: 20 !important;
  }

  .gt-sm\:z-30 {
    z-index: 30 !important;
  }

  .gt-sm\:z-40 {
    z-index: 40 !important;
  }

  .gt-sm\:z-50 {
    z-index: 50 !important;
  }

  .gt-sm\:z-60 {
    z-index: 60 !important;
  }

  .gt-sm\:z-70 {
    z-index: 70 !important;
  }

  .gt-sm\:z-80 {
    z-index: 80 !important;
  }

  .gt-sm\:z-90 {
    z-index: 90 !important;
  }

  .gt-sm\:z-99 {
    z-index: 99 !important;
  }

  .gt-sm\:z-999 {
    z-index: 999 !important;
  }

  .gt-sm\:z-9999 {
    z-index: 9999 !important;
  }

  .gt-sm\:z-99999 {
    z-index: 99999 !important;
  }

  .gt-sm\:z-auto {
    z-index: auto !important;
  }

  .gt-sm\:-z-1 {
    z-index: -1 !important;
  }

  .gt-sm\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .gt-sm\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .gt-sm\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .gt-sm\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .gt-sm\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .gt-sm\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .gt-sm\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .gt-sm\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .gt-sm\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .gt-sm\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .gt-sm\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .gt-sm\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .gt-sm\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .gt-sm\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .gt-sm\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .gt-sm\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .gt-sm\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .gt-sm\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .gt-sm\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .gt-sm\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .gt-sm\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .gt-sm\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .gt-sm\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .gt-sm\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .gt-sm\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .gt-sm\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .gt-sm\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .gt-sm\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .gt-sm\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .gt-sm\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .gt-sm\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .gt-sm\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .gt-sm\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .gt-sm\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .gt-sm\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .gt-sm\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .gt-sm\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .gt-sm\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .gt-sm\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .gt-sm\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .gt-sm\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .gt-sm\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .gt-sm\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .gt-sm\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .gt-sm\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .gt-sm\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .gt-sm\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .gt-sm\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .gt-sm\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .gt-sm\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .gt-sm\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .gt-sm\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .gt-sm\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .gt-sm\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .gt-sm\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .gt-sm\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .gt-sm\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .gt-sm\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .gt-sm\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-sm\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .gt-sm\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .gt-sm\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .gt-sm\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-sm\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .gt-sm\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .gt-sm\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .gt-sm\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .gt-sm\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .gt-sm\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .gt-sm\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .gt-sm\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-sm\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .gt-sm\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .gt-sm\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .gt-sm\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .gt-sm\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .gt-sm\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .gt-sm\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .gt-sm\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-sm\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .gt-sm\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .gt-sm\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .gt-sm\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .gt-sm\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .gt-sm\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .gt-sm\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .gt-sm\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .gt-sm\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .gt-sm\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .gt-sm\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .gt-sm\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .gt-sm\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .gt-sm\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .gt-sm\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .gt-sm\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .gt-sm\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .gt-sm\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .gt-sm\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .gt-sm\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .gt-sm\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .gt-sm\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .gt-sm\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .gt-sm\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .gt-sm\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .gt-sm\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .gt-sm\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .gt-sm\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .gt-sm\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .gt-sm\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .gt-sm\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .gt-sm\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .gt-sm\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .gt-sm\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .gt-sm\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .gt-sm\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .gt-sm\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .gt-sm\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .gt-sm\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .gt-sm\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .gt-sm\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .gt-sm\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .gt-sm\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .gt-sm\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .gt-sm\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .gt-sm\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .gt-sm\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .gt-sm\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .gt-sm\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .gt-sm\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .gt-sm\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .gt-sm\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .gt-sm\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .gt-sm\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .gt-sm\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .gt-sm\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .gt-sm\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .gt-sm\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .gt-sm\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .gt-sm\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .gt-sm\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .gt-sm\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .gt-sm\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .gt-sm\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .gt-sm\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .gt-sm\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-sm\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .gt-sm\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .gt-sm\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .gt-sm\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-sm\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .gt-sm\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .gt-sm\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .gt-sm\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .gt-sm\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .gt-sm\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .gt-sm\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .gt-sm\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-sm\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .gt-sm\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .gt-sm\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .gt-sm\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .gt-sm\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .gt-sm\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .gt-sm\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .gt-sm\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-sm\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .gt-sm\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .gt-sm\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .gt-sm\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .gt-sm\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .gt-sm\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .gt-sm\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .gt-sm\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .gt-sm\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .gt-sm\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .gt-sm\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .gt-sm\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .gt-sm\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .gt-sm\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .gt-sm\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .gt-sm\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .gt-sm\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .gt-sm\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .gt-sm\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .gt-sm\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .gt-sm\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .gt-sm\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .gt-sm\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .gt-sm\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .gt-sm\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .gt-sm\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .gt-sm\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .gt-sm\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .gt-sm\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .gt-sm\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .gt-sm\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .gt-sm\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .gt-sm\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .gt-sm\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .gt-sm\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .gt-sm\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .gt-sm\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .gt-sm\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .gt-sm\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .gt-sm\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .gt-sm\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .gt-sm\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .gt-sm\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .gt-sm\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .gt-sm\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .gt-sm\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .gt-sm\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .gt-sm\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .gt-sm\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .gt-sm\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .gt-sm\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .gt-sm\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .gt-sm\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .gt-sm\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .gt-sm\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .gt-sm\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .gt-sm\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .gt-sm\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .gt-sm\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .gt-sm\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .gt-sm\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .gt-sm\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .gt-sm\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .gt-sm\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .gt-sm\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .gt-sm\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-sm\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .gt-sm\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .gt-sm\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .gt-sm\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-sm\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .gt-sm\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .gt-sm\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .gt-sm\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .gt-sm\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .gt-sm\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .gt-sm\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .gt-sm\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-sm\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .gt-sm\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .gt-sm\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .gt-sm\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .gt-sm\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .gt-sm\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .gt-sm\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .gt-sm\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-sm\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .gt-sm\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .gt-sm\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .gt-sm\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .gt-sm\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .gt-sm\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .gt-sm\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .gt-sm\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .gt-sm\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .gt-sm\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .gt-sm\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

  .gt-sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .gt-sm\:col-auto {
    grid-column: auto !important;
  }

  .gt-sm\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

  .gt-sm\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }

  .gt-sm\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .gt-sm\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .gt-sm\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .gt-sm\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .gt-sm\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .gt-sm\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .gt-sm\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .gt-sm\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .gt-sm\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .gt-sm\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .gt-sm\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .gt-sm\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .gt-sm\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .gt-sm\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .gt-sm\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .gt-sm\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .gt-sm\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .gt-sm\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .gt-sm\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .gt-sm\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .gt-sm\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .gt-sm\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .gt-sm\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .gt-sm\:col-start-auto {
    grid-column-start: auto !important;
  }

  .gt-sm\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .gt-sm\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .gt-sm\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .gt-sm\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .gt-sm\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .gt-sm\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .gt-sm\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .gt-sm\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .gt-sm\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .gt-sm\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .gt-sm\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .gt-sm\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .gt-sm\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .gt-sm\:col-end-auto {
    grid-column-end: auto !important;
  }

  .gt-sm\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .gt-sm\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .gt-sm\:row-auto {
    grid-row: auto !important;
  }

  .gt-sm\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .gt-sm\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .gt-sm\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .gt-sm\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .gt-sm\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .gt-sm\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .gt-sm\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .gt-sm\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .gt-sm\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .gt-sm\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .gt-sm\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .gt-sm\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .gt-sm\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .gt-sm\:row-start-auto {
    grid-row-start: auto !important;
  }

  .gt-sm\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .gt-sm\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .gt-sm\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .gt-sm\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .gt-sm\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .gt-sm\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .gt-sm\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .gt-sm\:row-end-auto {
    grid-row-end: auto !important;
  }

  .gt-sm\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .gt-sm\:transform-none {
    transform: none !important;
  }

  .gt-sm\:origin-center {
    transform-origin: center !important;
  }

  .gt-sm\:origin-top {
    transform-origin: top !important;
  }

  .gt-sm\:origin-top-right {
    transform-origin: top right !important;
  }

  .gt-sm\:origin-right {
    transform-origin: right !important;
  }

  .gt-sm\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .gt-sm\:origin-bottom {
    transform-origin: bottom !important;
  }

  .gt-sm\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .gt-sm\:origin-left {
    transform-origin: left !important;
  }

  .gt-sm\:origin-top-left {
    transform-origin: top left !important;
  }

  .gt-sm\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .gt-sm\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .gt-sm\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .gt-sm\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .gt-sm\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .gt-sm\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .gt-sm\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .gt-sm\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .gt-sm\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .gt-sm\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .gt-sm\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .gt-sm\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .gt-sm\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .gt-sm\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .gt-sm\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .gt-sm\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .gt-sm\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .gt-sm\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .gt-sm\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .gt-sm\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .gt-sm\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .gt-sm\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .gt-sm\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .gt-sm\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .gt-sm\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .gt-sm\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .gt-sm\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .gt-sm\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .gt-sm\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .gt-sm\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
@media (min-width: 1280px) {
  .gt-md\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(3.75rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(5.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(6.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(7.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25rem * var(--space-x-reverse)) !important;
    margin-left: calc(25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(30rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(30rem * var(--space-x-reverse)) !important;
    margin-left: calc(30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32rem * var(--space-x-reverse)) !important;
    margin-left: calc(32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(35rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(35rem * var(--space-x-reverse)) !important;
    margin-left: calc(35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40rem * var(--space-x-reverse)) !important;
    margin-left: calc(40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(45rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(45rem * var(--space-x-reverse)) !important;
    margin-left: calc(45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48rem * var(--space-x-reverse)) !important;
    margin-left: calc(48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50rem * var(--space-x-reverse)) !important;
    margin-left: calc(50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60rem * var(--space-x-reverse)) !important;
    margin-left: calc(60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64rem * var(--space-x-reverse)) !important;
    margin-left: calc(64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(70rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(70rem * var(--space-x-reverse)) !important;
    margin-left: calc(70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80rem * var(--space-x-reverse)) !important;
    margin-left: calc(80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(90rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(90rem * var(--space-x-reverse)) !important;
    margin-left: calc(90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100rem * var(--space-x-reverse)) !important;
    margin-left: calc(100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(120rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(120rem * var(--space-x-reverse)) !important;
    margin-left: calc(120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20% * var(--space-x-reverse)) !important;
    margin-left: calc(20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40% * var(--space-x-reverse)) !important;
    margin-left: calc(40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(60% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(60% * var(--space-x-reverse)) !important;
    margin-left: calc(60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80% * var(--space-x-reverse)) !important;
    margin-left: calc(80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8.333333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(8.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16.666667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(16.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(25% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(25% * var(--space-x-reverse)) !important;
    margin-left: calc(25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(33.333333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(33.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(33.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(41.666667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(41.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(41.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(50% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(50% * var(--space-x-reverse)) !important;
    margin-left: calc(50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(58.333333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(58.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(58.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(66.666667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(66.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(66.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(75% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(75% * var(--space-x-reverse)) !important;
    margin-left: calc(75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(83.333333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(83.333333% * var(--space-x-reverse)) !important;
    margin-left: calc(83.333333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(91.666667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(91.666667% * var(--space-x-reverse)) !important;
    margin-left: calc(91.666667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100% * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100% * var(--space-x-reverse)) !important;
    margin-left: calc(100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(2px * var(--space-y-reverse)) !important;
  }

  .gt-md\:space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(2px * var(--space-x-reverse)) !important;
    margin-left: calc(2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-7 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-7 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-9 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-9 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-11 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-11 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-13 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-13 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-14 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-14 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-15 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-3.75rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-15 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-3.75rem * var(--space-x-reverse)) !important;
    margin-left: calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-18 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-18 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-4.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-22 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-5.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-5.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-22 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-5.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-5.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-6.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-6.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-6.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-6.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-7.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-7.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-7.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-7.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-36 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-36 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-44 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-44 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-50 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12.5rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12.5rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-50 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12.5rem * var(--space-x-reverse)) !important;
    margin-left: calc(-12.5rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-52 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-52 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-60 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-60 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-72 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-72 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-80 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-80 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-90 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-90 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-96 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-96 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-100 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-100 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25rem * var(--space-x-reverse)) !important;
    margin-left: calc(-25rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-120 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-30rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-30rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-120 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-30rem * var(--space-x-reverse)) !important;
    margin-left: calc(-30rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-128 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-128 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32rem * var(--space-x-reverse)) !important;
    margin-left: calc(-32rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-140 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-35rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-35rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-140 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-35rem * var(--space-x-reverse)) !important;
    margin-left: calc(-35rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-160 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-160 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40rem * var(--space-x-reverse)) !important;
    margin-left: calc(-40rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-180 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-45rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-45rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-180 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-45rem * var(--space-x-reverse)) !important;
    margin-left: calc(-45rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-192 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-192 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48rem * var(--space-x-reverse)) !important;
    margin-left: calc(-48rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-200 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-200 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50rem * var(--space-x-reverse)) !important;
    margin-left: calc(-50rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-240 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-240 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60rem * var(--space-x-reverse)) !important;
    margin-left: calc(-60rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-256 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-256 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64rem * var(--space-x-reverse)) !important;
    margin-left: calc(-64rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-280 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-70rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-70rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-280 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-70rem * var(--space-x-reverse)) !important;
    margin-left: calc(-70rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-320 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-320 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80rem * var(--space-x-reverse)) !important;
    margin-left: calc(-80rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-360 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-90rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-90rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-360 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-90rem * var(--space-x-reverse)) !important;
    margin-left: calc(-90rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-400 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-400 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100rem * var(--space-x-reverse)) !important;
    margin-left: calc(-100rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-480 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-120rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-120rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-480 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-120rem * var(--space-x-reverse)) !important;
    margin-left: calc(-120rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-0\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-0\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-1\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-1\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-2\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-2\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-3\.5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-3\.5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-1\/2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-1\/2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-1\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-1\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-2\/3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-2\/3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-1\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-1\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-2\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-2\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-3\/4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-3\/4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-1\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-1\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20% * var(--space-x-reverse)) !important;
    margin-left: calc(-20% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-2\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-2\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40% * var(--space-x-reverse)) !important;
    margin-left: calc(-40% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-3\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-60% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-60% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-3\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-60% * var(--space-x-reverse)) !important;
    margin-left: calc(-60% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-4\/5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-4\/5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80% * var(--space-x-reverse)) !important;
    margin-left: calc(-80% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-1\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-1\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-2\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-2\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-3\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-3\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-4\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-4\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-5\/6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-5\/6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-1\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8.33333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-1\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-2\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16.66667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-2\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-3\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-25% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-25% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-3\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-25% * var(--space-x-reverse)) !important;
    margin-left: calc(-25% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-4\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-33.33333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-4\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-33.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-5\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-41.66667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-5\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-41.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-6\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-50% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-50% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-6\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-50% * var(--space-x-reverse)) !important;
    margin-left: calc(-50% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-7\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-58.33333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-7\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-58.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-8\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-66.66667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-8\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-66.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-9\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-75% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-75% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-9\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-75% * var(--space-x-reverse)) !important;
    margin-left: calc(-75% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-10\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-83.33333% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-10\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-83.33333% * var(--space-x-reverse)) !important;
    margin-left: calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-11\/12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-91.66667% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-11\/12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-91.66667% * var(--space-x-reverse)) !important;
    margin-left: calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-full > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100% * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100% * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-full > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100% * var(--space-x-reverse)) !important;
    margin-left: calc(-100% * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:-space-y-2px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-2px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-2px * var(--space-y-reverse)) !important;
  }

  .gt-md\:-space-x-2px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-2px * var(--space-x-reverse)) !important;
    margin-left: calc(-2px * calc(1 - var(--space-x-reverse))) !important;
  }

  .gt-md\:space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .gt-md\:space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .gt-md\:sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .gt-md\:not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .gt-md\:focus\:sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .gt-md\:focus\:not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .gt-md\:rounded-none {
    border-radius: 0 !important;
  }

  .gt-md\:rounded-sm {
    border-radius: 0.125rem !important;
  }

  .gt-md\:rounded {
    border-radius: 0.25rem !important;
  }

  .gt-md\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .gt-md\:rounded-lg {
    border-radius: 0.5rem !important;
  }

  .gt-md\:rounded-full {
    border-radius: 9999px !important;
  }

  .gt-md\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .gt-md\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .gt-md\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .gt-md\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .gt-md\:rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .gt-md\:rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .gt-md\:rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .gt-md\:rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .gt-md\:rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .gt-md\:rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .gt-md\:rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .gt-md\:rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .gt-md\:rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .gt-md\:rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .gt-md\:rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .gt-md\:rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .gt-md\:rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .gt-md\:rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .gt-md\:rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .gt-md\:rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .gt-md\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .gt-md\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .gt-md\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .gt-md\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .gt-md\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .gt-md\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .gt-md\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .gt-md\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .gt-md\:rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .gt-md\:rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .gt-md\:rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .gt-md\:rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .gt-md\:rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .gt-md\:rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .gt-md\:rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .gt-md\:rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .gt-md\:rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .gt-md\:rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .gt-md\:rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .gt-md\:rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .gt-md\:rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .gt-md\:rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .gt-md\:rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .gt-md\:rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .gt-md\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .gt-md\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .gt-md\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .gt-md\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .gt-md\:border-0 {
    border-width: 0 !important;
  }

  .gt-md\:border-2 {
    border-width: 2px !important;
  }

  .gt-md\:border-4 {
    border-width: 4px !important;
  }

  .gt-md\:border-8 {
    border-width: 8px !important;
  }

  .gt-md\:border {
    border-width: 1px !important;
  }

  .gt-md\:border-t-0 {
    border-top-width: 0 !important;
  }

  .gt-md\:border-r-0 {
    border-right-width: 0 !important;
  }

  .gt-md\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .gt-md\:border-l-0 {
    border-left-width: 0 !important;
  }

  .gt-md\:border-t-2 {
    border-top-width: 2px !important;
  }

  .gt-md\:border-r-2 {
    border-right-width: 2px !important;
  }

  .gt-md\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .gt-md\:border-l-2 {
    border-left-width: 2px !important;
  }

  .gt-md\:border-t-4 {
    border-top-width: 4px !important;
  }

  .gt-md\:border-r-4 {
    border-right-width: 4px !important;
  }

  .gt-md\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .gt-md\:border-l-4 {
    border-left-width: 4px !important;
  }

  .gt-md\:border-t-8 {
    border-top-width: 8px !important;
  }

  .gt-md\:border-r-8 {
    border-right-width: 8px !important;
  }

  .gt-md\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .gt-md\:border-l-8 {
    border-left-width: 8px !important;
  }

  .gt-md\:border-t {
    border-top-width: 1px !important;
  }

  .gt-md\:border-r {
    border-right-width: 1px !important;
  }

  .gt-md\:border-b {
    border-bottom-width: 1px !important;
  }

  .gt-md\:border-l {
    border-left-width: 1px !important;
  }

  .gt-md\:first\:border-0:first-child {
    border-width: 0 !important;
  }

  .gt-md\:first\:border-2:first-child {
    border-width: 2px !important;
  }

  .gt-md\:first\:border-4:first-child {
    border-width: 4px !important;
  }

  .gt-md\:first\:border-8:first-child {
    border-width: 8px !important;
  }

  .gt-md\:first\:border:first-child {
    border-width: 1px !important;
  }

  .gt-md\:first\:border-t-0:first-child {
    border-top-width: 0 !important;
  }

  .gt-md\:first\:border-r-0:first-child {
    border-right-width: 0 !important;
  }

  .gt-md\:first\:border-b-0:first-child {
    border-bottom-width: 0 !important;
  }

  .gt-md\:first\:border-l-0:first-child {
    border-left-width: 0 !important;
  }

  .gt-md\:first\:border-t-2:first-child {
    border-top-width: 2px !important;
  }

  .gt-md\:first\:border-r-2:first-child {
    border-right-width: 2px !important;
  }

  .gt-md\:first\:border-b-2:first-child {
    border-bottom-width: 2px !important;
  }

  .gt-md\:first\:border-l-2:first-child {
    border-left-width: 2px !important;
  }

  .gt-md\:first\:border-t-4:first-child {
    border-top-width: 4px !important;
  }

  .gt-md\:first\:border-r-4:first-child {
    border-right-width: 4px !important;
  }

  .gt-md\:first\:border-b-4:first-child {
    border-bottom-width: 4px !important;
  }

  .gt-md\:first\:border-l-4:first-child {
    border-left-width: 4px !important;
  }

  .gt-md\:first\:border-t-8:first-child {
    border-top-width: 8px !important;
  }

  .gt-md\:first\:border-r-8:first-child {
    border-right-width: 8px !important;
  }

  .gt-md\:first\:border-b-8:first-child {
    border-bottom-width: 8px !important;
  }

  .gt-md\:first\:border-l-8:first-child {
    border-left-width: 8px !important;
  }

  .gt-md\:first\:border-t:first-child {
    border-top-width: 1px !important;
  }

  .gt-md\:first\:border-r:first-child {
    border-right-width: 1px !important;
  }

  .gt-md\:first\:border-b:first-child {
    border-bottom-width: 1px !important;
  }

  .gt-md\:first\:border-l:first-child {
    border-left-width: 1px !important;
  }

  .gt-md\:last\:border-0:last-child {
    border-width: 0 !important;
  }

  .gt-md\:last\:border-2:last-child {
    border-width: 2px !important;
  }

  .gt-md\:last\:border-4:last-child {
    border-width: 4px !important;
  }

  .gt-md\:last\:border-8:last-child {
    border-width: 8px !important;
  }

  .gt-md\:last\:border:last-child {
    border-width: 1px !important;
  }

  .gt-md\:last\:border-t-0:last-child {
    border-top-width: 0 !important;
  }

  .gt-md\:last\:border-r-0:last-child {
    border-right-width: 0 !important;
  }

  .gt-md\:last\:border-b-0:last-child {
    border-bottom-width: 0 !important;
  }

  .gt-md\:last\:border-l-0:last-child {
    border-left-width: 0 !important;
  }

  .gt-md\:last\:border-t-2:last-child {
    border-top-width: 2px !important;
  }

  .gt-md\:last\:border-r-2:last-child {
    border-right-width: 2px !important;
  }

  .gt-md\:last\:border-b-2:last-child {
    border-bottom-width: 2px !important;
  }

  .gt-md\:last\:border-l-2:last-child {
    border-left-width: 2px !important;
  }

  .gt-md\:last\:border-t-4:last-child {
    border-top-width: 4px !important;
  }

  .gt-md\:last\:border-r-4:last-child {
    border-right-width: 4px !important;
  }

  .gt-md\:last\:border-b-4:last-child {
    border-bottom-width: 4px !important;
  }

  .gt-md\:last\:border-l-4:last-child {
    border-left-width: 4px !important;
  }

  .gt-md\:last\:border-t-8:last-child {
    border-top-width: 8px !important;
  }

  .gt-md\:last\:border-r-8:last-child {
    border-right-width: 8px !important;
  }

  .gt-md\:last\:border-b-8:last-child {
    border-bottom-width: 8px !important;
  }

  .gt-md\:last\:border-l-8:last-child {
    border-left-width: 8px !important;
  }

  .gt-md\:last\:border-t:last-child {
    border-top-width: 1px !important;
  }

  .gt-md\:last\:border-r:last-child {
    border-right-width: 1px !important;
  }

  .gt-md\:last\:border-b:last-child {
    border-bottom-width: 1px !important;
  }

  .gt-md\:last\:border-l:last-child {
    border-left-width: 1px !important;
  }

  .gt-md\:block {
    display: block !important;
  }

  .gt-md\:inline-block {
    display: inline-block !important;
  }

  .gt-md\:inline {
    display: inline !important;
  }

  .gt-md\:flex {
    display: flex !important;
  }

  .gt-md\:inline-flex {
    display: inline-flex !important;
  }

  .gt-md\:table {
    display: table !important;
  }

  .gt-md\:table-caption {
    display: table-caption !important;
  }

  .gt-md\:table-cell {
    display: table-cell !important;
  }

  .gt-md\:table-column {
    display: table-column !important;
  }

  .gt-md\:table-column-group {
    display: table-column-group !important;
  }

  .gt-md\:table-footer-group {
    display: table-footer-group !important;
  }

  .gt-md\:table-header-group {
    display: table-header-group !important;
  }

  .gt-md\:table-row-group {
    display: table-row-group !important;
  }

  .gt-md\:table-row {
    display: table-row !important;
  }

  .gt-md\:flow-root {
    display: flow-root !important;
  }

  .gt-md\:grid {
    display: grid !important;
  }

  .gt-md\:inline-grid {
    display: inline-grid !important;
  }

  .gt-md\:contents {
    display: contents !important;
  }

  .gt-md\:hidden {
    display: none !important;
  }

  .gt-md\:flex-row {
    flex-direction: row !important;
  }

  .gt-md\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .gt-md\:flex-col {
    flex-direction: column !important;
  }

  .gt-md\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .gt-md\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .gt-md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gt-md\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .gt-md\:items-start {
    align-items: flex-start !important;
  }

  .gt-md\:items-end {
    align-items: flex-end !important;
  }

  .gt-md\:items-center {
    align-items: center !important;
  }

  .gt-md\:items-baseline {
    align-items: baseline !important;
  }

  .gt-md\:items-stretch {
    align-items: stretch !important;
  }

  .gt-md\:self-auto {
    align-self: auto !important;
  }

  .gt-md\:self-start {
    align-self: flex-start !important;
  }

  .gt-md\:self-end {
    align-self: flex-end !important;
  }

  .gt-md\:self-center {
    align-self: center !important;
  }

  .gt-md\:self-stretch {
    align-self: stretch !important;
  }

  .gt-md\:justify-start {
    justify-content: flex-start !important;
  }

  .gt-md\:justify-end {
    justify-content: flex-end !important;
  }

  .gt-md\:justify-center {
    justify-content: center !important;
  }

  .gt-md\:justify-between {
    justify-content: space-between !important;
  }

  .gt-md\:justify-around {
    justify-content: space-around !important;
  }

  .gt-md\:justify-evenly {
    justify-content: space-evenly !important;
  }

  .gt-md\:content-center {
    align-content: center !important;
  }

  .gt-md\:content-start {
    align-content: flex-start !important;
  }

  .gt-md\:content-end {
    align-content: flex-end !important;
  }

  .gt-md\:content-between {
    align-content: space-between !important;
  }

  .gt-md\:content-around {
    align-content: space-around !important;
  }

  .gt-md\:flex-0 {
    flex: 0 0 auto !important;
  }

  .gt-md\:flex-1 {
    flex: 1 1 0% !important;
  }

  .gt-md\:flex-auto {
    flex: 1 1 auto !important;
  }

  .gt-md\:flex-initial {
    flex: 0 1 auto !important;
  }

  .gt-md\:flex-none {
    flex: none !important;
  }

  .gt-md\:flex-grow-0 {
    flex-grow: 0 !important;
  }

  .gt-md\:flex-grow {
    flex-grow: 1 !important;
  }

  .gt-md\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .gt-md\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .gt-md\:order-1 {
    order: 1 !important;
  }

  .gt-md\:order-2 {
    order: 2 !important;
  }

  .gt-md\:order-3 {
    order: 3 !important;
  }

  .gt-md\:order-4 {
    order: 4 !important;
  }

  .gt-md\:order-5 {
    order: 5 !important;
  }

  .gt-md\:order-6 {
    order: 6 !important;
  }

  .gt-md\:order-7 {
    order: 7 !important;
  }

  .gt-md\:order-8 {
    order: 8 !important;
  }

  .gt-md\:order-9 {
    order: 9 !important;
  }

  .gt-md\:order-10 {
    order: 10 !important;
  }

  .gt-md\:order-11 {
    order: 11 !important;
  }

  .gt-md\:order-12 {
    order: 12 !important;
  }

  .gt-md\:order-first {
    order: -9999 !important;
  }

  .gt-md\:order-last {
    order: 9999 !important;
  }

  .gt-md\:order-none {
    order: 0 !important;
  }

  .gt-md\:font-hairline {
    font-weight: 100 !important;
  }

  .gt-md\:font-thin {
    font-weight: 200 !important;
  }

  .gt-md\:font-light {
    font-weight: 300 !important;
  }

  .gt-md\:font-normal {
    font-weight: 400 !important;
  }

  .gt-md\:font-medium {
    font-weight: 500 !important;
  }

  .gt-md\:font-semibold {
    font-weight: 600 !important;
  }

  .gt-md\:font-bold {
    font-weight: 700 !important;
  }

  .gt-md\:font-extrabold {
    font-weight: 800 !important;
  }

  .gt-md\:font-black {
    font-weight: 900 !important;
  }

  .gt-md\:h-0 {
    height: 0 !important;
  }

  .gt-md\:h-1 {
    height: 0.25rem !important;
  }

  .gt-md\:h-2 {
    height: 0.5rem !important;
  }

  .gt-md\:h-3 {
    height: 0.75rem !important;
  }

  .gt-md\:h-4 {
    height: 1rem !important;
  }

  .gt-md\:h-5 {
    height: 1.25rem !important;
  }

  .gt-md\:h-6 {
    height: 1.5rem !important;
  }

  .gt-md\:h-7 {
    height: 1.75rem !important;
  }

  .gt-md\:h-8 {
    height: 2rem !important;
  }

  .gt-md\:h-9 {
    height: 2.25rem !important;
  }

  .gt-md\:h-10 {
    height: 2.5rem !important;
  }

  .gt-md\:h-11 {
    height: 2.75rem !important;
  }

  .gt-md\:h-12 {
    height: 3rem !important;
  }

  .gt-md\:h-13 {
    height: 3.25rem !important;
  }

  .gt-md\:h-14 {
    height: 3.5rem !important;
  }

  .gt-md\:h-15 {
    height: 3.75rem !important;
  }

  .gt-md\:h-16 {
    height: 4rem !important;
  }

  .gt-md\:h-18 {
    height: 4.5rem !important;
  }

  .gt-md\:h-20 {
    height: 5rem !important;
  }

  .gt-md\:h-22 {
    height: 5.5rem !important;
  }

  .gt-md\:h-24 {
    height: 6rem !important;
  }

  .gt-md\:h-26 {
    height: 6.5rem !important;
  }

  .gt-md\:h-28 {
    height: 7rem !important;
  }

  .gt-md\:h-30 {
    height: 7.5rem !important;
  }

  .gt-md\:h-32 {
    height: 8rem !important;
  }

  .gt-md\:h-36 {
    height: 9rem !important;
  }

  .gt-md\:h-40 {
    height: 10rem !important;
  }

  .gt-md\:h-44 {
    height: 11rem !important;
  }

  .gt-md\:h-48 {
    height: 12rem !important;
  }

  .gt-md\:h-50 {
    height: 12.5rem !important;
  }

  .gt-md\:h-52 {
    height: 13rem !important;
  }

  .gt-md\:h-56 {
    height: 14rem !important;
  }

  .gt-md\:h-60 {
    height: 15rem !important;
  }

  .gt-md\:h-64 {
    height: 16rem !important;
  }

  .gt-md\:h-72 {
    height: 18rem !important;
  }

  .gt-md\:h-80 {
    height: 20rem !important;
  }

  .gt-md\:h-90 {
    height: 24rem !important;
  }

  .gt-md\:h-96 {
    height: 24rem !important;
  }

  .gt-md\:h-100 {
    height: 25rem !important;
  }

  .gt-md\:h-120 {
    height: 30rem !important;
  }

  .gt-md\:h-128 {
    height: 32rem !important;
  }

  .gt-md\:h-140 {
    height: 35rem !important;
  }

  .gt-md\:h-160 {
    height: 40rem !important;
  }

  .gt-md\:h-180 {
    height: 45rem !important;
  }

  .gt-md\:h-192 {
    height: 48rem !important;
  }

  .gt-md\:h-200 {
    height: 50rem !important;
  }

  .gt-md\:h-240 {
    height: 60rem !important;
  }

  .gt-md\:h-256 {
    height: 64rem !important;
  }

  .gt-md\:h-280 {
    height: 70rem !important;
  }

  .gt-md\:h-320 {
    height: 80rem !important;
  }

  .gt-md\:h-360 {
    height: 90rem !important;
  }

  .gt-md\:h-400 {
    height: 100rem !important;
  }

  .gt-md\:h-480 {
    height: 120rem !important;
  }

  .gt-md\:h-auto {
    height: auto !important;
  }

  .gt-md\:h-px {
    height: 1px !important;
  }

  .gt-md\:h-0\.5 {
    height: 0.125rem !important;
  }

  .gt-md\:h-1\.5 {
    height: 0.375rem !important;
  }

  .gt-md\:h-2\.5 {
    height: 0.625rem !important;
  }

  .gt-md\:h-3\.5 {
    height: 0.875rem !important;
  }

  .gt-md\:h-1\/2 {
    height: 50% !important;
  }

  .gt-md\:h-1\/3 {
    height: 33.333333% !important;
  }

  .gt-md\:h-2\/3 {
    height: 66.666667% !important;
  }

  .gt-md\:h-1\/4 {
    height: 25% !important;
  }

  .gt-md\:h-2\/4 {
    height: 50% !important;
  }

  .gt-md\:h-3\/4 {
    height: 75% !important;
  }

  .gt-md\:h-1\/5 {
    height: 20% !important;
  }

  .gt-md\:h-2\/5 {
    height: 40% !important;
  }

  .gt-md\:h-3\/5 {
    height: 60% !important;
  }

  .gt-md\:h-4\/5 {
    height: 80% !important;
  }

  .gt-md\:h-1\/6 {
    height: 16.666667% !important;
  }

  .gt-md\:h-2\/6 {
    height: 33.333333% !important;
  }

  .gt-md\:h-3\/6 {
    height: 50% !important;
  }

  .gt-md\:h-4\/6 {
    height: 66.666667% !important;
  }

  .gt-md\:h-5\/6 {
    height: 83.333333% !important;
  }

  .gt-md\:h-1\/12 {
    height: 8.333333% !important;
  }

  .gt-md\:h-2\/12 {
    height: 16.666667% !important;
  }

  .gt-md\:h-3\/12 {
    height: 25% !important;
  }

  .gt-md\:h-4\/12 {
    height: 33.333333% !important;
  }

  .gt-md\:h-5\/12 {
    height: 41.666667% !important;
  }

  .gt-md\:h-6\/12 {
    height: 50% !important;
  }

  .gt-md\:h-7\/12 {
    height: 58.333333% !important;
  }

  .gt-md\:h-8\/12 {
    height: 66.666667% !important;
  }

  .gt-md\:h-9\/12 {
    height: 75% !important;
  }

  .gt-md\:h-10\/12 {
    height: 83.333333% !important;
  }

  .gt-md\:h-11\/12 {
    height: 91.666667% !important;
  }

  .gt-md\:h-full {
    height: 100% !important;
  }

  .gt-md\:h-2px {
    height: 2px !important;
  }

  .gt-md\:h-screen {
    height: 100vh !important;
  }

  .gt-md\:text-xs {
    font-size: 0.625rem !important;
  }

  .gt-md\:text-sm {
    font-size: 0.75rem !important;
  }

  .gt-md\:text-md {
    font-size: 0.8125rem !important;
  }

  .gt-md\:text-base {
    font-size: 0.875rem !important;
  }

  .gt-md\:text-lg {
    font-size: 1rem !important;
  }

  .gt-md\:text-xl {
    font-size: 1.125rem !important;
  }

  .gt-md\:text-2xl {
    font-size: 1.25rem !important;
  }

  .gt-md\:text-3xl {
    font-size: 1.5rem !important;
  }

  .gt-md\:text-4xl {
    font-size: 2rem !important;
  }

  .gt-md\:text-5xl {
    font-size: 2.25rem !important;
  }

  .gt-md\:text-6xl {
    font-size: 2.5rem !important;
  }

  .gt-md\:text-7xl {
    font-size: 3rem !important;
  }

  .gt-md\:text-8xl {
    font-size: 4rem !important;
  }

  .gt-md\:text-9xl {
    font-size: 6rem !important;
  }

  .gt-md\:text-10xl {
    font-size: 8rem !important;
  }

  .gt-md\:leading-3 {
    line-height: 0.75rem !important;
  }

  .gt-md\:leading-4 {
    line-height: 1rem !important;
  }

  .gt-md\:leading-5 {
    line-height: 1.25rem !important;
  }

  .gt-md\:leading-6 {
    line-height: 1.5rem !important;
  }

  .gt-md\:leading-7 {
    line-height: 1.75rem !important;
  }

  .gt-md\:leading-8 {
    line-height: 2rem !important;
  }

  .gt-md\:leading-9 {
    line-height: 2.25rem !important;
  }

  .gt-md\:leading-10 {
    line-height: 2.5rem !important;
  }

  .gt-md\:leading-none {
    line-height: 1 !important;
  }

  .gt-md\:leading-tight {
    line-height: 1.25 !important;
  }

  .gt-md\:leading-snug {
    line-height: 1.375 !important;
  }

  .gt-md\:leading-normal {
    line-height: 1.5 !important;
  }

  .gt-md\:leading-relaxed {
    line-height: 1.625 !important;
  }

  .gt-md\:leading-loose {
    line-height: 2 !important;
  }

  .gt-md\:m-0 {
    margin: 0 !important;
  }

  .gt-md\:m-1 {
    margin: 0.25rem !important;
  }

  .gt-md\:m-2 {
    margin: 0.5rem !important;
  }

  .gt-md\:m-3 {
    margin: 0.75rem !important;
  }

  .gt-md\:m-4 {
    margin: 1rem !important;
  }

  .gt-md\:m-5 {
    margin: 1.25rem !important;
  }

  .gt-md\:m-6 {
    margin: 1.5rem !important;
  }

  .gt-md\:m-7 {
    margin: 1.75rem !important;
  }

  .gt-md\:m-8 {
    margin: 2rem !important;
  }

  .gt-md\:m-9 {
    margin: 2.25rem !important;
  }

  .gt-md\:m-10 {
    margin: 2.5rem !important;
  }

  .gt-md\:m-11 {
    margin: 2.75rem !important;
  }

  .gt-md\:m-12 {
    margin: 3rem !important;
  }

  .gt-md\:m-13 {
    margin: 3.25rem !important;
  }

  .gt-md\:m-14 {
    margin: 3.5rem !important;
  }

  .gt-md\:m-15 {
    margin: 3.75rem !important;
  }

  .gt-md\:m-16 {
    margin: 4rem !important;
  }

  .gt-md\:m-18 {
    margin: 4.5rem !important;
  }

  .gt-md\:m-20 {
    margin: 5rem !important;
  }

  .gt-md\:m-22 {
    margin: 5.5rem !important;
  }

  .gt-md\:m-24 {
    margin: 6rem !important;
  }

  .gt-md\:m-26 {
    margin: 6.5rem !important;
  }

  .gt-md\:m-28 {
    margin: 7rem !important;
  }

  .gt-md\:m-30 {
    margin: 7.5rem !important;
  }

  .gt-md\:m-32 {
    margin: 8rem !important;
  }

  .gt-md\:m-36 {
    margin: 9rem !important;
  }

  .gt-md\:m-40 {
    margin: 10rem !important;
  }

  .gt-md\:m-44 {
    margin: 11rem !important;
  }

  .gt-md\:m-48 {
    margin: 12rem !important;
  }

  .gt-md\:m-50 {
    margin: 12.5rem !important;
  }

  .gt-md\:m-52 {
    margin: 13rem !important;
  }

  .gt-md\:m-56 {
    margin: 14rem !important;
  }

  .gt-md\:m-60 {
    margin: 15rem !important;
  }

  .gt-md\:m-64 {
    margin: 16rem !important;
  }

  .gt-md\:m-72 {
    margin: 18rem !important;
  }

  .gt-md\:m-80 {
    margin: 20rem !important;
  }

  .gt-md\:m-90 {
    margin: 24rem !important;
  }

  .gt-md\:m-96 {
    margin: 24rem !important;
  }

  .gt-md\:m-100 {
    margin: 25rem !important;
  }

  .gt-md\:m-120 {
    margin: 30rem !important;
  }

  .gt-md\:m-128 {
    margin: 32rem !important;
  }

  .gt-md\:m-140 {
    margin: 35rem !important;
  }

  .gt-md\:m-160 {
    margin: 40rem !important;
  }

  .gt-md\:m-180 {
    margin: 45rem !important;
  }

  .gt-md\:m-192 {
    margin: 48rem !important;
  }

  .gt-md\:m-200 {
    margin: 50rem !important;
  }

  .gt-md\:m-240 {
    margin: 60rem !important;
  }

  .gt-md\:m-256 {
    margin: 64rem !important;
  }

  .gt-md\:m-280 {
    margin: 70rem !important;
  }

  .gt-md\:m-320 {
    margin: 80rem !important;
  }

  .gt-md\:m-360 {
    margin: 90rem !important;
  }

  .gt-md\:m-400 {
    margin: 100rem !important;
  }

  .gt-md\:m-480 {
    margin: 120rem !important;
  }

  .gt-md\:m-auto {
    margin: auto !important;
  }

  .gt-md\:m-px {
    margin: 1px !important;
  }

  .gt-md\:m-0\.5 {
    margin: 0.125rem !important;
  }

  .gt-md\:m-1\.5 {
    margin: 0.375rem !important;
  }

  .gt-md\:m-2\.5 {
    margin: 0.625rem !important;
  }

  .gt-md\:m-3\.5 {
    margin: 0.875rem !important;
  }

  .gt-md\:m-1\/2 {
    margin: 50% !important;
  }

  .gt-md\:m-1\/3 {
    margin: 33.333333% !important;
  }

  .gt-md\:m-2\/3 {
    margin: 66.666667% !important;
  }

  .gt-md\:m-1\/4 {
    margin: 25% !important;
  }

  .gt-md\:m-2\/4 {
    margin: 50% !important;
  }

  .gt-md\:m-3\/4 {
    margin: 75% !important;
  }

  .gt-md\:m-1\/5 {
    margin: 20% !important;
  }

  .gt-md\:m-2\/5 {
    margin: 40% !important;
  }

  .gt-md\:m-3\/5 {
    margin: 60% !important;
  }

  .gt-md\:m-4\/5 {
    margin: 80% !important;
  }

  .gt-md\:m-1\/6 {
    margin: 16.666667% !important;
  }

  .gt-md\:m-2\/6 {
    margin: 33.333333% !important;
  }

  .gt-md\:m-3\/6 {
    margin: 50% !important;
  }

  .gt-md\:m-4\/6 {
    margin: 66.666667% !important;
  }

  .gt-md\:m-5\/6 {
    margin: 83.333333% !important;
  }

  .gt-md\:m-1\/12 {
    margin: 8.333333% !important;
  }

  .gt-md\:m-2\/12 {
    margin: 16.666667% !important;
  }

  .gt-md\:m-3\/12 {
    margin: 25% !important;
  }

  .gt-md\:m-4\/12 {
    margin: 33.333333% !important;
  }

  .gt-md\:m-5\/12 {
    margin: 41.666667% !important;
  }

  .gt-md\:m-6\/12 {
    margin: 50% !important;
  }

  .gt-md\:m-7\/12 {
    margin: 58.333333% !important;
  }

  .gt-md\:m-8\/12 {
    margin: 66.666667% !important;
  }

  .gt-md\:m-9\/12 {
    margin: 75% !important;
  }

  .gt-md\:m-10\/12 {
    margin: 83.333333% !important;
  }

  .gt-md\:m-11\/12 {
    margin: 91.666667% !important;
  }

  .gt-md\:m-full {
    margin: 100% !important;
  }

  .gt-md\:m-2px {
    margin: 2px !important;
  }

  .gt-md\:-m-1 {
    margin: -0.25rem !important;
  }

  .gt-md\:-m-2 {
    margin: -0.5rem !important;
  }

  .gt-md\:-m-3 {
    margin: -0.75rem !important;
  }

  .gt-md\:-m-4 {
    margin: -1rem !important;
  }

  .gt-md\:-m-5 {
    margin: -1.25rem !important;
  }

  .gt-md\:-m-6 {
    margin: -1.5rem !important;
  }

  .gt-md\:-m-7 {
    margin: -1.75rem !important;
  }

  .gt-md\:-m-8 {
    margin: -2rem !important;
  }

  .gt-md\:-m-9 {
    margin: -2.25rem !important;
  }

  .gt-md\:-m-10 {
    margin: -2.5rem !important;
  }

  .gt-md\:-m-11 {
    margin: -2.75rem !important;
  }

  .gt-md\:-m-12 {
    margin: -3rem !important;
  }

  .gt-md\:-m-13 {
    margin: -3.25rem !important;
  }

  .gt-md\:-m-14 {
    margin: -3.5rem !important;
  }

  .gt-md\:-m-15 {
    margin: -3.75rem !important;
  }

  .gt-md\:-m-16 {
    margin: -4rem !important;
  }

  .gt-md\:-m-18 {
    margin: -4.5rem !important;
  }

  .gt-md\:-m-20 {
    margin: -5rem !important;
  }

  .gt-md\:-m-22 {
    margin: -5.5rem !important;
  }

  .gt-md\:-m-24 {
    margin: -6rem !important;
  }

  .gt-md\:-m-26 {
    margin: -6.5rem !important;
  }

  .gt-md\:-m-28 {
    margin: -7rem !important;
  }

  .gt-md\:-m-30 {
    margin: -7.5rem !important;
  }

  .gt-md\:-m-32 {
    margin: -8rem !important;
  }

  .gt-md\:-m-36 {
    margin: -9rem !important;
  }

  .gt-md\:-m-40 {
    margin: -10rem !important;
  }

  .gt-md\:-m-44 {
    margin: -11rem !important;
  }

  .gt-md\:-m-48 {
    margin: -12rem !important;
  }

  .gt-md\:-m-50 {
    margin: -12.5rem !important;
  }

  .gt-md\:-m-52 {
    margin: -13rem !important;
  }

  .gt-md\:-m-56 {
    margin: -14rem !important;
  }

  .gt-md\:-m-60 {
    margin: -15rem !important;
  }

  .gt-md\:-m-64 {
    margin: -16rem !important;
  }

  .gt-md\:-m-72 {
    margin: -18rem !important;
  }

  .gt-md\:-m-80 {
    margin: -20rem !important;
  }

  .gt-md\:-m-90 {
    margin: -24rem !important;
  }

  .gt-md\:-m-96 {
    margin: -24rem !important;
  }

  .gt-md\:-m-100 {
    margin: -25rem !important;
  }

  .gt-md\:-m-120 {
    margin: -30rem !important;
  }

  .gt-md\:-m-128 {
    margin: -32rem !important;
  }

  .gt-md\:-m-140 {
    margin: -35rem !important;
  }

  .gt-md\:-m-160 {
    margin: -40rem !important;
  }

  .gt-md\:-m-180 {
    margin: -45rem !important;
  }

  .gt-md\:-m-192 {
    margin: -48rem !important;
  }

  .gt-md\:-m-200 {
    margin: -50rem !important;
  }

  .gt-md\:-m-240 {
    margin: -60rem !important;
  }

  .gt-md\:-m-256 {
    margin: -64rem !important;
  }

  .gt-md\:-m-280 {
    margin: -70rem !important;
  }

  .gt-md\:-m-320 {
    margin: -80rem !important;
  }

  .gt-md\:-m-360 {
    margin: -90rem !important;
  }

  .gt-md\:-m-400 {
    margin: -100rem !important;
  }

  .gt-md\:-m-480 {
    margin: -120rem !important;
  }

  .gt-md\:-m-px {
    margin: -1px !important;
  }

  .gt-md\:-m-0\.5 {
    margin: -0.125rem !important;
  }

  .gt-md\:-m-1\.5 {
    margin: -0.375rem !important;
  }

  .gt-md\:-m-2\.5 {
    margin: -0.625rem !important;
  }

  .gt-md\:-m-3\.5 {
    margin: -0.875rem !important;
  }

  .gt-md\:-m-1\/2 {
    margin: -50% !important;
  }

  .gt-md\:-m-1\/3 {
    margin: -33.33333% !important;
  }

  .gt-md\:-m-2\/3 {
    margin: -66.66667% !important;
  }

  .gt-md\:-m-1\/4 {
    margin: -25% !important;
  }

  .gt-md\:-m-2\/4 {
    margin: -50% !important;
  }

  .gt-md\:-m-3\/4 {
    margin: -75% !important;
  }

  .gt-md\:-m-1\/5 {
    margin: -20% !important;
  }

  .gt-md\:-m-2\/5 {
    margin: -40% !important;
  }

  .gt-md\:-m-3\/5 {
    margin: -60% !important;
  }

  .gt-md\:-m-4\/5 {
    margin: -80% !important;
  }

  .gt-md\:-m-1\/6 {
    margin: -16.66667% !important;
  }

  .gt-md\:-m-2\/6 {
    margin: -33.33333% !important;
  }

  .gt-md\:-m-3\/6 {
    margin: -50% !important;
  }

  .gt-md\:-m-4\/6 {
    margin: -66.66667% !important;
  }

  .gt-md\:-m-5\/6 {
    margin: -83.33333% !important;
  }

  .gt-md\:-m-1\/12 {
    margin: -8.33333% !important;
  }

  .gt-md\:-m-2\/12 {
    margin: -16.66667% !important;
  }

  .gt-md\:-m-3\/12 {
    margin: -25% !important;
  }

  .gt-md\:-m-4\/12 {
    margin: -33.33333% !important;
  }

  .gt-md\:-m-5\/12 {
    margin: -41.66667% !important;
  }

  .gt-md\:-m-6\/12 {
    margin: -50% !important;
  }

  .gt-md\:-m-7\/12 {
    margin: -58.33333% !important;
  }

  .gt-md\:-m-8\/12 {
    margin: -66.66667% !important;
  }

  .gt-md\:-m-9\/12 {
    margin: -75% !important;
  }

  .gt-md\:-m-10\/12 {
    margin: -83.33333% !important;
  }

  .gt-md\:-m-11\/12 {
    margin: -91.66667% !important;
  }

  .gt-md\:-m-full {
    margin: -100% !important;
  }

  .gt-md\:-m-2px {
    margin: -2px !important;
  }

  .gt-md\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .gt-md\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .gt-md\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .gt-md\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .gt-md\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .gt-md\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .gt-md\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .gt-md\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .gt-md\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .gt-md\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .gt-md\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .gt-md\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .gt-md\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .gt-md\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .gt-md\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .gt-md\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .gt-md\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .gt-md\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .gt-md\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .gt-md\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .gt-md\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .gt-md\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .gt-md\:my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .gt-md\:mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .gt-md\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .gt-md\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .gt-md\:my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .gt-md\:mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
  }

  .gt-md\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .gt-md\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .gt-md\:my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .gt-md\:mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .gt-md\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .gt-md\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .gt-md\:my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .gt-md\:mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

  .gt-md\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .gt-md\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .gt-md\:my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .gt-md\:mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }

  .gt-md\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .gt-md\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .gt-md\:my-26 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .gt-md\:mx-26 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .gt-md\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .gt-md\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .gt-md\:my-30 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .gt-md\:mx-30 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .gt-md\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .gt-md\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .gt-md\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .gt-md\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .gt-md\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .gt-md\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .gt-md\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .gt-md\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .gt-md\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .gt-md\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .gt-md\:my-50 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .gt-md\:mx-50 {
    margin-left: 12.5rem !important;
    margin-right: 12.5rem !important;
  }

  .gt-md\:my-52 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .gt-md\:mx-52 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .gt-md\:my-56 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .gt-md\:mx-56 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .gt-md\:my-60 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .gt-md\:mx-60 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .gt-md\:my-64 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .gt-md\:mx-64 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .gt-md\:my-72 {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .gt-md\:mx-72 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .gt-md\:my-80 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .gt-md\:mx-80 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .gt-md\:my-90 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .gt-md\:mx-90 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .gt-md\:my-96 {
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .gt-md\:mx-96 {
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .gt-md\:my-100 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }

  .gt-md\:mx-100 {
    margin-left: 25rem !important;
    margin-right: 25rem !important;
  }

  .gt-md\:my-120 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }

  .gt-md\:mx-120 {
    margin-left: 30rem !important;
    margin-right: 30rem !important;
  }

  .gt-md\:my-128 {
    margin-top: 32rem !important;
    margin-bottom: 32rem !important;
  }

  .gt-md\:mx-128 {
    margin-left: 32rem !important;
    margin-right: 32rem !important;
  }

  .gt-md\:my-140 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }

  .gt-md\:mx-140 {
    margin-left: 35rem !important;
    margin-right: 35rem !important;
  }

  .gt-md\:my-160 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }

  .gt-md\:mx-160 {
    margin-left: 40rem !important;
    margin-right: 40rem !important;
  }

  .gt-md\:my-180 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }

  .gt-md\:mx-180 {
    margin-left: 45rem !important;
    margin-right: 45rem !important;
  }

  .gt-md\:my-192 {
    margin-top: 48rem !important;
    margin-bottom: 48rem !important;
  }

  .gt-md\:mx-192 {
    margin-left: 48rem !important;
    margin-right: 48rem !important;
  }

  .gt-md\:my-200 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }

  .gt-md\:mx-200 {
    margin-left: 50rem !important;
    margin-right: 50rem !important;
  }

  .gt-md\:my-240 {
    margin-top: 60rem !important;
    margin-bottom: 60rem !important;
  }

  .gt-md\:mx-240 {
    margin-left: 60rem !important;
    margin-right: 60rem !important;
  }

  .gt-md\:my-256 {
    margin-top: 64rem !important;
    margin-bottom: 64rem !important;
  }

  .gt-md\:mx-256 {
    margin-left: 64rem !important;
    margin-right: 64rem !important;
  }

  .gt-md\:my-280 {
    margin-top: 70rem !important;
    margin-bottom: 70rem !important;
  }

  .gt-md\:mx-280 {
    margin-left: 70rem !important;
    margin-right: 70rem !important;
  }

  .gt-md\:my-320 {
    margin-top: 80rem !important;
    margin-bottom: 80rem !important;
  }

  .gt-md\:mx-320 {
    margin-left: 80rem !important;
    margin-right: 80rem !important;
  }

  .gt-md\:my-360 {
    margin-top: 90rem !important;
    margin-bottom: 90rem !important;
  }

  .gt-md\:mx-360 {
    margin-left: 90rem !important;
    margin-right: 90rem !important;
  }

  .gt-md\:my-400 {
    margin-top: 100rem !important;
    margin-bottom: 100rem !important;
  }

  .gt-md\:mx-400 {
    margin-left: 100rem !important;
    margin-right: 100rem !important;
  }

  .gt-md\:my-480 {
    margin-top: 120rem !important;
    margin-bottom: 120rem !important;
  }

  .gt-md\:mx-480 {
    margin-left: 120rem !important;
    margin-right: 120rem !important;
  }

  .gt-md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .gt-md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .gt-md\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .gt-md\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .gt-md\:my-0\.5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .gt-md\:mx-0\.5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .gt-md\:my-1\.5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .gt-md\:mx-1\.5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .gt-md\:my-2\.5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .gt-md\:mx-2\.5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .gt-md\:my-3\.5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .gt-md\:mx-3\.5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .gt-md\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-md\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-md\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .gt-md\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .gt-md\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .gt-md\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .gt-md\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .gt-md\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .gt-md\:my-2\/4 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-md\:mx-2\/4 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-md\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .gt-md\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .gt-md\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }

  .gt-md\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }

  .gt-md\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }

  .gt-md\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }

  .gt-md\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }

  .gt-md\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }

  .gt-md\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }

  .gt-md\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }

  .gt-md\:my-1\/6 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .gt-md\:mx-1\/6 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .gt-md\:my-2\/6 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .gt-md\:mx-2\/6 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .gt-md\:my-3\/6 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-md\:mx-3\/6 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-md\:my-4\/6 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .gt-md\:mx-4\/6 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .gt-md\:my-5\/6 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .gt-md\:mx-5\/6 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .gt-md\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }

  .gt-md\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }

  .gt-md\:my-2\/12 {
    margin-top: 16.666667% !important;
    margin-bottom: 16.666667% !important;
  }

  .gt-md\:mx-2\/12 {
    margin-left: 16.666667% !important;
    margin-right: 16.666667% !important;
  }

  .gt-md\:my-3\/12 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }

  .gt-md\:mx-3\/12 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .gt-md\:my-4\/12 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }

  .gt-md\:mx-4\/12 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }

  .gt-md\:my-5\/12 {
    margin-top: 41.666667% !important;
    margin-bottom: 41.666667% !important;
  }

  .gt-md\:mx-5\/12 {
    margin-left: 41.666667% !important;
    margin-right: 41.666667% !important;
  }

  .gt-md\:my-6\/12 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }

  .gt-md\:mx-6\/12 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }

  .gt-md\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }

  .gt-md\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }

  .gt-md\:my-8\/12 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }

  .gt-md\:mx-8\/12 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }

  .gt-md\:my-9\/12 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }

  .gt-md\:mx-9\/12 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }

  .gt-md\:my-10\/12 {
    margin-top: 83.333333% !important;
    margin-bottom: 83.333333% !important;
  }

  .gt-md\:mx-10\/12 {
    margin-left: 83.333333% !important;
    margin-right: 83.333333% !important;
  }

  .gt-md\:my-11\/12 {
    margin-top: 91.666667% !important;
    margin-bottom: 91.666667% !important;
  }

  .gt-md\:mx-11\/12 {
    margin-left: 91.666667% !important;
    margin-right: 91.666667% !important;
  }

  .gt-md\:my-full {
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .gt-md\:mx-full {
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .gt-md\:my-2px {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .gt-md\:mx-2px {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }

  .gt-md\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .gt-md\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .gt-md\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .gt-md\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .gt-md\:-my-3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .gt-md\:-mx-3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .gt-md\:-my-4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .gt-md\:-mx-4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .gt-md\:-my-5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .gt-md\:-mx-5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .gt-md\:-my-6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .gt-md\:-mx-6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .gt-md\:-my-7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .gt-md\:-mx-7 {
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .gt-md\:-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .gt-md\:-mx-8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .gt-md\:-my-9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .gt-md\:-mx-9 {
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .gt-md\:-my-10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .gt-md\:-mx-10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .gt-md\:-my-11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .gt-md\:-mx-11 {
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .gt-md\:-my-12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .gt-md\:-mx-12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .gt-md\:-my-13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .gt-md\:-mx-13 {
    margin-left: -3.25rem !important;
    margin-right: -3.25rem !important;
  }

  .gt-md\:-my-14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .gt-md\:-mx-14 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .gt-md\:-my-15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .gt-md\:-mx-15 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }

  .gt-md\:-my-16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .gt-md\:-mx-16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .gt-md\:-my-18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .gt-md\:-mx-18 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

  .gt-md\:-my-20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .gt-md\:-mx-20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .gt-md\:-my-22 {
    margin-top: -5.5rem !important;
    margin-bottom: -5.5rem !important;
  }

  .gt-md\:-mx-22 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important;
  }

  .gt-md\:-my-24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .gt-md\:-mx-24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .gt-md\:-my-26 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .gt-md\:-mx-26 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .gt-md\:-my-28 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .gt-md\:-mx-28 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .gt-md\:-my-30 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

  .gt-md\:-mx-30 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

  .gt-md\:-my-32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .gt-md\:-mx-32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .gt-md\:-my-36 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .gt-md\:-mx-36 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .gt-md\:-my-40 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .gt-md\:-mx-40 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .gt-md\:-my-44 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .gt-md\:-mx-44 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .gt-md\:-my-48 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .gt-md\:-mx-48 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .gt-md\:-my-50 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }

  .gt-md\:-mx-50 {
    margin-left: -12.5rem !important;
    margin-right: -12.5rem !important;
  }

  .gt-md\:-my-52 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .gt-md\:-mx-52 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .gt-md\:-my-56 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .gt-md\:-mx-56 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .gt-md\:-my-60 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .gt-md\:-mx-60 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .gt-md\:-my-64 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .gt-md\:-mx-64 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .gt-md\:-my-72 {
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .gt-md\:-mx-72 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .gt-md\:-my-80 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .gt-md\:-mx-80 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .gt-md\:-my-90 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .gt-md\:-mx-90 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .gt-md\:-my-96 {
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .gt-md\:-mx-96 {
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .gt-md\:-my-100 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }

  .gt-md\:-mx-100 {
    margin-left: -25rem !important;
    margin-right: -25rem !important;
  }

  .gt-md\:-my-120 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }

  .gt-md\:-mx-120 {
    margin-left: -30rem !important;
    margin-right: -30rem !important;
  }

  .gt-md\:-my-128 {
    margin-top: -32rem !important;
    margin-bottom: -32rem !important;
  }

  .gt-md\:-mx-128 {
    margin-left: -32rem !important;
    margin-right: -32rem !important;
  }

  .gt-md\:-my-140 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }

  .gt-md\:-mx-140 {
    margin-left: -35rem !important;
    margin-right: -35rem !important;
  }

  .gt-md\:-my-160 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }

  .gt-md\:-mx-160 {
    margin-left: -40rem !important;
    margin-right: -40rem !important;
  }

  .gt-md\:-my-180 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }

  .gt-md\:-mx-180 {
    margin-left: -45rem !important;
    margin-right: -45rem !important;
  }

  .gt-md\:-my-192 {
    margin-top: -48rem !important;
    margin-bottom: -48rem !important;
  }

  .gt-md\:-mx-192 {
    margin-left: -48rem !important;
    margin-right: -48rem !important;
  }

  .gt-md\:-my-200 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }

  .gt-md\:-mx-200 {
    margin-left: -50rem !important;
    margin-right: -50rem !important;
  }

  .gt-md\:-my-240 {
    margin-top: -60rem !important;
    margin-bottom: -60rem !important;
  }

  .gt-md\:-mx-240 {
    margin-left: -60rem !important;
    margin-right: -60rem !important;
  }

  .gt-md\:-my-256 {
    margin-top: -64rem !important;
    margin-bottom: -64rem !important;
  }

  .gt-md\:-mx-256 {
    margin-left: -64rem !important;
    margin-right: -64rem !important;
  }

  .gt-md\:-my-280 {
    margin-top: -70rem !important;
    margin-bottom: -70rem !important;
  }

  .gt-md\:-mx-280 {
    margin-left: -70rem !important;
    margin-right: -70rem !important;
  }

  .gt-md\:-my-320 {
    margin-top: -80rem !important;
    margin-bottom: -80rem !important;
  }

  .gt-md\:-mx-320 {
    margin-left: -80rem !important;
    margin-right: -80rem !important;
  }

  .gt-md\:-my-360 {
    margin-top: -90rem !important;
    margin-bottom: -90rem !important;
  }

  .gt-md\:-mx-360 {
    margin-left: -90rem !important;
    margin-right: -90rem !important;
  }

  .gt-md\:-my-400 {
    margin-top: -100rem !important;
    margin-bottom: -100rem !important;
  }

  .gt-md\:-mx-400 {
    margin-left: -100rem !important;
    margin-right: -100rem !important;
  }

  .gt-md\:-my-480 {
    margin-top: -120rem !important;
    margin-bottom: -120rem !important;
  }

  .gt-md\:-mx-480 {
    margin-left: -120rem !important;
    margin-right: -120rem !important;
  }

  .gt-md\:-my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .gt-md\:-mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .gt-md\:-my-0\.5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .gt-md\:-mx-0\.5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .gt-md\:-my-1\.5 {
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .gt-md\:-mx-1\.5 {
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .gt-md\:-my-2\.5 {
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .gt-md\:-mx-2\.5 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .gt-md\:-my-3\.5 {
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .gt-md\:-mx-3\.5 {
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .gt-md\:-my-1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-md\:-mx-1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-md\:-my-1\/3 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .gt-md\:-mx-1\/3 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .gt-md\:-my-2\/3 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .gt-md\:-mx-2\/3 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .gt-md\:-my-1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .gt-md\:-mx-1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .gt-md\:-my-2\/4 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-md\:-mx-2\/4 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-md\:-my-3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .gt-md\:-mx-3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .gt-md\:-my-1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }

  .gt-md\:-mx-1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }

  .gt-md\:-my-2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }

  .gt-md\:-mx-2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }

  .gt-md\:-my-3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }

  .gt-md\:-mx-3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }

  .gt-md\:-my-4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }

  .gt-md\:-mx-4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }

  .gt-md\:-my-1\/6 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .gt-md\:-mx-1\/6 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .gt-md\:-my-2\/6 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .gt-md\:-mx-2\/6 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .gt-md\:-my-3\/6 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-md\:-mx-3\/6 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-md\:-my-4\/6 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .gt-md\:-mx-4\/6 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .gt-md\:-my-5\/6 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .gt-md\:-mx-5\/6 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .gt-md\:-my-1\/12 {
    margin-top: -8.33333% !important;
    margin-bottom: -8.33333% !important;
  }

  .gt-md\:-mx-1\/12 {
    margin-left: -8.33333% !important;
    margin-right: -8.33333% !important;
  }

  .gt-md\:-my-2\/12 {
    margin-top: -16.66667% !important;
    margin-bottom: -16.66667% !important;
  }

  .gt-md\:-mx-2\/12 {
    margin-left: -16.66667% !important;
    margin-right: -16.66667% !important;
  }

  .gt-md\:-my-3\/12 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }

  .gt-md\:-mx-3\/12 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }

  .gt-md\:-my-4\/12 {
    margin-top: -33.33333% !important;
    margin-bottom: -33.33333% !important;
  }

  .gt-md\:-mx-4\/12 {
    margin-left: -33.33333% !important;
    margin-right: -33.33333% !important;
  }

  .gt-md\:-my-5\/12 {
    margin-top: -41.66667% !important;
    margin-bottom: -41.66667% !important;
  }

  .gt-md\:-mx-5\/12 {
    margin-left: -41.66667% !important;
    margin-right: -41.66667% !important;
  }

  .gt-md\:-my-6\/12 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }

  .gt-md\:-mx-6\/12 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .gt-md\:-my-7\/12 {
    margin-top: -58.33333% !important;
    margin-bottom: -58.33333% !important;
  }

  .gt-md\:-mx-7\/12 {
    margin-left: -58.33333% !important;
    margin-right: -58.33333% !important;
  }

  .gt-md\:-my-8\/12 {
    margin-top: -66.66667% !important;
    margin-bottom: -66.66667% !important;
  }

  .gt-md\:-mx-8\/12 {
    margin-left: -66.66667% !important;
    margin-right: -66.66667% !important;
  }

  .gt-md\:-my-9\/12 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }

  .gt-md\:-mx-9\/12 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }

  .gt-md\:-my-10\/12 {
    margin-top: -83.33333% !important;
    margin-bottom: -83.33333% !important;
  }

  .gt-md\:-mx-10\/12 {
    margin-left: -83.33333% !important;
    margin-right: -83.33333% !important;
  }

  .gt-md\:-my-11\/12 {
    margin-top: -91.66667% !important;
    margin-bottom: -91.66667% !important;
  }

  .gt-md\:-mx-11\/12 {
    margin-left: -91.66667% !important;
    margin-right: -91.66667% !important;
  }

  .gt-md\:-my-full {
    margin-top: -100% !important;
    margin-bottom: -100% !important;
  }

  .gt-md\:-mx-full {
    margin-left: -100% !important;
    margin-right: -100% !important;
  }

  .gt-md\:-my-2px {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .gt-md\:-mx-2px {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }

  .gt-md\:mt-0 {
    margin-top: 0 !important;
  }

  .gt-md\:mr-0 {
    margin-right: 0 !important;
  }

  .gt-md\:mb-0 {
    margin-bottom: 0 !important;
  }

  .gt-md\:ml-0 {
    margin-left: 0 !important;
  }

  .gt-md\:mt-1 {
    margin-top: 0.25rem !important;
  }

  .gt-md\:mr-1 {
    margin-right: 0.25rem !important;
  }

  .gt-md\:mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .gt-md\:ml-1 {
    margin-left: 0.25rem !important;
  }

  .gt-md\:mt-2 {
    margin-top: 0.5rem !important;
  }

  .gt-md\:mr-2 {
    margin-right: 0.5rem !important;
  }

  .gt-md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .gt-md\:ml-2 {
    margin-left: 0.5rem !important;
  }

  .gt-md\:mt-3 {
    margin-top: 0.75rem !important;
  }

  .gt-md\:mr-3 {
    margin-right: 0.75rem !important;
  }

  .gt-md\:mb-3 {
    margin-bottom: 0.75rem !important;
  }

  .gt-md\:ml-3 {
    margin-left: 0.75rem !important;
  }

  .gt-md\:mt-4 {
    margin-top: 1rem !important;
  }

  .gt-md\:mr-4 {
    margin-right: 1rem !important;
  }

  .gt-md\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .gt-md\:ml-4 {
    margin-left: 1rem !important;
  }

  .gt-md\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .gt-md\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .gt-md\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .gt-md\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .gt-md\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .gt-md\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .gt-md\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .gt-md\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .gt-md\:mt-7 {
    margin-top: 1.75rem !important;
  }

  .gt-md\:mr-7 {
    margin-right: 1.75rem !important;
  }

  .gt-md\:mb-7 {
    margin-bottom: 1.75rem !important;
  }

  .gt-md\:ml-7 {
    margin-left: 1.75rem !important;
  }

  .gt-md\:mt-8 {
    margin-top: 2rem !important;
  }

  .gt-md\:mr-8 {
    margin-right: 2rem !important;
  }

  .gt-md\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .gt-md\:ml-8 {
    margin-left: 2rem !important;
  }

  .gt-md\:mt-9 {
    margin-top: 2.25rem !important;
  }

  .gt-md\:mr-9 {
    margin-right: 2.25rem !important;
  }

  .gt-md\:mb-9 {
    margin-bottom: 2.25rem !important;
  }

  .gt-md\:ml-9 {
    margin-left: 2.25rem !important;
  }

  .gt-md\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .gt-md\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .gt-md\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .gt-md\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .gt-md\:mt-11 {
    margin-top: 2.75rem !important;
  }

  .gt-md\:mr-11 {
    margin-right: 2.75rem !important;
  }

  .gt-md\:mb-11 {
    margin-bottom: 2.75rem !important;
  }

  .gt-md\:ml-11 {
    margin-left: 2.75rem !important;
  }

  .gt-md\:mt-12 {
    margin-top: 3rem !important;
  }

  .gt-md\:mr-12 {
    margin-right: 3rem !important;
  }

  .gt-md\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .gt-md\:ml-12 {
    margin-left: 3rem !important;
  }

  .gt-md\:mt-13 {
    margin-top: 3.25rem !important;
  }

  .gt-md\:mr-13 {
    margin-right: 3.25rem !important;
  }

  .gt-md\:mb-13 {
    margin-bottom: 3.25rem !important;
  }

  .gt-md\:ml-13 {
    margin-left: 3.25rem !important;
  }

  .gt-md\:mt-14 {
    margin-top: 3.5rem !important;
  }

  .gt-md\:mr-14 {
    margin-right: 3.5rem !important;
  }

  .gt-md\:mb-14 {
    margin-bottom: 3.5rem !important;
  }

  .gt-md\:ml-14 {
    margin-left: 3.5rem !important;
  }

  .gt-md\:mt-15 {
    margin-top: 3.75rem !important;
  }

  .gt-md\:mr-15 {
    margin-right: 3.75rem !important;
  }

  .gt-md\:mb-15 {
    margin-bottom: 3.75rem !important;
  }

  .gt-md\:ml-15 {
    margin-left: 3.75rem !important;
  }

  .gt-md\:mt-16 {
    margin-top: 4rem !important;
  }

  .gt-md\:mr-16 {
    margin-right: 4rem !important;
  }

  .gt-md\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .gt-md\:ml-16 {
    margin-left: 4rem !important;
  }

  .gt-md\:mt-18 {
    margin-top: 4.5rem !important;
  }

  .gt-md\:mr-18 {
    margin-right: 4.5rem !important;
  }

  .gt-md\:mb-18 {
    margin-bottom: 4.5rem !important;
  }

  .gt-md\:ml-18 {
    margin-left: 4.5rem !important;
  }

  .gt-md\:mt-20 {
    margin-top: 5rem !important;
  }

  .gt-md\:mr-20 {
    margin-right: 5rem !important;
  }

  .gt-md\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .gt-md\:ml-20 {
    margin-left: 5rem !important;
  }

  .gt-md\:mt-22 {
    margin-top: 5.5rem !important;
  }

  .gt-md\:mr-22 {
    margin-right: 5.5rem !important;
  }

  .gt-md\:mb-22 {
    margin-bottom: 5.5rem !important;
  }

  .gt-md\:ml-22 {
    margin-left: 5.5rem !important;
  }

  .gt-md\:mt-24 {
    margin-top: 6rem !important;
  }

  .gt-md\:mr-24 {
    margin-right: 6rem !important;
  }

  .gt-md\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .gt-md\:ml-24 {
    margin-left: 6rem !important;
  }

  .gt-md\:mt-26 {
    margin-top: 6.5rem !important;
  }

  .gt-md\:mr-26 {
    margin-right: 6.5rem !important;
  }

  .gt-md\:mb-26 {
    margin-bottom: 6.5rem !important;
  }

  .gt-md\:ml-26 {
    margin-left: 6.5rem !important;
  }

  .gt-md\:mt-28 {
    margin-top: 7rem !important;
  }

  .gt-md\:mr-28 {
    margin-right: 7rem !important;
  }

  .gt-md\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .gt-md\:ml-28 {
    margin-left: 7rem !important;
  }

  .gt-md\:mt-30 {
    margin-top: 7.5rem !important;
  }

  .gt-md\:mr-30 {
    margin-right: 7.5rem !important;
  }

  .gt-md\:mb-30 {
    margin-bottom: 7.5rem !important;
  }

  .gt-md\:ml-30 {
    margin-left: 7.5rem !important;
  }

  .gt-md\:mt-32 {
    margin-top: 8rem !important;
  }

  .gt-md\:mr-32 {
    margin-right: 8rem !important;
  }

  .gt-md\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .gt-md\:ml-32 {
    margin-left: 8rem !important;
  }

  .gt-md\:mt-36 {
    margin-top: 9rem !important;
  }

  .gt-md\:mr-36 {
    margin-right: 9rem !important;
  }

  .gt-md\:mb-36 {
    margin-bottom: 9rem !important;
  }

  .gt-md\:ml-36 {
    margin-left: 9rem !important;
  }

  .gt-md\:mt-40 {
    margin-top: 10rem !important;
  }

  .gt-md\:mr-40 {
    margin-right: 10rem !important;
  }

  .gt-md\:mb-40 {
    margin-bottom: 10rem !important;
  }

  .gt-md\:ml-40 {
    margin-left: 10rem !important;
  }

  .gt-md\:mt-44 {
    margin-top: 11rem !important;
  }

  .gt-md\:mr-44 {
    margin-right: 11rem !important;
  }

  .gt-md\:mb-44 {
    margin-bottom: 11rem !important;
  }

  .gt-md\:ml-44 {
    margin-left: 11rem !important;
  }

  .gt-md\:mt-48 {
    margin-top: 12rem !important;
  }

  .gt-md\:mr-48 {
    margin-right: 12rem !important;
  }

  .gt-md\:mb-48 {
    margin-bottom: 12rem !important;
  }

  .gt-md\:ml-48 {
    margin-left: 12rem !important;
  }

  .gt-md\:mt-50 {
    margin-top: 12.5rem !important;
  }

  .gt-md\:mr-50 {
    margin-right: 12.5rem !important;
  }

  .gt-md\:mb-50 {
    margin-bottom: 12.5rem !important;
  }

  .gt-md\:ml-50 {
    margin-left: 12.5rem !important;
  }

  .gt-md\:mt-52 {
    margin-top: 13rem !important;
  }

  .gt-md\:mr-52 {
    margin-right: 13rem !important;
  }

  .gt-md\:mb-52 {
    margin-bottom: 13rem !important;
  }

  .gt-md\:ml-52 {
    margin-left: 13rem !important;
  }

  .gt-md\:mt-56 {
    margin-top: 14rem !important;
  }

  .gt-md\:mr-56 {
    margin-right: 14rem !important;
  }

  .gt-md\:mb-56 {
    margin-bottom: 14rem !important;
  }

  .gt-md\:ml-56 {
    margin-left: 14rem !important;
  }

  .gt-md\:mt-60 {
    margin-top: 15rem !important;
  }

  .gt-md\:mr-60 {
    margin-right: 15rem !important;
  }

  .gt-md\:mb-60 {
    margin-bottom: 15rem !important;
  }

  .gt-md\:ml-60 {
    margin-left: 15rem !important;
  }

  .gt-md\:mt-64 {
    margin-top: 16rem !important;
  }

  .gt-md\:mr-64 {
    margin-right: 16rem !important;
  }

  .gt-md\:mb-64 {
    margin-bottom: 16rem !important;
  }

  .gt-md\:ml-64 {
    margin-left: 16rem !important;
  }

  .gt-md\:mt-72 {
    margin-top: 18rem !important;
  }

  .gt-md\:mr-72 {
    margin-right: 18rem !important;
  }

  .gt-md\:mb-72 {
    margin-bottom: 18rem !important;
  }

  .gt-md\:ml-72 {
    margin-left: 18rem !important;
  }

  .gt-md\:mt-80 {
    margin-top: 20rem !important;
  }

  .gt-md\:mr-80 {
    margin-right: 20rem !important;
  }

  .gt-md\:mb-80 {
    margin-bottom: 20rem !important;
  }

  .gt-md\:ml-80 {
    margin-left: 20rem !important;
  }

  .gt-md\:mt-90 {
    margin-top: 24rem !important;
  }

  .gt-md\:mr-90 {
    margin-right: 24rem !important;
  }

  .gt-md\:mb-90 {
    margin-bottom: 24rem !important;
  }

  .gt-md\:ml-90 {
    margin-left: 24rem !important;
  }

  .gt-md\:mt-96 {
    margin-top: 24rem !important;
  }

  .gt-md\:mr-96 {
    margin-right: 24rem !important;
  }

  .gt-md\:mb-96 {
    margin-bottom: 24rem !important;
  }

  .gt-md\:ml-96 {
    margin-left: 24rem !important;
  }

  .gt-md\:mt-100 {
    margin-top: 25rem !important;
  }

  .gt-md\:mr-100 {
    margin-right: 25rem !important;
  }

  .gt-md\:mb-100 {
    margin-bottom: 25rem !important;
  }

  .gt-md\:ml-100 {
    margin-left: 25rem !important;
  }

  .gt-md\:mt-120 {
    margin-top: 30rem !important;
  }

  .gt-md\:mr-120 {
    margin-right: 30rem !important;
  }

  .gt-md\:mb-120 {
    margin-bottom: 30rem !important;
  }

  .gt-md\:ml-120 {
    margin-left: 30rem !important;
  }

  .gt-md\:mt-128 {
    margin-top: 32rem !important;
  }

  .gt-md\:mr-128 {
    margin-right: 32rem !important;
  }

  .gt-md\:mb-128 {
    margin-bottom: 32rem !important;
  }

  .gt-md\:ml-128 {
    margin-left: 32rem !important;
  }

  .gt-md\:mt-140 {
    margin-top: 35rem !important;
  }

  .gt-md\:mr-140 {
    margin-right: 35rem !important;
  }

  .gt-md\:mb-140 {
    margin-bottom: 35rem !important;
  }

  .gt-md\:ml-140 {
    margin-left: 35rem !important;
  }

  .gt-md\:mt-160 {
    margin-top: 40rem !important;
  }

  .gt-md\:mr-160 {
    margin-right: 40rem !important;
  }

  .gt-md\:mb-160 {
    margin-bottom: 40rem !important;
  }

  .gt-md\:ml-160 {
    margin-left: 40rem !important;
  }

  .gt-md\:mt-180 {
    margin-top: 45rem !important;
  }

  .gt-md\:mr-180 {
    margin-right: 45rem !important;
  }

  .gt-md\:mb-180 {
    margin-bottom: 45rem !important;
  }

  .gt-md\:ml-180 {
    margin-left: 45rem !important;
  }

  .gt-md\:mt-192 {
    margin-top: 48rem !important;
  }

  .gt-md\:mr-192 {
    margin-right: 48rem !important;
  }

  .gt-md\:mb-192 {
    margin-bottom: 48rem !important;
  }

  .gt-md\:ml-192 {
    margin-left: 48rem !important;
  }

  .gt-md\:mt-200 {
    margin-top: 50rem !important;
  }

  .gt-md\:mr-200 {
    margin-right: 50rem !important;
  }

  .gt-md\:mb-200 {
    margin-bottom: 50rem !important;
  }

  .gt-md\:ml-200 {
    margin-left: 50rem !important;
  }

  .gt-md\:mt-240 {
    margin-top: 60rem !important;
  }

  .gt-md\:mr-240 {
    margin-right: 60rem !important;
  }

  .gt-md\:mb-240 {
    margin-bottom: 60rem !important;
  }

  .gt-md\:ml-240 {
    margin-left: 60rem !important;
  }

  .gt-md\:mt-256 {
    margin-top: 64rem !important;
  }

  .gt-md\:mr-256 {
    margin-right: 64rem !important;
  }

  .gt-md\:mb-256 {
    margin-bottom: 64rem !important;
  }

  .gt-md\:ml-256 {
    margin-left: 64rem !important;
  }

  .gt-md\:mt-280 {
    margin-top: 70rem !important;
  }

  .gt-md\:mr-280 {
    margin-right: 70rem !important;
  }

  .gt-md\:mb-280 {
    margin-bottom: 70rem !important;
  }

  .gt-md\:ml-280 {
    margin-left: 70rem !important;
  }

  .gt-md\:mt-320 {
    margin-top: 80rem !important;
  }

  .gt-md\:mr-320 {
    margin-right: 80rem !important;
  }

  .gt-md\:mb-320 {
    margin-bottom: 80rem !important;
  }

  .gt-md\:ml-320 {
    margin-left: 80rem !important;
  }

  .gt-md\:mt-360 {
    margin-top: 90rem !important;
  }

  .gt-md\:mr-360 {
    margin-right: 90rem !important;
  }

  .gt-md\:mb-360 {
    margin-bottom: 90rem !important;
  }

  .gt-md\:ml-360 {
    margin-left: 90rem !important;
  }

  .gt-md\:mt-400 {
    margin-top: 100rem !important;
  }

  .gt-md\:mr-400 {
    margin-right: 100rem !important;
  }

  .gt-md\:mb-400 {
    margin-bottom: 100rem !important;
  }

  .gt-md\:ml-400 {
    margin-left: 100rem !important;
  }

  .gt-md\:mt-480 {
    margin-top: 120rem !important;
  }

  .gt-md\:mr-480 {
    margin-right: 120rem !important;
  }

  .gt-md\:mb-480 {
    margin-bottom: 120rem !important;
  }

  .gt-md\:ml-480 {
    margin-left: 120rem !important;
  }

  .gt-md\:mt-auto {
    margin-top: auto !important;
  }

  .gt-md\:mr-auto {
    margin-right: auto !important;
  }

  .gt-md\:mb-auto {
    margin-bottom: auto !important;
  }

  .gt-md\:ml-auto {
    margin-left: auto !important;
  }

  .gt-md\:mt-px {
    margin-top: 1px !important;
  }

  .gt-md\:mr-px {
    margin-right: 1px !important;
  }

  .gt-md\:mb-px {
    margin-bottom: 1px !important;
  }

  .gt-md\:ml-px {
    margin-left: 1px !important;
  }

  .gt-md\:mt-0\.5 {
    margin-top: 0.125rem !important;
  }

  .gt-md\:mr-0\.5 {
    margin-right: 0.125rem !important;
  }

  .gt-md\:mb-0\.5 {
    margin-bottom: 0.125rem !important;
  }

  .gt-md\:ml-0\.5 {
    margin-left: 0.125rem !important;
  }

  .gt-md\:mt-1\.5 {
    margin-top: 0.375rem !important;
  }

  .gt-md\:mr-1\.5 {
    margin-right: 0.375rem !important;
  }

  .gt-md\:mb-1\.5 {
    margin-bottom: 0.375rem !important;
  }

  .gt-md\:ml-1\.5 {
    margin-left: 0.375rem !important;
  }

  .gt-md\:mt-2\.5 {
    margin-top: 0.625rem !important;
  }

  .gt-md\:mr-2\.5 {
    margin-right: 0.625rem !important;
  }

  .gt-md\:mb-2\.5 {
    margin-bottom: 0.625rem !important;
  }

  .gt-md\:ml-2\.5 {
    margin-left: 0.625rem !important;
  }

  .gt-md\:mt-3\.5 {
    margin-top: 0.875rem !important;
  }

  .gt-md\:mr-3\.5 {
    margin-right: 0.875rem !important;
  }

  .gt-md\:mb-3\.5 {
    margin-bottom: 0.875rem !important;
  }

  .gt-md\:ml-3\.5 {
    margin-left: 0.875rem !important;
  }

  .gt-md\:mt-1\/2 {
    margin-top: 50% !important;
  }

  .gt-md\:mr-1\/2 {
    margin-right: 50% !important;
  }

  .gt-md\:mb-1\/2 {
    margin-bottom: 50% !important;
  }

  .gt-md\:ml-1\/2 {
    margin-left: 50% !important;
  }

  .gt-md\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }

  .gt-md\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }

  .gt-md\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }

  .gt-md\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }

  .gt-md\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }

  .gt-md\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }

  .gt-md\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }

  .gt-md\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }

  .gt-md\:mt-1\/4 {
    margin-top: 25% !important;
  }

  .gt-md\:mr-1\/4 {
    margin-right: 25% !important;
  }

  .gt-md\:mb-1\/4 {
    margin-bottom: 25% !important;
  }

  .gt-md\:ml-1\/4 {
    margin-left: 25% !important;
  }

  .gt-md\:mt-2\/4 {
    margin-top: 50% !important;
  }

  .gt-md\:mr-2\/4 {
    margin-right: 50% !important;
  }

  .gt-md\:mb-2\/4 {
    margin-bottom: 50% !important;
  }

  .gt-md\:ml-2\/4 {
    margin-left: 50% !important;
  }

  .gt-md\:mt-3\/4 {
    margin-top: 75% !important;
  }

  .gt-md\:mr-3\/4 {
    margin-right: 75% !important;
  }

  .gt-md\:mb-3\/4 {
    margin-bottom: 75% !important;
  }

  .gt-md\:ml-3\/4 {
    margin-left: 75% !important;
  }

  .gt-md\:mt-1\/5 {
    margin-top: 20% !important;
  }

  .gt-md\:mr-1\/5 {
    margin-right: 20% !important;
  }

  .gt-md\:mb-1\/5 {
    margin-bottom: 20% !important;
  }

  .gt-md\:ml-1\/5 {
    margin-left: 20% !important;
  }

  .gt-md\:mt-2\/5 {
    margin-top: 40% !important;
  }

  .gt-md\:mr-2\/5 {
    margin-right: 40% !important;
  }

  .gt-md\:mb-2\/5 {
    margin-bottom: 40% !important;
  }

  .gt-md\:ml-2\/5 {
    margin-left: 40% !important;
  }

  .gt-md\:mt-3\/5 {
    margin-top: 60% !important;
  }

  .gt-md\:mr-3\/5 {
    margin-right: 60% !important;
  }

  .gt-md\:mb-3\/5 {
    margin-bottom: 60% !important;
  }

  .gt-md\:ml-3\/5 {
    margin-left: 60% !important;
  }

  .gt-md\:mt-4\/5 {
    margin-top: 80% !important;
  }

  .gt-md\:mr-4\/5 {
    margin-right: 80% !important;
  }

  .gt-md\:mb-4\/5 {
    margin-bottom: 80% !important;
  }

  .gt-md\:ml-4\/5 {
    margin-left: 80% !important;
  }

  .gt-md\:mt-1\/6 {
    margin-top: 16.666667% !important;
  }

  .gt-md\:mr-1\/6 {
    margin-right: 16.666667% !important;
  }

  .gt-md\:mb-1\/6 {
    margin-bottom: 16.666667% !important;
  }

  .gt-md\:ml-1\/6 {
    margin-left: 16.666667% !important;
  }

  .gt-md\:mt-2\/6 {
    margin-top: 33.333333% !important;
  }

  .gt-md\:mr-2\/6 {
    margin-right: 33.333333% !important;
  }

  .gt-md\:mb-2\/6 {
    margin-bottom: 33.333333% !important;
  }

  .gt-md\:ml-2\/6 {
    margin-left: 33.333333% !important;
  }

  .gt-md\:mt-3\/6 {
    margin-top: 50% !important;
  }

  .gt-md\:mr-3\/6 {
    margin-right: 50% !important;
  }

  .gt-md\:mb-3\/6 {
    margin-bottom: 50% !important;
  }

  .gt-md\:ml-3\/6 {
    margin-left: 50% !important;
  }

  .gt-md\:mt-4\/6 {
    margin-top: 66.666667% !important;
  }

  .gt-md\:mr-4\/6 {
    margin-right: 66.666667% !important;
  }

  .gt-md\:mb-4\/6 {
    margin-bottom: 66.666667% !important;
  }

  .gt-md\:ml-4\/6 {
    margin-left: 66.666667% !important;
  }

  .gt-md\:mt-5\/6 {
    margin-top: 83.333333% !important;
  }

  .gt-md\:mr-5\/6 {
    margin-right: 83.333333% !important;
  }

  .gt-md\:mb-5\/6 {
    margin-bottom: 83.333333% !important;
  }

  .gt-md\:ml-5\/6 {
    margin-left: 83.333333% !important;
  }

  .gt-md\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }

  .gt-md\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }

  .gt-md\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }

  .gt-md\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }

  .gt-md\:mt-2\/12 {
    margin-top: 16.666667% !important;
  }

  .gt-md\:mr-2\/12 {
    margin-right: 16.666667% !important;
  }

  .gt-md\:mb-2\/12 {
    margin-bottom: 16.666667% !important;
  }

  .gt-md\:ml-2\/12 {
    margin-left: 16.666667% !important;
  }

  .gt-md\:mt-3\/12 {
    margin-top: 25% !important;
  }

  .gt-md\:mr-3\/12 {
    margin-right: 25% !important;
  }

  .gt-md\:mb-3\/12 {
    margin-bottom: 25% !important;
  }

  .gt-md\:ml-3\/12 {
    margin-left: 25% !important;
  }

  .gt-md\:mt-4\/12 {
    margin-top: 33.333333% !important;
  }

  .gt-md\:mr-4\/12 {
    margin-right: 33.333333% !important;
  }

  .gt-md\:mb-4\/12 {
    margin-bottom: 33.333333% !important;
  }

  .gt-md\:ml-4\/12 {
    margin-left: 33.333333% !important;
  }

  .gt-md\:mt-5\/12 {
    margin-top: 41.666667% !important;
  }

  .gt-md\:mr-5\/12 {
    margin-right: 41.666667% !important;
  }

  .gt-md\:mb-5\/12 {
    margin-bottom: 41.666667% !important;
  }

  .gt-md\:ml-5\/12 {
    margin-left: 41.666667% !important;
  }

  .gt-md\:mt-6\/12 {
    margin-top: 50% !important;
  }

  .gt-md\:mr-6\/12 {
    margin-right: 50% !important;
  }

  .gt-md\:mb-6\/12 {
    margin-bottom: 50% !important;
  }

  .gt-md\:ml-6\/12 {
    margin-left: 50% !important;
  }

  .gt-md\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }

  .gt-md\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }

  .gt-md\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }

  .gt-md\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }

  .gt-md\:mt-8\/12 {
    margin-top: 66.666667% !important;
  }

  .gt-md\:mr-8\/12 {
    margin-right: 66.666667% !important;
  }

  .gt-md\:mb-8\/12 {
    margin-bottom: 66.666667% !important;
  }

  .gt-md\:ml-8\/12 {
    margin-left: 66.666667% !important;
  }

  .gt-md\:mt-9\/12 {
    margin-top: 75% !important;
  }

  .gt-md\:mr-9\/12 {
    margin-right: 75% !important;
  }

  .gt-md\:mb-9\/12 {
    margin-bottom: 75% !important;
  }

  .gt-md\:ml-9\/12 {
    margin-left: 75% !important;
  }

  .gt-md\:mt-10\/12 {
    margin-top: 83.333333% !important;
  }

  .gt-md\:mr-10\/12 {
    margin-right: 83.333333% !important;
  }

  .gt-md\:mb-10\/12 {
    margin-bottom: 83.333333% !important;
  }

  .gt-md\:ml-10\/12 {
    margin-left: 83.333333% !important;
  }

  .gt-md\:mt-11\/12 {
    margin-top: 91.666667% !important;
  }

  .gt-md\:mr-11\/12 {
    margin-right: 91.666667% !important;
  }

  .gt-md\:mb-11\/12 {
    margin-bottom: 91.666667% !important;
  }

  .gt-md\:ml-11\/12 {
    margin-left: 91.666667% !important;
  }

  .gt-md\:mt-full {
    margin-top: 100% !important;
  }

  .gt-md\:mr-full {
    margin-right: 100% !important;
  }

  .gt-md\:mb-full {
    margin-bottom: 100% !important;
  }

  .gt-md\:ml-full {
    margin-left: 100% !important;
  }

  .gt-md\:mt-2px {
    margin-top: 2px !important;
  }

  .gt-md\:mr-2px {
    margin-right: 2px !important;
  }

  .gt-md\:mb-2px {
    margin-bottom: 2px !important;
  }

  .gt-md\:ml-2px {
    margin-left: 2px !important;
  }

  .gt-md\:-mt-1 {
    margin-top: -0.25rem !important;
  }

  .gt-md\:-mr-1 {
    margin-right: -0.25rem !important;
  }

  .gt-md\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }

  .gt-md\:-ml-1 {
    margin-left: -0.25rem !important;
  }

  .gt-md\:-mt-2 {
    margin-top: -0.5rem !important;
  }

  .gt-md\:-mr-2 {
    margin-right: -0.5rem !important;
  }

  .gt-md\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }

  .gt-md\:-ml-2 {
    margin-left: -0.5rem !important;
  }

  .gt-md\:-mt-3 {
    margin-top: -0.75rem !important;
  }

  .gt-md\:-mr-3 {
    margin-right: -0.75rem !important;
  }

  .gt-md\:-mb-3 {
    margin-bottom: -0.75rem !important;
  }

  .gt-md\:-ml-3 {
    margin-left: -0.75rem !important;
  }

  .gt-md\:-mt-4 {
    margin-top: -1rem !important;
  }

  .gt-md\:-mr-4 {
    margin-right: -1rem !important;
  }

  .gt-md\:-mb-4 {
    margin-bottom: -1rem !important;
  }

  .gt-md\:-ml-4 {
    margin-left: -1rem !important;
  }

  .gt-md\:-mt-5 {
    margin-top: -1.25rem !important;
  }

  .gt-md\:-mr-5 {
    margin-right: -1.25rem !important;
  }

  .gt-md\:-mb-5 {
    margin-bottom: -1.25rem !important;
  }

  .gt-md\:-ml-5 {
    margin-left: -1.25rem !important;
  }

  .gt-md\:-mt-6 {
    margin-top: -1.5rem !important;
  }

  .gt-md\:-mr-6 {
    margin-right: -1.5rem !important;
  }

  .gt-md\:-mb-6 {
    margin-bottom: -1.5rem !important;
  }

  .gt-md\:-ml-6 {
    margin-left: -1.5rem !important;
  }

  .gt-md\:-mt-7 {
    margin-top: -1.75rem !important;
  }

  .gt-md\:-mr-7 {
    margin-right: -1.75rem !important;
  }

  .gt-md\:-mb-7 {
    margin-bottom: -1.75rem !important;
  }

  .gt-md\:-ml-7 {
    margin-left: -1.75rem !important;
  }

  .gt-md\:-mt-8 {
    margin-top: -2rem !important;
  }

  .gt-md\:-mr-8 {
    margin-right: -2rem !important;
  }

  .gt-md\:-mb-8 {
    margin-bottom: -2rem !important;
  }

  .gt-md\:-ml-8 {
    margin-left: -2rem !important;
  }

  .gt-md\:-mt-9 {
    margin-top: -2.25rem !important;
  }

  .gt-md\:-mr-9 {
    margin-right: -2.25rem !important;
  }

  .gt-md\:-mb-9 {
    margin-bottom: -2.25rem !important;
  }

  .gt-md\:-ml-9 {
    margin-left: -2.25rem !important;
  }

  .gt-md\:-mt-10 {
    margin-top: -2.5rem !important;
  }

  .gt-md\:-mr-10 {
    margin-right: -2.5rem !important;
  }

  .gt-md\:-mb-10 {
    margin-bottom: -2.5rem !important;
  }

  .gt-md\:-ml-10 {
    margin-left: -2.5rem !important;
  }

  .gt-md\:-mt-11 {
    margin-top: -2.75rem !important;
  }

  .gt-md\:-mr-11 {
    margin-right: -2.75rem !important;
  }

  .gt-md\:-mb-11 {
    margin-bottom: -2.75rem !important;
  }

  .gt-md\:-ml-11 {
    margin-left: -2.75rem !important;
  }

  .gt-md\:-mt-12 {
    margin-top: -3rem !important;
  }

  .gt-md\:-mr-12 {
    margin-right: -3rem !important;
  }

  .gt-md\:-mb-12 {
    margin-bottom: -3rem !important;
  }

  .gt-md\:-ml-12 {
    margin-left: -3rem !important;
  }

  .gt-md\:-mt-13 {
    margin-top: -3.25rem !important;
  }

  .gt-md\:-mr-13 {
    margin-right: -3.25rem !important;
  }

  .gt-md\:-mb-13 {
    margin-bottom: -3.25rem !important;
  }

  .gt-md\:-ml-13 {
    margin-left: -3.25rem !important;
  }

  .gt-md\:-mt-14 {
    margin-top: -3.5rem !important;
  }

  .gt-md\:-mr-14 {
    margin-right: -3.5rem !important;
  }

  .gt-md\:-mb-14 {
    margin-bottom: -3.5rem !important;
  }

  .gt-md\:-ml-14 {
    margin-left: -3.5rem !important;
  }

  .gt-md\:-mt-15 {
    margin-top: -3.75rem !important;
  }

  .gt-md\:-mr-15 {
    margin-right: -3.75rem !important;
  }

  .gt-md\:-mb-15 {
    margin-bottom: -3.75rem !important;
  }

  .gt-md\:-ml-15 {
    margin-left: -3.75rem !important;
  }

  .gt-md\:-mt-16 {
    margin-top: -4rem !important;
  }

  .gt-md\:-mr-16 {
    margin-right: -4rem !important;
  }

  .gt-md\:-mb-16 {
    margin-bottom: -4rem !important;
  }

  .gt-md\:-ml-16 {
    margin-left: -4rem !important;
  }

  .gt-md\:-mt-18 {
    margin-top: -4.5rem !important;
  }

  .gt-md\:-mr-18 {
    margin-right: -4.5rem !important;
  }

  .gt-md\:-mb-18 {
    margin-bottom: -4.5rem !important;
  }

  .gt-md\:-ml-18 {
    margin-left: -4.5rem !important;
  }

  .gt-md\:-mt-20 {
    margin-top: -5rem !important;
  }

  .gt-md\:-mr-20 {
    margin-right: -5rem !important;
  }

  .gt-md\:-mb-20 {
    margin-bottom: -5rem !important;
  }

  .gt-md\:-ml-20 {
    margin-left: -5rem !important;
  }

  .gt-md\:-mt-22 {
    margin-top: -5.5rem !important;
  }

  .gt-md\:-mr-22 {
    margin-right: -5.5rem !important;
  }

  .gt-md\:-mb-22 {
    margin-bottom: -5.5rem !important;
  }

  .gt-md\:-ml-22 {
    margin-left: -5.5rem !important;
  }

  .gt-md\:-mt-24 {
    margin-top: -6rem !important;
  }

  .gt-md\:-mr-24 {
    margin-right: -6rem !important;
  }

  .gt-md\:-mb-24 {
    margin-bottom: -6rem !important;
  }

  .gt-md\:-ml-24 {
    margin-left: -6rem !important;
  }

  .gt-md\:-mt-26 {
    margin-top: -6.5rem !important;
  }

  .gt-md\:-mr-26 {
    margin-right: -6.5rem !important;
  }

  .gt-md\:-mb-26 {
    margin-bottom: -6.5rem !important;
  }

  .gt-md\:-ml-26 {
    margin-left: -6.5rem !important;
  }

  .gt-md\:-mt-28 {
    margin-top: -7rem !important;
  }

  .gt-md\:-mr-28 {
    margin-right: -7rem !important;
  }

  .gt-md\:-mb-28 {
    margin-bottom: -7rem !important;
  }

  .gt-md\:-ml-28 {
    margin-left: -7rem !important;
  }

  .gt-md\:-mt-30 {
    margin-top: -7.5rem !important;
  }

  .gt-md\:-mr-30 {
    margin-right: -7.5rem !important;
  }

  .gt-md\:-mb-30 {
    margin-bottom: -7.5rem !important;
  }

  .gt-md\:-ml-30 {
    margin-left: -7.5rem !important;
  }

  .gt-md\:-mt-32 {
    margin-top: -8rem !important;
  }

  .gt-md\:-mr-32 {
    margin-right: -8rem !important;
  }

  .gt-md\:-mb-32 {
    margin-bottom: -8rem !important;
  }

  .gt-md\:-ml-32 {
    margin-left: -8rem !important;
  }

  .gt-md\:-mt-36 {
    margin-top: -9rem !important;
  }

  .gt-md\:-mr-36 {
    margin-right: -9rem !important;
  }

  .gt-md\:-mb-36 {
    margin-bottom: -9rem !important;
  }

  .gt-md\:-ml-36 {
    margin-left: -9rem !important;
  }

  .gt-md\:-mt-40 {
    margin-top: -10rem !important;
  }

  .gt-md\:-mr-40 {
    margin-right: -10rem !important;
  }

  .gt-md\:-mb-40 {
    margin-bottom: -10rem !important;
  }

  .gt-md\:-ml-40 {
    margin-left: -10rem !important;
  }

  .gt-md\:-mt-44 {
    margin-top: -11rem !important;
  }

  .gt-md\:-mr-44 {
    margin-right: -11rem !important;
  }

  .gt-md\:-mb-44 {
    margin-bottom: -11rem !important;
  }

  .gt-md\:-ml-44 {
    margin-left: -11rem !important;
  }

  .gt-md\:-mt-48 {
    margin-top: -12rem !important;
  }

  .gt-md\:-mr-48 {
    margin-right: -12rem !important;
  }

  .gt-md\:-mb-48 {
    margin-bottom: -12rem !important;
  }

  .gt-md\:-ml-48 {
    margin-left: -12rem !important;
  }

  .gt-md\:-mt-50 {
    margin-top: -12.5rem !important;
  }

  .gt-md\:-mr-50 {
    margin-right: -12.5rem !important;
  }

  .gt-md\:-mb-50 {
    margin-bottom: -12.5rem !important;
  }

  .gt-md\:-ml-50 {
    margin-left: -12.5rem !important;
  }

  .gt-md\:-mt-52 {
    margin-top: -13rem !important;
  }

  .gt-md\:-mr-52 {
    margin-right: -13rem !important;
  }

  .gt-md\:-mb-52 {
    margin-bottom: -13rem !important;
  }

  .gt-md\:-ml-52 {
    margin-left: -13rem !important;
  }

  .gt-md\:-mt-56 {
    margin-top: -14rem !important;
  }

  .gt-md\:-mr-56 {
    margin-right: -14rem !important;
  }

  .gt-md\:-mb-56 {
    margin-bottom: -14rem !important;
  }

  .gt-md\:-ml-56 {
    margin-left: -14rem !important;
  }

  .gt-md\:-mt-60 {
    margin-top: -15rem !important;
  }

  .gt-md\:-mr-60 {
    margin-right: -15rem !important;
  }

  .gt-md\:-mb-60 {
    margin-bottom: -15rem !important;
  }

  .gt-md\:-ml-60 {
    margin-left: -15rem !important;
  }

  .gt-md\:-mt-64 {
    margin-top: -16rem !important;
  }

  .gt-md\:-mr-64 {
    margin-right: -16rem !important;
  }

  .gt-md\:-mb-64 {
    margin-bottom: -16rem !important;
  }

  .gt-md\:-ml-64 {
    margin-left: -16rem !important;
  }

  .gt-md\:-mt-72 {
    margin-top: -18rem !important;
  }

  .gt-md\:-mr-72 {
    margin-right: -18rem !important;
  }

  .gt-md\:-mb-72 {
    margin-bottom: -18rem !important;
  }

  .gt-md\:-ml-72 {
    margin-left: -18rem !important;
  }

  .gt-md\:-mt-80 {
    margin-top: -20rem !important;
  }

  .gt-md\:-mr-80 {
    margin-right: -20rem !important;
  }

  .gt-md\:-mb-80 {
    margin-bottom: -20rem !important;
  }

  .gt-md\:-ml-80 {
    margin-left: -20rem !important;
  }

  .gt-md\:-mt-90 {
    margin-top: -24rem !important;
  }

  .gt-md\:-mr-90 {
    margin-right: -24rem !important;
  }

  .gt-md\:-mb-90 {
    margin-bottom: -24rem !important;
  }

  .gt-md\:-ml-90 {
    margin-left: -24rem !important;
  }

  .gt-md\:-mt-96 {
    margin-top: -24rem !important;
  }

  .gt-md\:-mr-96 {
    margin-right: -24rem !important;
  }

  .gt-md\:-mb-96 {
    margin-bottom: -24rem !important;
  }

  .gt-md\:-ml-96 {
    margin-left: -24rem !important;
  }

  .gt-md\:-mt-100 {
    margin-top: -25rem !important;
  }

  .gt-md\:-mr-100 {
    margin-right: -25rem !important;
  }

  .gt-md\:-mb-100 {
    margin-bottom: -25rem !important;
  }

  .gt-md\:-ml-100 {
    margin-left: -25rem !important;
  }

  .gt-md\:-mt-120 {
    margin-top: -30rem !important;
  }

  .gt-md\:-mr-120 {
    margin-right: -30rem !important;
  }

  .gt-md\:-mb-120 {
    margin-bottom: -30rem !important;
  }

  .gt-md\:-ml-120 {
    margin-left: -30rem !important;
  }

  .gt-md\:-mt-128 {
    margin-top: -32rem !important;
  }

  .gt-md\:-mr-128 {
    margin-right: -32rem !important;
  }

  .gt-md\:-mb-128 {
    margin-bottom: -32rem !important;
  }

  .gt-md\:-ml-128 {
    margin-left: -32rem !important;
  }

  .gt-md\:-mt-140 {
    margin-top: -35rem !important;
  }

  .gt-md\:-mr-140 {
    margin-right: -35rem !important;
  }

  .gt-md\:-mb-140 {
    margin-bottom: -35rem !important;
  }

  .gt-md\:-ml-140 {
    margin-left: -35rem !important;
  }

  .gt-md\:-mt-160 {
    margin-top: -40rem !important;
  }

  .gt-md\:-mr-160 {
    margin-right: -40rem !important;
  }

  .gt-md\:-mb-160 {
    margin-bottom: -40rem !important;
  }

  .gt-md\:-ml-160 {
    margin-left: -40rem !important;
  }

  .gt-md\:-mt-180 {
    margin-top: -45rem !important;
  }

  .gt-md\:-mr-180 {
    margin-right: -45rem !important;
  }

  .gt-md\:-mb-180 {
    margin-bottom: -45rem !important;
  }

  .gt-md\:-ml-180 {
    margin-left: -45rem !important;
  }

  .gt-md\:-mt-192 {
    margin-top: -48rem !important;
  }

  .gt-md\:-mr-192 {
    margin-right: -48rem !important;
  }

  .gt-md\:-mb-192 {
    margin-bottom: -48rem !important;
  }

  .gt-md\:-ml-192 {
    margin-left: -48rem !important;
  }

  .gt-md\:-mt-200 {
    margin-top: -50rem !important;
  }

  .gt-md\:-mr-200 {
    margin-right: -50rem !important;
  }

  .gt-md\:-mb-200 {
    margin-bottom: -50rem !important;
  }

  .gt-md\:-ml-200 {
    margin-left: -50rem !important;
  }

  .gt-md\:-mt-240 {
    margin-top: -60rem !important;
  }

  .gt-md\:-mr-240 {
    margin-right: -60rem !important;
  }

  .gt-md\:-mb-240 {
    margin-bottom: -60rem !important;
  }

  .gt-md\:-ml-240 {
    margin-left: -60rem !important;
  }

  .gt-md\:-mt-256 {
    margin-top: -64rem !important;
  }

  .gt-md\:-mr-256 {
    margin-right: -64rem !important;
  }

  .gt-md\:-mb-256 {
    margin-bottom: -64rem !important;
  }

  .gt-md\:-ml-256 {
    margin-left: -64rem !important;
  }

  .gt-md\:-mt-280 {
    margin-top: -70rem !important;
  }

  .gt-md\:-mr-280 {
    margin-right: -70rem !important;
  }

  .gt-md\:-mb-280 {
    margin-bottom: -70rem !important;
  }

  .gt-md\:-ml-280 {
    margin-left: -70rem !important;
  }

  .gt-md\:-mt-320 {
    margin-top: -80rem !important;
  }

  .gt-md\:-mr-320 {
    margin-right: -80rem !important;
  }

  .gt-md\:-mb-320 {
    margin-bottom: -80rem !important;
  }

  .gt-md\:-ml-320 {
    margin-left: -80rem !important;
  }

  .gt-md\:-mt-360 {
    margin-top: -90rem !important;
  }

  .gt-md\:-mr-360 {
    margin-right: -90rem !important;
  }

  .gt-md\:-mb-360 {
    margin-bottom: -90rem !important;
  }

  .gt-md\:-ml-360 {
    margin-left: -90rem !important;
  }

  .gt-md\:-mt-400 {
    margin-top: -100rem !important;
  }

  .gt-md\:-mr-400 {
    margin-right: -100rem !important;
  }

  .gt-md\:-mb-400 {
    margin-bottom: -100rem !important;
  }

  .gt-md\:-ml-400 {
    margin-left: -100rem !important;
  }

  .gt-md\:-mt-480 {
    margin-top: -120rem !important;
  }

  .gt-md\:-mr-480 {
    margin-right: -120rem !important;
  }

  .gt-md\:-mb-480 {
    margin-bottom: -120rem !important;
  }

  .gt-md\:-ml-480 {
    margin-left: -120rem !important;
  }

  .gt-md\:-mt-px {
    margin-top: -1px !important;
  }

  .gt-md\:-mr-px {
    margin-right: -1px !important;
  }

  .gt-md\:-mb-px {
    margin-bottom: -1px !important;
  }

  .gt-md\:-ml-px {
    margin-left: -1px !important;
  }

  .gt-md\:-mt-0\.5 {
    margin-top: -0.125rem !important;
  }

  .gt-md\:-mr-0\.5 {
    margin-right: -0.125rem !important;
  }

  .gt-md\:-mb-0\.5 {
    margin-bottom: -0.125rem !important;
  }

  .gt-md\:-ml-0\.5 {
    margin-left: -0.125rem !important;
  }

  .gt-md\:-mt-1\.5 {
    margin-top: -0.375rem !important;
  }

  .gt-md\:-mr-1\.5 {
    margin-right: -0.375rem !important;
  }

  .gt-md\:-mb-1\.5 {
    margin-bottom: -0.375rem !important;
  }

  .gt-md\:-ml-1\.5 {
    margin-left: -0.375rem !important;
  }

  .gt-md\:-mt-2\.5 {
    margin-top: -0.625rem !important;
  }

  .gt-md\:-mr-2\.5 {
    margin-right: -0.625rem !important;
  }

  .gt-md\:-mb-2\.5 {
    margin-bottom: -0.625rem !important;
  }

  .gt-md\:-ml-2\.5 {
    margin-left: -0.625rem !important;
  }

  .gt-md\:-mt-3\.5 {
    margin-top: -0.875rem !important;
  }

  .gt-md\:-mr-3\.5 {
    margin-right: -0.875rem !important;
  }

  .gt-md\:-mb-3\.5 {
    margin-bottom: -0.875rem !important;
  }

  .gt-md\:-ml-3\.5 {
    margin-left: -0.875rem !important;
  }

  .gt-md\:-mt-1\/2 {
    margin-top: -50% !important;
  }

  .gt-md\:-mr-1\/2 {
    margin-right: -50% !important;
  }

  .gt-md\:-mb-1\/2 {
    margin-bottom: -50% !important;
  }

  .gt-md\:-ml-1\/2 {
    margin-left: -50% !important;
  }

  .gt-md\:-mt-1\/3 {
    margin-top: -33.33333% !important;
  }

  .gt-md\:-mr-1\/3 {
    margin-right: -33.33333% !important;
  }

  .gt-md\:-mb-1\/3 {
    margin-bottom: -33.33333% !important;
  }

  .gt-md\:-ml-1\/3 {
    margin-left: -33.33333% !important;
  }

  .gt-md\:-mt-2\/3 {
    margin-top: -66.66667% !important;
  }

  .gt-md\:-mr-2\/3 {
    margin-right: -66.66667% !important;
  }

  .gt-md\:-mb-2\/3 {
    margin-bottom: -66.66667% !important;
  }

  .gt-md\:-ml-2\/3 {
    margin-left: -66.66667% !important;
  }

  .gt-md\:-mt-1\/4 {
    margin-top: -25% !important;
  }

  .gt-md\:-mr-1\/4 {
    margin-right: -25% !important;
  }

  .gt-md\:-mb-1\/4 {
    margin-bottom: -25% !important;
  }

  .gt-md\:-ml-1\/4 {
    margin-left: -25% !important;
  }

  .gt-md\:-mt-2\/4 {
    margin-top: -50% !important;
  }

  .gt-md\:-mr-2\/4 {
    margin-right: -50% !important;
  }

  .gt-md\:-mb-2\/4 {
    margin-bottom: -50% !important;
  }

  .gt-md\:-ml-2\/4 {
    margin-left: -50% !important;
  }

  .gt-md\:-mt-3\/4 {
    margin-top: -75% !important;
  }

  .gt-md\:-mr-3\/4 {
    margin-right: -75% !important;
  }

  .gt-md\:-mb-3\/4 {
    margin-bottom: -75% !important;
  }

  .gt-md\:-ml-3\/4 {
    margin-left: -75% !important;
  }

  .gt-md\:-mt-1\/5 {
    margin-top: -20% !important;
  }

  .gt-md\:-mr-1\/5 {
    margin-right: -20% !important;
  }

  .gt-md\:-mb-1\/5 {
    margin-bottom: -20% !important;
  }

  .gt-md\:-ml-1\/5 {
    margin-left: -20% !important;
  }

  .gt-md\:-mt-2\/5 {
    margin-top: -40% !important;
  }

  .gt-md\:-mr-2\/5 {
    margin-right: -40% !important;
  }

  .gt-md\:-mb-2\/5 {
    margin-bottom: -40% !important;
  }

  .gt-md\:-ml-2\/5 {
    margin-left: -40% !important;
  }

  .gt-md\:-mt-3\/5 {
    margin-top: -60% !important;
  }

  .gt-md\:-mr-3\/5 {
    margin-right: -60% !important;
  }

  .gt-md\:-mb-3\/5 {
    margin-bottom: -60% !important;
  }

  .gt-md\:-ml-3\/5 {
    margin-left: -60% !important;
  }

  .gt-md\:-mt-4\/5 {
    margin-top: -80% !important;
  }

  .gt-md\:-mr-4\/5 {
    margin-right: -80% !important;
  }

  .gt-md\:-mb-4\/5 {
    margin-bottom: -80% !important;
  }

  .gt-md\:-ml-4\/5 {
    margin-left: -80% !important;
  }

  .gt-md\:-mt-1\/6 {
    margin-top: -16.66667% !important;
  }

  .gt-md\:-mr-1\/6 {
    margin-right: -16.66667% !important;
  }

  .gt-md\:-mb-1\/6 {
    margin-bottom: -16.66667% !important;
  }

  .gt-md\:-ml-1\/6 {
    margin-left: -16.66667% !important;
  }

  .gt-md\:-mt-2\/6 {
    margin-top: -33.33333% !important;
  }

  .gt-md\:-mr-2\/6 {
    margin-right: -33.33333% !important;
  }

  .gt-md\:-mb-2\/6 {
    margin-bottom: -33.33333% !important;
  }

  .gt-md\:-ml-2\/6 {
    margin-left: -33.33333% !important;
  }

  .gt-md\:-mt-3\/6 {
    margin-top: -50% !important;
  }

  .gt-md\:-mr-3\/6 {
    margin-right: -50% !important;
  }

  .gt-md\:-mb-3\/6 {
    margin-bottom: -50% !important;
  }

  .gt-md\:-ml-3\/6 {
    margin-left: -50% !important;
  }

  .gt-md\:-mt-4\/6 {
    margin-top: -66.66667% !important;
  }

  .gt-md\:-mr-4\/6 {
    margin-right: -66.66667% !important;
  }

  .gt-md\:-mb-4\/6 {
    margin-bottom: -66.66667% !important;
  }

  .gt-md\:-ml-4\/6 {
    margin-left: -66.66667% !important;
  }

  .gt-md\:-mt-5\/6 {
    margin-top: -83.33333% !important;
  }

  .gt-md\:-mr-5\/6 {
    margin-right: -83.33333% !important;
  }

  .gt-md\:-mb-5\/6 {
    margin-bottom: -83.33333% !important;
  }

  .gt-md\:-ml-5\/6 {
    margin-left: -83.33333% !important;
  }

  .gt-md\:-mt-1\/12 {
    margin-top: -8.33333% !important;
  }

  .gt-md\:-mr-1\/12 {
    margin-right: -8.33333% !important;
  }

  .gt-md\:-mb-1\/12 {
    margin-bottom: -8.33333% !important;
  }

  .gt-md\:-ml-1\/12 {
    margin-left: -8.33333% !important;
  }

  .gt-md\:-mt-2\/12 {
    margin-top: -16.66667% !important;
  }

  .gt-md\:-mr-2\/12 {
    margin-right: -16.66667% !important;
  }

  .gt-md\:-mb-2\/12 {
    margin-bottom: -16.66667% !important;
  }

  .gt-md\:-ml-2\/12 {
    margin-left: -16.66667% !important;
  }

  .gt-md\:-mt-3\/12 {
    margin-top: -25% !important;
  }

  .gt-md\:-mr-3\/12 {
    margin-right: -25% !important;
  }

  .gt-md\:-mb-3\/12 {
    margin-bottom: -25% !important;
  }

  .gt-md\:-ml-3\/12 {
    margin-left: -25% !important;
  }

  .gt-md\:-mt-4\/12 {
    margin-top: -33.33333% !important;
  }

  .gt-md\:-mr-4\/12 {
    margin-right: -33.33333% !important;
  }

  .gt-md\:-mb-4\/12 {
    margin-bottom: -33.33333% !important;
  }

  .gt-md\:-ml-4\/12 {
    margin-left: -33.33333% !important;
  }

  .gt-md\:-mt-5\/12 {
    margin-top: -41.66667% !important;
  }

  .gt-md\:-mr-5\/12 {
    margin-right: -41.66667% !important;
  }

  .gt-md\:-mb-5\/12 {
    margin-bottom: -41.66667% !important;
  }

  .gt-md\:-ml-5\/12 {
    margin-left: -41.66667% !important;
  }

  .gt-md\:-mt-6\/12 {
    margin-top: -50% !important;
  }

  .gt-md\:-mr-6\/12 {
    margin-right: -50% !important;
  }

  .gt-md\:-mb-6\/12 {
    margin-bottom: -50% !important;
  }

  .gt-md\:-ml-6\/12 {
    margin-left: -50% !important;
  }

  .gt-md\:-mt-7\/12 {
    margin-top: -58.33333% !important;
  }

  .gt-md\:-mr-7\/12 {
    margin-right: -58.33333% !important;
  }

  .gt-md\:-mb-7\/12 {
    margin-bottom: -58.33333% !important;
  }

  .gt-md\:-ml-7\/12 {
    margin-left: -58.33333% !important;
  }

  .gt-md\:-mt-8\/12 {
    margin-top: -66.66667% !important;
  }

  .gt-md\:-mr-8\/12 {
    margin-right: -66.66667% !important;
  }

  .gt-md\:-mb-8\/12 {
    margin-bottom: -66.66667% !important;
  }

  .gt-md\:-ml-8\/12 {
    margin-left: -66.66667% !important;
  }

  .gt-md\:-mt-9\/12 {
    margin-top: -75% !important;
  }

  .gt-md\:-mr-9\/12 {
    margin-right: -75% !important;
  }

  .gt-md\:-mb-9\/12 {
    margin-bottom: -75% !important;
  }

  .gt-md\:-ml-9\/12 {
    margin-left: -75% !important;
  }

  .gt-md\:-mt-10\/12 {
    margin-top: -83.33333% !important;
  }

  .gt-md\:-mr-10\/12 {
    margin-right: -83.33333% !important;
  }

  .gt-md\:-mb-10\/12 {
    margin-bottom: -83.33333% !important;
  }

  .gt-md\:-ml-10\/12 {
    margin-left: -83.33333% !important;
  }

  .gt-md\:-mt-11\/12 {
    margin-top: -91.66667% !important;
  }

  .gt-md\:-mr-11\/12 {
    margin-right: -91.66667% !important;
  }

  .gt-md\:-mb-11\/12 {
    margin-bottom: -91.66667% !important;
  }

  .gt-md\:-ml-11\/12 {
    margin-left: -91.66667% !important;
  }

  .gt-md\:-mt-full {
    margin-top: -100% !important;
  }

  .gt-md\:-mr-full {
    margin-right: -100% !important;
  }

  .gt-md\:-mb-full {
    margin-bottom: -100% !important;
  }

  .gt-md\:-ml-full {
    margin-left: -100% !important;
  }

  .gt-md\:-mt-2px {
    margin-top: -2px !important;
  }

  .gt-md\:-mr-2px {
    margin-right: -2px !important;
  }

  .gt-md\:-mb-2px {
    margin-bottom: -2px !important;
  }

  .gt-md\:-ml-2px {
    margin-left: -2px !important;
  }

  .gt-md\:max-h-0 {
    max-height: 0 !important;
  }

  .gt-md\:max-h-1 {
    max-height: 0.25rem !important;
  }

  .gt-md\:max-h-2 {
    max-height: 0.5rem !important;
  }

  .gt-md\:max-h-3 {
    max-height: 0.75rem !important;
  }

  .gt-md\:max-h-4 {
    max-height: 1rem !important;
  }

  .gt-md\:max-h-5 {
    max-height: 1.25rem !important;
  }

  .gt-md\:max-h-6 {
    max-height: 1.5rem !important;
  }

  .gt-md\:max-h-7 {
    max-height: 1.75rem !important;
  }

  .gt-md\:max-h-8 {
    max-height: 2rem !important;
  }

  .gt-md\:max-h-9 {
    max-height: 2.25rem !important;
  }

  .gt-md\:max-h-10 {
    max-height: 2.5rem !important;
  }

  .gt-md\:max-h-11 {
    max-height: 2.75rem !important;
  }

  .gt-md\:max-h-12 {
    max-height: 3rem !important;
  }

  .gt-md\:max-h-13 {
    max-height: 3.25rem !important;
  }

  .gt-md\:max-h-14 {
    max-height: 3.5rem !important;
  }

  .gt-md\:max-h-15 {
    max-height: 3.75rem !important;
  }

  .gt-md\:max-h-16 {
    max-height: 4rem !important;
  }

  .gt-md\:max-h-18 {
    max-height: 4.5rem !important;
  }

  .gt-md\:max-h-20 {
    max-height: 5rem !important;
  }

  .gt-md\:max-h-22 {
    max-height: 5.5rem !important;
  }

  .gt-md\:max-h-24 {
    max-height: 6rem !important;
  }

  .gt-md\:max-h-26 {
    max-height: 6.5rem !important;
  }

  .gt-md\:max-h-28 {
    max-height: 7rem !important;
  }

  .gt-md\:max-h-30 {
    max-height: 7.5rem !important;
  }

  .gt-md\:max-h-32 {
    max-height: 8rem !important;
  }

  .gt-md\:max-h-36 {
    max-height: 9rem !important;
  }

  .gt-md\:max-h-40 {
    max-height: 10rem !important;
  }

  .gt-md\:max-h-44 {
    max-height: 11rem !important;
  }

  .gt-md\:max-h-48 {
    max-height: 12rem !important;
  }

  .gt-md\:max-h-50 {
    max-height: 12.5rem !important;
  }

  .gt-md\:max-h-52 {
    max-height: 13rem !important;
  }

  .gt-md\:max-h-56 {
    max-height: 14rem !important;
  }

  .gt-md\:max-h-60 {
    max-height: 15rem !important;
  }

  .gt-md\:max-h-64 {
    max-height: 16rem !important;
  }

  .gt-md\:max-h-72 {
    max-height: 18rem !important;
  }

  .gt-md\:max-h-80 {
    max-height: 20rem !important;
  }

  .gt-md\:max-h-90 {
    max-height: 24rem !important;
  }

  .gt-md\:max-h-96 {
    max-height: 24rem !important;
  }

  .gt-md\:max-h-100 {
    max-height: 25rem !important;
  }

  .gt-md\:max-h-120 {
    max-height: 30rem !important;
  }

  .gt-md\:max-h-128 {
    max-height: 32rem !important;
  }

  .gt-md\:max-h-140 {
    max-height: 35rem !important;
  }

  .gt-md\:max-h-160 {
    max-height: 40rem !important;
  }

  .gt-md\:max-h-180 {
    max-height: 45rem !important;
  }

  .gt-md\:max-h-192 {
    max-height: 48rem !important;
  }

  .gt-md\:max-h-200 {
    max-height: 50rem !important;
  }

  .gt-md\:max-h-240 {
    max-height: 60rem !important;
  }

  .gt-md\:max-h-256 {
    max-height: 64rem !important;
  }

  .gt-md\:max-h-280 {
    max-height: 70rem !important;
  }

  .gt-md\:max-h-320 {
    max-height: 80rem !important;
  }

  .gt-md\:max-h-360 {
    max-height: 90rem !important;
  }

  .gt-md\:max-h-400 {
    max-height: 100rem !important;
  }

  .gt-md\:max-h-480 {
    max-height: 120rem !important;
  }

  .gt-md\:max-h-screen {
    max-height: 100vh !important;
  }

  .gt-md\:max-h-px {
    max-height: 1px !important;
  }

  .gt-md\:max-h-0\.5 {
    max-height: 0.125rem !important;
  }

  .gt-md\:max-h-1\.5 {
    max-height: 0.375rem !important;
  }

  .gt-md\:max-h-2\.5 {
    max-height: 0.625rem !important;
  }

  .gt-md\:max-h-3\.5 {
    max-height: 0.875rem !important;
  }

  .gt-md\:max-h-1\/2 {
    max-height: 50% !important;
  }

  .gt-md\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }

  .gt-md\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }

  .gt-md\:max-h-1\/4 {
    max-height: 25% !important;
  }

  .gt-md\:max-h-2\/4 {
    max-height: 50% !important;
  }

  .gt-md\:max-h-3\/4 {
    max-height: 75% !important;
  }

  .gt-md\:max-h-1\/5 {
    max-height: 20% !important;
  }

  .gt-md\:max-h-2\/5 {
    max-height: 40% !important;
  }

  .gt-md\:max-h-3\/5 {
    max-height: 60% !important;
  }

  .gt-md\:max-h-4\/5 {
    max-height: 80% !important;
  }

  .gt-md\:max-h-1\/6 {
    max-height: 16.666667% !important;
  }

  .gt-md\:max-h-2\/6 {
    max-height: 33.333333% !important;
  }

  .gt-md\:max-h-3\/6 {
    max-height: 50% !important;
  }

  .gt-md\:max-h-4\/6 {
    max-height: 66.666667% !important;
  }

  .gt-md\:max-h-5\/6 {
    max-height: 83.333333% !important;
  }

  .gt-md\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }

  .gt-md\:max-h-2\/12 {
    max-height: 16.666667% !important;
  }

  .gt-md\:max-h-3\/12 {
    max-height: 25% !important;
  }

  .gt-md\:max-h-4\/12 {
    max-height: 33.333333% !important;
  }

  .gt-md\:max-h-5\/12 {
    max-height: 41.666667% !important;
  }

  .gt-md\:max-h-6\/12 {
    max-height: 50% !important;
  }

  .gt-md\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }

  .gt-md\:max-h-8\/12 {
    max-height: 66.666667% !important;
  }

  .gt-md\:max-h-9\/12 {
    max-height: 75% !important;
  }

  .gt-md\:max-h-10\/12 {
    max-height: 83.333333% !important;
  }

  .gt-md\:max-h-11\/12 {
    max-height: 91.666667% !important;
  }

  .gt-md\:max-h-full {
    max-height: 100% !important;
  }

  .gt-md\:max-h-2px {
    max-height: 2px !important;
  }

  .gt-md\:max-h-none {
    max-height: none !important;
  }

  .gt-md\:max-w-0 {
    max-width: 0 !important;
  }

  .gt-md\:max-w-1 {
    max-width: 0.25rem !important;
  }

  .gt-md\:max-w-2 {
    max-width: 0.5rem !important;
  }

  .gt-md\:max-w-3 {
    max-width: 0.75rem !important;
  }

  .gt-md\:max-w-4 {
    max-width: 1rem !important;
  }

  .gt-md\:max-w-5 {
    max-width: 1.25rem !important;
  }

  .gt-md\:max-w-6 {
    max-width: 1.5rem !important;
  }

  .gt-md\:max-w-7 {
    max-width: 1.75rem !important;
  }

  .gt-md\:max-w-8 {
    max-width: 2rem !important;
  }

  .gt-md\:max-w-9 {
    max-width: 2.25rem !important;
  }

  .gt-md\:max-w-10 {
    max-width: 2.5rem !important;
  }

  .gt-md\:max-w-11 {
    max-width: 2.75rem !important;
  }

  .gt-md\:max-w-12 {
    max-width: 3rem !important;
  }

  .gt-md\:max-w-13 {
    max-width: 3.25rem !important;
  }

  .gt-md\:max-w-14 {
    max-width: 3.5rem !important;
  }

  .gt-md\:max-w-15 {
    max-width: 3.75rem !important;
  }

  .gt-md\:max-w-16 {
    max-width: 4rem !important;
  }

  .gt-md\:max-w-18 {
    max-width: 4.5rem !important;
  }

  .gt-md\:max-w-20 {
    max-width: 5rem !important;
  }

  .gt-md\:max-w-22 {
    max-width: 5.5rem !important;
  }

  .gt-md\:max-w-24 {
    max-width: 6rem !important;
  }

  .gt-md\:max-w-26 {
    max-width: 6.5rem !important;
  }

  .gt-md\:max-w-28 {
    max-width: 7rem !important;
  }

  .gt-md\:max-w-30 {
    max-width: 7.5rem !important;
  }

  .gt-md\:max-w-32 {
    max-width: 8rem !important;
  }

  .gt-md\:max-w-36 {
    max-width: 9rem !important;
  }

  .gt-md\:max-w-40 {
    max-width: 10rem !important;
  }

  .gt-md\:max-w-44 {
    max-width: 11rem !important;
  }

  .gt-md\:max-w-48 {
    max-width: 12rem !important;
  }

  .gt-md\:max-w-50 {
    max-width: 12.5rem !important;
  }

  .gt-md\:max-w-52 {
    max-width: 13rem !important;
  }

  .gt-md\:max-w-56 {
    max-width: 14rem !important;
  }

  .gt-md\:max-w-60 {
    max-width: 15rem !important;
  }

  .gt-md\:max-w-64 {
    max-width: 16rem !important;
  }

  .gt-md\:max-w-72 {
    max-width: 18rem !important;
  }

  .gt-md\:max-w-80 {
    max-width: 20rem !important;
  }

  .gt-md\:max-w-90 {
    max-width: 24rem !important;
  }

  .gt-md\:max-w-96 {
    max-width: 24rem !important;
  }

  .gt-md\:max-w-100 {
    max-width: 25rem !important;
  }

  .gt-md\:max-w-120 {
    max-width: 30rem !important;
  }

  .gt-md\:max-w-128 {
    max-width: 32rem !important;
  }

  .gt-md\:max-w-140 {
    max-width: 35rem !important;
  }

  .gt-md\:max-w-160 {
    max-width: 40rem !important;
  }

  .gt-md\:max-w-180 {
    max-width: 45rem !important;
  }

  .gt-md\:max-w-192 {
    max-width: 48rem !important;
  }

  .gt-md\:max-w-200 {
    max-width: 50rem !important;
  }

  .gt-md\:max-w-240 {
    max-width: 60rem !important;
  }

  .gt-md\:max-w-256 {
    max-width: 64rem !important;
  }

  .gt-md\:max-w-280 {
    max-width: 70rem !important;
  }

  .gt-md\:max-w-320 {
    max-width: 80rem !important;
  }

  .gt-md\:max-w-360 {
    max-width: 90rem !important;
  }

  .gt-md\:max-w-400 {
    max-width: 100rem !important;
  }

  .gt-md\:max-w-480 {
    max-width: 120rem !important;
  }

  .gt-md\:max-w-none {
    max-width: none !important;
  }

  .gt-md\:max-w-xs {
    max-width: 20rem !important;
  }

  .gt-md\:max-w-sm {
    max-width: 24rem !important;
  }

  .gt-md\:max-w-md {
    max-width: 28rem !important;
  }

  .gt-md\:max-w-lg {
    max-width: 32rem !important;
  }

  .gt-md\:max-w-xl {
    max-width: 36rem !important;
  }

  .gt-md\:max-w-2xl {
    max-width: 42rem !important;
  }

  .gt-md\:max-w-3xl {
    max-width: 48rem !important;
  }

  .gt-md\:max-w-4xl {
    max-width: 56rem !important;
  }

  .gt-md\:max-w-5xl {
    max-width: 64rem !important;
  }

  .gt-md\:max-w-6xl {
    max-width: 72rem !important;
  }

  .gt-md\:max-w-7xl {
    max-width: 80rem !important;
  }

  .gt-md\:max-w-full {
    max-width: 100% !important;
  }

  .gt-md\:max-w-min-content {
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .gt-md\:max-w-max-content {
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .gt-md\:max-w-screen {
    max-width: 100vw !important;
  }

  .gt-md\:max-w-px {
    max-width: 1px !important;
  }

  .gt-md\:max-w-0\.5 {
    max-width: 0.125rem !important;
  }

  .gt-md\:max-w-1\.5 {
    max-width: 0.375rem !important;
  }

  .gt-md\:max-w-2\.5 {
    max-width: 0.625rem !important;
  }

  .gt-md\:max-w-3\.5 {
    max-width: 0.875rem !important;
  }

  .gt-md\:max-w-1\/2 {
    max-width: 50% !important;
  }

  .gt-md\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }

  .gt-md\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }

  .gt-md\:max-w-1\/4 {
    max-width: 25% !important;
  }

  .gt-md\:max-w-2\/4 {
    max-width: 50% !important;
  }

  .gt-md\:max-w-3\/4 {
    max-width: 75% !important;
  }

  .gt-md\:max-w-1\/5 {
    max-width: 20% !important;
  }

  .gt-md\:max-w-2\/5 {
    max-width: 40% !important;
  }

  .gt-md\:max-w-3\/5 {
    max-width: 60% !important;
  }

  .gt-md\:max-w-4\/5 {
    max-width: 80% !important;
  }

  .gt-md\:max-w-1\/6 {
    max-width: 16.666667% !important;
  }

  .gt-md\:max-w-2\/6 {
    max-width: 33.333333% !important;
  }

  .gt-md\:max-w-3\/6 {
    max-width: 50% !important;
  }

  .gt-md\:max-w-4\/6 {
    max-width: 66.666667% !important;
  }

  .gt-md\:max-w-5\/6 {
    max-width: 83.333333% !important;
  }

  .gt-md\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }

  .gt-md\:max-w-2\/12 {
    max-width: 16.666667% !important;
  }

  .gt-md\:max-w-3\/12 {
    max-width: 25% !important;
  }

  .gt-md\:max-w-4\/12 {
    max-width: 33.333333% !important;
  }

  .gt-md\:max-w-5\/12 {
    max-width: 41.666667% !important;
  }

  .gt-md\:max-w-6\/12 {
    max-width: 50% !important;
  }

  .gt-md\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }

  .gt-md\:max-w-8\/12 {
    max-width: 66.666667% !important;
  }

  .gt-md\:max-w-9\/12 {
    max-width: 75% !important;
  }

  .gt-md\:max-w-10\/12 {
    max-width: 83.333333% !important;
  }

  .gt-md\:max-w-11\/12 {
    max-width: 91.666667% !important;
  }

  .gt-md\:max-w-2px {
    max-width: 2px !important;
  }

  .gt-md\:min-h-0 {
    min-height: 0 !important;
  }

  .gt-md\:min-h-1 {
    min-height: 0.25rem !important;
  }

  .gt-md\:min-h-2 {
    min-height: 0.5rem !important;
  }

  .gt-md\:min-h-3 {
    min-height: 0.75rem !important;
  }

  .gt-md\:min-h-4 {
    min-height: 1rem !important;
  }

  .gt-md\:min-h-5 {
    min-height: 1.25rem !important;
  }

  .gt-md\:min-h-6 {
    min-height: 1.5rem !important;
  }

  .gt-md\:min-h-7 {
    min-height: 1.75rem !important;
  }

  .gt-md\:min-h-8 {
    min-height: 2rem !important;
  }

  .gt-md\:min-h-9 {
    min-height: 2.25rem !important;
  }

  .gt-md\:min-h-10 {
    min-height: 2.5rem !important;
  }

  .gt-md\:min-h-11 {
    min-height: 2.75rem !important;
  }

  .gt-md\:min-h-12 {
    min-height: 3rem !important;
  }

  .gt-md\:min-h-13 {
    min-height: 3.25rem !important;
  }

  .gt-md\:min-h-14 {
    min-height: 3.5rem !important;
  }

  .gt-md\:min-h-15 {
    min-height: 3.75rem !important;
  }

  .gt-md\:min-h-16 {
    min-height: 4rem !important;
  }

  .gt-md\:min-h-18 {
    min-height: 4.5rem !important;
  }

  .gt-md\:min-h-20 {
    min-height: 5rem !important;
  }

  .gt-md\:min-h-22 {
    min-height: 5.5rem !important;
  }

  .gt-md\:min-h-24 {
    min-height: 6rem !important;
  }

  .gt-md\:min-h-26 {
    min-height: 6.5rem !important;
  }

  .gt-md\:min-h-28 {
    min-height: 7rem !important;
  }

  .gt-md\:min-h-30 {
    min-height: 7.5rem !important;
  }

  .gt-md\:min-h-32 {
    min-height: 8rem !important;
  }

  .gt-md\:min-h-36 {
    min-height: 9rem !important;
  }

  .gt-md\:min-h-40 {
    min-height: 10rem !important;
  }

  .gt-md\:min-h-44 {
    min-height: 11rem !important;
  }

  .gt-md\:min-h-48 {
    min-height: 12rem !important;
  }

  .gt-md\:min-h-50 {
    min-height: 12.5rem !important;
  }

  .gt-md\:min-h-52 {
    min-height: 13rem !important;
  }

  .gt-md\:min-h-56 {
    min-height: 14rem !important;
  }

  .gt-md\:min-h-60 {
    min-height: 15rem !important;
  }

  .gt-md\:min-h-64 {
    min-height: 16rem !important;
  }

  .gt-md\:min-h-72 {
    min-height: 18rem !important;
  }

  .gt-md\:min-h-80 {
    min-height: 20rem !important;
  }

  .gt-md\:min-h-90 {
    min-height: 24rem !important;
  }

  .gt-md\:min-h-96 {
    min-height: 24rem !important;
  }

  .gt-md\:min-h-100 {
    min-height: 25rem !important;
  }

  .gt-md\:min-h-120 {
    min-height: 30rem !important;
  }

  .gt-md\:min-h-128 {
    min-height: 32rem !important;
  }

  .gt-md\:min-h-140 {
    min-height: 35rem !important;
  }

  .gt-md\:min-h-160 {
    min-height: 40rem !important;
  }

  .gt-md\:min-h-180 {
    min-height: 45rem !important;
  }

  .gt-md\:min-h-192 {
    min-height: 48rem !important;
  }

  .gt-md\:min-h-200 {
    min-height: 50rem !important;
  }

  .gt-md\:min-h-240 {
    min-height: 60rem !important;
  }

  .gt-md\:min-h-256 {
    min-height: 64rem !important;
  }

  .gt-md\:min-h-280 {
    min-height: 70rem !important;
  }

  .gt-md\:min-h-320 {
    min-height: 80rem !important;
  }

  .gt-md\:min-h-360 {
    min-height: 90rem !important;
  }

  .gt-md\:min-h-400 {
    min-height: 100rem !important;
  }

  .gt-md\:min-h-480 {
    min-height: 120rem !important;
  }

  .gt-md\:min-h-full {
    min-height: 100% !important;
  }

  .gt-md\:min-h-screen {
    min-height: 100vh !important;
  }

  .gt-md\:min-h-px {
    min-height: 1px !important;
  }

  .gt-md\:min-h-0\.5 {
    min-height: 0.125rem !important;
  }

  .gt-md\:min-h-1\.5 {
    min-height: 0.375rem !important;
  }

  .gt-md\:min-h-2\.5 {
    min-height: 0.625rem !important;
  }

  .gt-md\:min-h-3\.5 {
    min-height: 0.875rem !important;
  }

  .gt-md\:min-h-1\/2 {
    min-height: 50% !important;
  }

  .gt-md\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }

  .gt-md\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }

  .gt-md\:min-h-1\/4 {
    min-height: 25% !important;
  }

  .gt-md\:min-h-2\/4 {
    min-height: 50% !important;
  }

  .gt-md\:min-h-3\/4 {
    min-height: 75% !important;
  }

  .gt-md\:min-h-1\/5 {
    min-height: 20% !important;
  }

  .gt-md\:min-h-2\/5 {
    min-height: 40% !important;
  }

  .gt-md\:min-h-3\/5 {
    min-height: 60% !important;
  }

  .gt-md\:min-h-4\/5 {
    min-height: 80% !important;
  }

  .gt-md\:min-h-1\/6 {
    min-height: 16.666667% !important;
  }

  .gt-md\:min-h-2\/6 {
    min-height: 33.333333% !important;
  }

  .gt-md\:min-h-3\/6 {
    min-height: 50% !important;
  }

  .gt-md\:min-h-4\/6 {
    min-height: 66.666667% !important;
  }

  .gt-md\:min-h-5\/6 {
    min-height: 83.333333% !important;
  }

  .gt-md\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }

  .gt-md\:min-h-2\/12 {
    min-height: 16.666667% !important;
  }

  .gt-md\:min-h-3\/12 {
    min-height: 25% !important;
  }

  .gt-md\:min-h-4\/12 {
    min-height: 33.333333% !important;
  }

  .gt-md\:min-h-5\/12 {
    min-height: 41.666667% !important;
  }

  .gt-md\:min-h-6\/12 {
    min-height: 50% !important;
  }

  .gt-md\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }

  .gt-md\:min-h-8\/12 {
    min-height: 66.666667% !important;
  }

  .gt-md\:min-h-9\/12 {
    min-height: 75% !important;
  }

  .gt-md\:min-h-10\/12 {
    min-height: 83.333333% !important;
  }

  .gt-md\:min-h-11\/12 {
    min-height: 91.666667% !important;
  }

  .gt-md\:min-h-2px {
    min-height: 2px !important;
  }

  .gt-md\:min-w-0 {
    min-width: 0 !important;
  }

  .gt-md\:min-w-1 {
    min-width: 0.25rem !important;
  }

  .gt-md\:min-w-2 {
    min-width: 0.5rem !important;
  }

  .gt-md\:min-w-3 {
    min-width: 0.75rem !important;
  }

  .gt-md\:min-w-4 {
    min-width: 1rem !important;
  }

  .gt-md\:min-w-5 {
    min-width: 1.25rem !important;
  }

  .gt-md\:min-w-6 {
    min-width: 1.5rem !important;
  }

  .gt-md\:min-w-7 {
    min-width: 1.75rem !important;
  }

  .gt-md\:min-w-8 {
    min-width: 2rem !important;
  }

  .gt-md\:min-w-9 {
    min-width: 2.25rem !important;
  }

  .gt-md\:min-w-10 {
    min-width: 2.5rem !important;
  }

  .gt-md\:min-w-11 {
    min-width: 2.75rem !important;
  }

  .gt-md\:min-w-12 {
    min-width: 3rem !important;
  }

  .gt-md\:min-w-13 {
    min-width: 3.25rem !important;
  }

  .gt-md\:min-w-14 {
    min-width: 3.5rem !important;
  }

  .gt-md\:min-w-15 {
    min-width: 3.75rem !important;
  }

  .gt-md\:min-w-16 {
    min-width: 4rem !important;
  }

  .gt-md\:min-w-18 {
    min-width: 4.5rem !important;
  }

  .gt-md\:min-w-20 {
    min-width: 5rem !important;
  }

  .gt-md\:min-w-22 {
    min-width: 5.5rem !important;
  }

  .gt-md\:min-w-24 {
    min-width: 6rem !important;
  }

  .gt-md\:min-w-26 {
    min-width: 6.5rem !important;
  }

  .gt-md\:min-w-28 {
    min-width: 7rem !important;
  }

  .gt-md\:min-w-30 {
    min-width: 7.5rem !important;
  }

  .gt-md\:min-w-32 {
    min-width: 8rem !important;
  }

  .gt-md\:min-w-36 {
    min-width: 9rem !important;
  }

  .gt-md\:min-w-40 {
    min-width: 10rem !important;
  }

  .gt-md\:min-w-44 {
    min-width: 11rem !important;
  }

  .gt-md\:min-w-48 {
    min-width: 12rem !important;
  }

  .gt-md\:min-w-50 {
    min-width: 12.5rem !important;
  }

  .gt-md\:min-w-52 {
    min-width: 13rem !important;
  }

  .gt-md\:min-w-56 {
    min-width: 14rem !important;
  }

  .gt-md\:min-w-60 {
    min-width: 15rem !important;
  }

  .gt-md\:min-w-64 {
    min-width: 16rem !important;
  }

  .gt-md\:min-w-72 {
    min-width: 18rem !important;
  }

  .gt-md\:min-w-80 {
    min-width: 20rem !important;
  }

  .gt-md\:min-w-90 {
    min-width: 24rem !important;
  }

  .gt-md\:min-w-96 {
    min-width: 24rem !important;
  }

  .gt-md\:min-w-100 {
    min-width: 25rem !important;
  }

  .gt-md\:min-w-120 {
    min-width: 30rem !important;
  }

  .gt-md\:min-w-128 {
    min-width: 32rem !important;
  }

  .gt-md\:min-w-140 {
    min-width: 35rem !important;
  }

  .gt-md\:min-w-160 {
    min-width: 40rem !important;
  }

  .gt-md\:min-w-180 {
    min-width: 45rem !important;
  }

  .gt-md\:min-w-192 {
    min-width: 48rem !important;
  }

  .gt-md\:min-w-200 {
    min-width: 50rem !important;
  }

  .gt-md\:min-w-240 {
    min-width: 60rem !important;
  }

  .gt-md\:min-w-256 {
    min-width: 64rem !important;
  }

  .gt-md\:min-w-280 {
    min-width: 70rem !important;
  }

  .gt-md\:min-w-320 {
    min-width: 80rem !important;
  }

  .gt-md\:min-w-360 {
    min-width: 90rem !important;
  }

  .gt-md\:min-w-400 {
    min-width: 100rem !important;
  }

  .gt-md\:min-w-480 {
    min-width: 120rem !important;
  }

  .gt-md\:min-w-full {
    min-width: 100% !important;
  }

  .gt-md\:min-w-min-content {
    min-width: -webkit-min-content !important;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .gt-md\:min-w-max-content {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .gt-md\:min-w-screen {
    min-width: 100vw !important;
  }

  .gt-md\:min-w-px {
    min-width: 1px !important;
  }

  .gt-md\:min-w-0\.5 {
    min-width: 0.125rem !important;
  }

  .gt-md\:min-w-1\.5 {
    min-width: 0.375rem !important;
  }

  .gt-md\:min-w-2\.5 {
    min-width: 0.625rem !important;
  }

  .gt-md\:min-w-3\.5 {
    min-width: 0.875rem !important;
  }

  .gt-md\:min-w-1\/2 {
    min-width: 50% !important;
  }

  .gt-md\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }

  .gt-md\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }

  .gt-md\:min-w-1\/4 {
    min-width: 25% !important;
  }

  .gt-md\:min-w-2\/4 {
    min-width: 50% !important;
  }

  .gt-md\:min-w-3\/4 {
    min-width: 75% !important;
  }

  .gt-md\:min-w-1\/5 {
    min-width: 20% !important;
  }

  .gt-md\:min-w-2\/5 {
    min-width: 40% !important;
  }

  .gt-md\:min-w-3\/5 {
    min-width: 60% !important;
  }

  .gt-md\:min-w-4\/5 {
    min-width: 80% !important;
  }

  .gt-md\:min-w-1\/6 {
    min-width: 16.666667% !important;
  }

  .gt-md\:min-w-2\/6 {
    min-width: 33.333333% !important;
  }

  .gt-md\:min-w-3\/6 {
    min-width: 50% !important;
  }

  .gt-md\:min-w-4\/6 {
    min-width: 66.666667% !important;
  }

  .gt-md\:min-w-5\/6 {
    min-width: 83.333333% !important;
  }

  .gt-md\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }

  .gt-md\:min-w-2\/12 {
    min-width: 16.666667% !important;
  }

  .gt-md\:min-w-3\/12 {
    min-width: 25% !important;
  }

  .gt-md\:min-w-4\/12 {
    min-width: 33.333333% !important;
  }

  .gt-md\:min-w-5\/12 {
    min-width: 41.666667% !important;
  }

  .gt-md\:min-w-6\/12 {
    min-width: 50% !important;
  }

  .gt-md\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }

  .gt-md\:min-w-8\/12 {
    min-width: 66.666667% !important;
  }

  .gt-md\:min-w-9\/12 {
    min-width: 75% !important;
  }

  .gt-md\:min-w-10\/12 {
    min-width: 83.333333% !important;
  }

  .gt-md\:min-w-11\/12 {
    min-width: 91.666667% !important;
  }

  .gt-md\:min-w-2px {
    min-width: 2px !important;
  }

  .gt-md\:object-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .gt-md\:object-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .gt-md\:object-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .gt-md\:object-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .gt-md\:object-scale-down {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .gt-md\:object-bottom {
    -o-object-position: bottom !important;
    object-position: bottom !important;
  }

  .gt-md\:object-center {
    -o-object-position: center !important;
    object-position: center !important;
  }

  .gt-md\:object-left {
    -o-object-position: left !important;
    object-position: left !important;
  }

  .gt-md\:object-left-bottom {
    -o-object-position: left bottom !important;
    object-position: left bottom !important;
  }

  .gt-md\:object-left-top {
    -o-object-position: left top !important;
    object-position: left top !important;
  }

  .gt-md\:object-right {
    -o-object-position: right !important;
    object-position: right !important;
  }

  .gt-md\:object-right-bottom {
    -o-object-position: right bottom !important;
    object-position: right bottom !important;
  }

  .gt-md\:object-right-top {
    -o-object-position: right top !important;
    object-position: right top !important;
  }

  .gt-md\:object-top {
    -o-object-position: top !important;
    object-position: top !important;
  }

  .gt-md\:opacity-0 {
    opacity: 0 !important;
  }

  .gt-md\:opacity-12 {
    opacity: 0.12 !important;
  }

  .gt-md\:opacity-25 {
    opacity: 0.25 !important;
  }

  .gt-md\:opacity-38 {
    opacity: 0.38 !important;
  }

  .gt-md\:opacity-50 {
    opacity: 0.5 !important;
  }

  .gt-md\:opacity-54 {
    opacity: 0.54 !important;
  }

  .gt-md\:opacity-70 {
    opacity: 0.7 !important;
  }

  .gt-md\:opacity-75 {
    opacity: 0.75 !important;
  }

  .gt-md\:opacity-84 {
    opacity: 0.84 !important;
  }

  .gt-md\:opacity-100 {
    opacity: 1 !important;
  }

  .gt-md\:hover\:opacity-0:hover {
    opacity: 0 !important;
  }

  .gt-md\:hover\:opacity-12:hover {
    opacity: 0.12 !important;
  }

  .gt-md\:hover\:opacity-25:hover {
    opacity: 0.25 !important;
  }

  .gt-md\:hover\:opacity-38:hover {
    opacity: 0.38 !important;
  }

  .gt-md\:hover\:opacity-50:hover {
    opacity: 0.5 !important;
  }

  .gt-md\:hover\:opacity-54:hover {
    opacity: 0.54 !important;
  }

  .gt-md\:hover\:opacity-70:hover {
    opacity: 0.7 !important;
  }

  .gt-md\:hover\:opacity-75:hover {
    opacity: 0.75 !important;
  }

  .gt-md\:hover\:opacity-84:hover {
    opacity: 0.84 !important;
  }

  .gt-md\:hover\:opacity-100:hover {
    opacity: 1 !important;
  }

  .gt-md\:focus\:opacity-0:focus {
    opacity: 0 !important;
  }

  .gt-md\:focus\:opacity-12:focus {
    opacity: 0.12 !important;
  }

  .gt-md\:focus\:opacity-25:focus {
    opacity: 0.25 !important;
  }

  .gt-md\:focus\:opacity-38:focus {
    opacity: 0.38 !important;
  }

  .gt-md\:focus\:opacity-50:focus {
    opacity: 0.5 !important;
  }

  .gt-md\:focus\:opacity-54:focus {
    opacity: 0.54 !important;
  }

  .gt-md\:focus\:opacity-70:focus {
    opacity: 0.7 !important;
  }

  .gt-md\:focus\:opacity-75:focus {
    opacity: 0.75 !important;
  }

  .gt-md\:focus\:opacity-84:focus {
    opacity: 0.84 !important;
  }

  .gt-md\:focus\:opacity-100:focus {
    opacity: 1 !important;
  }

  .gt-md\:overflow-auto {
    overflow: auto !important;
  }

  .gt-md\:overflow-hidden {
    overflow: hidden !important;
  }

  .gt-md\:overflow-visible {
    overflow: visible !important;
  }

  .gt-md\:overflow-scroll {
    overflow: scroll !important;
  }

  .gt-md\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .gt-md\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .gt-md\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .gt-md\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .gt-md\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .gt-md\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .gt-md\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .gt-md\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .gt-md\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .gt-md\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .gt-md\:overscroll-auto {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .gt-md\:overscroll-contain {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .gt-md\:overscroll-none {
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .gt-md\:overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .gt-md\:overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .gt-md\:overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .gt-md\:overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .gt-md\:overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .gt-md\:overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .gt-md\:p-0 {
    padding: 0 !important;
  }

  .gt-md\:p-1 {
    padding: 0.25rem !important;
  }

  .gt-md\:p-2 {
    padding: 0.5rem !important;
  }

  .gt-md\:p-3 {
    padding: 0.75rem !important;
  }

  .gt-md\:p-4 {
    padding: 1rem !important;
  }

  .gt-md\:p-5 {
    padding: 1.25rem !important;
  }

  .gt-md\:p-6 {
    padding: 1.5rem !important;
  }

  .gt-md\:p-7 {
    padding: 1.75rem !important;
  }

  .gt-md\:p-8 {
    padding: 2rem !important;
  }

  .gt-md\:p-9 {
    padding: 2.25rem !important;
  }

  .gt-md\:p-10 {
    padding: 2.5rem !important;
  }

  .gt-md\:p-11 {
    padding: 2.75rem !important;
  }

  .gt-md\:p-12 {
    padding: 3rem !important;
  }

  .gt-md\:p-13 {
    padding: 3.25rem !important;
  }

  .gt-md\:p-14 {
    padding: 3.5rem !important;
  }

  .gt-md\:p-15 {
    padding: 3.75rem !important;
  }

  .gt-md\:p-16 {
    padding: 4rem !important;
  }

  .gt-md\:p-18 {
    padding: 4.5rem !important;
  }

  .gt-md\:p-20 {
    padding: 5rem !important;
  }

  .gt-md\:p-22 {
    padding: 5.5rem !important;
  }

  .gt-md\:p-24 {
    padding: 6rem !important;
  }

  .gt-md\:p-26 {
    padding: 6.5rem !important;
  }

  .gt-md\:p-28 {
    padding: 7rem !important;
  }

  .gt-md\:p-30 {
    padding: 7.5rem !important;
  }

  .gt-md\:p-32 {
    padding: 8rem !important;
  }

  .gt-md\:p-36 {
    padding: 9rem !important;
  }

  .gt-md\:p-40 {
    padding: 10rem !important;
  }

  .gt-md\:p-44 {
    padding: 11rem !important;
  }

  .gt-md\:p-48 {
    padding: 12rem !important;
  }

  .gt-md\:p-50 {
    padding: 12.5rem !important;
  }

  .gt-md\:p-52 {
    padding: 13rem !important;
  }

  .gt-md\:p-56 {
    padding: 14rem !important;
  }

  .gt-md\:p-60 {
    padding: 15rem !important;
  }

  .gt-md\:p-64 {
    padding: 16rem !important;
  }

  .gt-md\:p-72 {
    padding: 18rem !important;
  }

  .gt-md\:p-80 {
    padding: 20rem !important;
  }

  .gt-md\:p-90 {
    padding: 24rem !important;
  }

  .gt-md\:p-96 {
    padding: 24rem !important;
  }

  .gt-md\:p-100 {
    padding: 25rem !important;
  }

  .gt-md\:p-120 {
    padding: 30rem !important;
  }

  .gt-md\:p-128 {
    padding: 32rem !important;
  }

  .gt-md\:p-140 {
    padding: 35rem !important;
  }

  .gt-md\:p-160 {
    padding: 40rem !important;
  }

  .gt-md\:p-180 {
    padding: 45rem !important;
  }

  .gt-md\:p-192 {
    padding: 48rem !important;
  }

  .gt-md\:p-200 {
    padding: 50rem !important;
  }

  .gt-md\:p-240 {
    padding: 60rem !important;
  }

  .gt-md\:p-256 {
    padding: 64rem !important;
  }

  .gt-md\:p-280 {
    padding: 70rem !important;
  }

  .gt-md\:p-320 {
    padding: 80rem !important;
  }

  .gt-md\:p-360 {
    padding: 90rem !important;
  }

  .gt-md\:p-400 {
    padding: 100rem !important;
  }

  .gt-md\:p-480 {
    padding: 120rem !important;
  }

  .gt-md\:p-px {
    padding: 1px !important;
  }

  .gt-md\:p-0\.5 {
    padding: 0.125rem !important;
  }

  .gt-md\:p-1\.5 {
    padding: 0.375rem !important;
  }

  .gt-md\:p-2\.5 {
    padding: 0.625rem !important;
  }

  .gt-md\:p-3\.5 {
    padding: 0.875rem !important;
  }

  .gt-md\:p-1\/2 {
    padding: 50% !important;
  }

  .gt-md\:p-1\/3 {
    padding: 33.333333% !important;
  }

  .gt-md\:p-2\/3 {
    padding: 66.666667% !important;
  }

  .gt-md\:p-1\/4 {
    padding: 25% !important;
  }

  .gt-md\:p-2\/4 {
    padding: 50% !important;
  }

  .gt-md\:p-3\/4 {
    padding: 75% !important;
  }

  .gt-md\:p-1\/5 {
    padding: 20% !important;
  }

  .gt-md\:p-2\/5 {
    padding: 40% !important;
  }

  .gt-md\:p-3\/5 {
    padding: 60% !important;
  }

  .gt-md\:p-4\/5 {
    padding: 80% !important;
  }

  .gt-md\:p-1\/6 {
    padding: 16.666667% !important;
  }

  .gt-md\:p-2\/6 {
    padding: 33.333333% !important;
  }

  .gt-md\:p-3\/6 {
    padding: 50% !important;
  }

  .gt-md\:p-4\/6 {
    padding: 66.666667% !important;
  }

  .gt-md\:p-5\/6 {
    padding: 83.333333% !important;
  }

  .gt-md\:p-1\/12 {
    padding: 8.333333% !important;
  }

  .gt-md\:p-2\/12 {
    padding: 16.666667% !important;
  }

  .gt-md\:p-3\/12 {
    padding: 25% !important;
  }

  .gt-md\:p-4\/12 {
    padding: 33.333333% !important;
  }

  .gt-md\:p-5\/12 {
    padding: 41.666667% !important;
  }

  .gt-md\:p-6\/12 {
    padding: 50% !important;
  }

  .gt-md\:p-7\/12 {
    padding: 58.333333% !important;
  }

  .gt-md\:p-8\/12 {
    padding: 66.666667% !important;
  }

  .gt-md\:p-9\/12 {
    padding: 75% !important;
  }

  .gt-md\:p-10\/12 {
    padding: 83.333333% !important;
  }

  .gt-md\:p-11\/12 {
    padding: 91.666667% !important;
  }

  .gt-md\:p-full {
    padding: 100% !important;
  }

  .gt-md\:p-2px {
    padding: 2px !important;
  }

  .gt-md\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .gt-md\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .gt-md\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .gt-md\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .gt-md\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .gt-md\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .gt-md\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .gt-md\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .gt-md\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .gt-md\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .gt-md\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .gt-md\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .gt-md\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .gt-md\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .gt-md\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .gt-md\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .gt-md\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .gt-md\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .gt-md\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .gt-md\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .gt-md\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .gt-md\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .gt-md\:py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .gt-md\:px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .gt-md\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .gt-md\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .gt-md\:py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .gt-md\:px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
  }

  .gt-md\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .gt-md\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .gt-md\:py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .gt-md\:px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .gt-md\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .gt-md\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .gt-md\:py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .gt-md\:px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .gt-md\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .gt-md\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .gt-md\:py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .gt-md\:px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }

  .gt-md\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .gt-md\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .gt-md\:py-26 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .gt-md\:px-26 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .gt-md\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .gt-md\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .gt-md\:py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .gt-md\:px-30 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .gt-md\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .gt-md\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .gt-md\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .gt-md\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .gt-md\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .gt-md\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .gt-md\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .gt-md\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .gt-md\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .gt-md\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .gt-md\:py-50 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .gt-md\:px-50 {
    padding-left: 12.5rem !important;
    padding-right: 12.5rem !important;
  }

  .gt-md\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .gt-md\:px-52 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .gt-md\:py-56 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .gt-md\:px-56 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .gt-md\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .gt-md\:px-60 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .gt-md\:py-64 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .gt-md\:px-64 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .gt-md\:py-72 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .gt-md\:px-72 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .gt-md\:py-80 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .gt-md\:px-80 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .gt-md\:py-90 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .gt-md\:px-90 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .gt-md\:py-96 {
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .gt-md\:px-96 {
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .gt-md\:py-100 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }

  .gt-md\:px-100 {
    padding-left: 25rem !important;
    padding-right: 25rem !important;
  }

  .gt-md\:py-120 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }

  .gt-md\:px-120 {
    padding-left: 30rem !important;
    padding-right: 30rem !important;
  }

  .gt-md\:py-128 {
    padding-top: 32rem !important;
    padding-bottom: 32rem !important;
  }

  .gt-md\:px-128 {
    padding-left: 32rem !important;
    padding-right: 32rem !important;
  }

  .gt-md\:py-140 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }

  .gt-md\:px-140 {
    padding-left: 35rem !important;
    padding-right: 35rem !important;
  }

  .gt-md\:py-160 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }

  .gt-md\:px-160 {
    padding-left: 40rem !important;
    padding-right: 40rem !important;
  }

  .gt-md\:py-180 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }

  .gt-md\:px-180 {
    padding-left: 45rem !important;
    padding-right: 45rem !important;
  }

  .gt-md\:py-192 {
    padding-top: 48rem !important;
    padding-bottom: 48rem !important;
  }

  .gt-md\:px-192 {
    padding-left: 48rem !important;
    padding-right: 48rem !important;
  }

  .gt-md\:py-200 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }

  .gt-md\:px-200 {
    padding-left: 50rem !important;
    padding-right: 50rem !important;
  }

  .gt-md\:py-240 {
    padding-top: 60rem !important;
    padding-bottom: 60rem !important;
  }

  .gt-md\:px-240 {
    padding-left: 60rem !important;
    padding-right: 60rem !important;
  }

  .gt-md\:py-256 {
    padding-top: 64rem !important;
    padding-bottom: 64rem !important;
  }

  .gt-md\:px-256 {
    padding-left: 64rem !important;
    padding-right: 64rem !important;
  }

  .gt-md\:py-280 {
    padding-top: 70rem !important;
    padding-bottom: 70rem !important;
  }

  .gt-md\:px-280 {
    padding-left: 70rem !important;
    padding-right: 70rem !important;
  }

  .gt-md\:py-320 {
    padding-top: 80rem !important;
    padding-bottom: 80rem !important;
  }

  .gt-md\:px-320 {
    padding-left: 80rem !important;
    padding-right: 80rem !important;
  }

  .gt-md\:py-360 {
    padding-top: 90rem !important;
    padding-bottom: 90rem !important;
  }

  .gt-md\:px-360 {
    padding-left: 90rem !important;
    padding-right: 90rem !important;
  }

  .gt-md\:py-400 {
    padding-top: 100rem !important;
    padding-bottom: 100rem !important;
  }

  .gt-md\:px-400 {
    padding-left: 100rem !important;
    padding-right: 100rem !important;
  }

  .gt-md\:py-480 {
    padding-top: 120rem !important;
    padding-bottom: 120rem !important;
  }

  .gt-md\:px-480 {
    padding-left: 120rem !important;
    padding-right: 120rem !important;
  }

  .gt-md\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .gt-md\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .gt-md\:py-0\.5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .gt-md\:px-0\.5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .gt-md\:py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .gt-md\:px-1\.5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .gt-md\:py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .gt-md\:px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .gt-md\:py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .gt-md\:px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .gt-md\:py-1\/2 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-md\:px-1\/2 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-md\:py-1\/3 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .gt-md\:px-1\/3 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .gt-md\:py-2\/3 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .gt-md\:px-2\/3 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .gt-md\:py-1\/4 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .gt-md\:px-1\/4 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .gt-md\:py-2\/4 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-md\:px-2\/4 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-md\:py-3\/4 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .gt-md\:px-3\/4 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .gt-md\:py-1\/5 {
    padding-top: 20% !important;
    padding-bottom: 20% !important;
  }

  .gt-md\:px-1\/5 {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .gt-md\:py-2\/5 {
    padding-top: 40% !important;
    padding-bottom: 40% !important;
  }

  .gt-md\:px-2\/5 {
    padding-left: 40% !important;
    padding-right: 40% !important;
  }

  .gt-md\:py-3\/5 {
    padding-top: 60% !important;
    padding-bottom: 60% !important;
  }

  .gt-md\:px-3\/5 {
    padding-left: 60% !important;
    padding-right: 60% !important;
  }

  .gt-md\:py-4\/5 {
    padding-top: 80% !important;
    padding-bottom: 80% !important;
  }

  .gt-md\:px-4\/5 {
    padding-left: 80% !important;
    padding-right: 80% !important;
  }

  .gt-md\:py-1\/6 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .gt-md\:px-1\/6 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .gt-md\:py-2\/6 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .gt-md\:px-2\/6 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .gt-md\:py-3\/6 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-md\:px-3\/6 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-md\:py-4\/6 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .gt-md\:px-4\/6 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .gt-md\:py-5\/6 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .gt-md\:px-5\/6 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .gt-md\:py-1\/12 {
    padding-top: 8.333333% !important;
    padding-bottom: 8.333333% !important;
  }

  .gt-md\:px-1\/12 {
    padding-left: 8.333333% !important;
    padding-right: 8.333333% !important;
  }

  .gt-md\:py-2\/12 {
    padding-top: 16.666667% !important;
    padding-bottom: 16.666667% !important;
  }

  .gt-md\:px-2\/12 {
    padding-left: 16.666667% !important;
    padding-right: 16.666667% !important;
  }

  .gt-md\:py-3\/12 {
    padding-top: 25% !important;
    padding-bottom: 25% !important;
  }

  .gt-md\:px-3\/12 {
    padding-left: 25% !important;
    padding-right: 25% !important;
  }

  .gt-md\:py-4\/12 {
    padding-top: 33.333333% !important;
    padding-bottom: 33.333333% !important;
  }

  .gt-md\:px-4\/12 {
    padding-left: 33.333333% !important;
    padding-right: 33.333333% !important;
  }

  .gt-md\:py-5\/12 {
    padding-top: 41.666667% !important;
    padding-bottom: 41.666667% !important;
  }

  .gt-md\:px-5\/12 {
    padding-left: 41.666667% !important;
    padding-right: 41.666667% !important;
  }

  .gt-md\:py-6\/12 {
    padding-top: 50% !important;
    padding-bottom: 50% !important;
  }

  .gt-md\:px-6\/12 {
    padding-left: 50% !important;
    padding-right: 50% !important;
  }

  .gt-md\:py-7\/12 {
    padding-top: 58.333333% !important;
    padding-bottom: 58.333333% !important;
  }

  .gt-md\:px-7\/12 {
    padding-left: 58.333333% !important;
    padding-right: 58.333333% !important;
  }

  .gt-md\:py-8\/12 {
    padding-top: 66.666667% !important;
    padding-bottom: 66.666667% !important;
  }

  .gt-md\:px-8\/12 {
    padding-left: 66.666667% !important;
    padding-right: 66.666667% !important;
  }

  .gt-md\:py-9\/12 {
    padding-top: 75% !important;
    padding-bottom: 75% !important;
  }

  .gt-md\:px-9\/12 {
    padding-left: 75% !important;
    padding-right: 75% !important;
  }

  .gt-md\:py-10\/12 {
    padding-top: 83.333333% !important;
    padding-bottom: 83.333333% !important;
  }

  .gt-md\:px-10\/12 {
    padding-left: 83.333333% !important;
    padding-right: 83.333333% !important;
  }

  .gt-md\:py-11\/12 {
    padding-top: 91.666667% !important;
    padding-bottom: 91.666667% !important;
  }

  .gt-md\:px-11\/12 {
    padding-left: 91.666667% !important;
    padding-right: 91.666667% !important;
  }

  .gt-md\:py-full {
    padding-top: 100% !important;
    padding-bottom: 100% !important;
  }

  .gt-md\:px-full {
    padding-left: 100% !important;
    padding-right: 100% !important;
  }

  .gt-md\:py-2px {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .gt-md\:px-2px {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .gt-md\:pt-0 {
    padding-top: 0 !important;
  }

  .gt-md\:pr-0 {
    padding-right: 0 !important;
  }

  .gt-md\:pb-0 {
    padding-bottom: 0 !important;
  }

  .gt-md\:pl-0 {
    padding-left: 0 !important;
  }

  .gt-md\:pt-1 {
    padding-top: 0.25rem !important;
  }

  .gt-md\:pr-1 {
    padding-right: 0.25rem !important;
  }

  .gt-md\:pb-1 {
    padding-bottom: 0.25rem !important;
  }

  .gt-md\:pl-1 {
    padding-left: 0.25rem !important;
  }

  .gt-md\:pt-2 {
    padding-top: 0.5rem !important;
  }

  .gt-md\:pr-2 {
    padding-right: 0.5rem !important;
  }

  .gt-md\:pb-2 {
    padding-bottom: 0.5rem !important;
  }

  .gt-md\:pl-2 {
    padding-left: 0.5rem !important;
  }

  .gt-md\:pt-3 {
    padding-top: 0.75rem !important;
  }

  .gt-md\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .gt-md\:pb-3 {
    padding-bottom: 0.75rem !important;
  }

  .gt-md\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .gt-md\:pt-4 {
    padding-top: 1rem !important;
  }

  .gt-md\:pr-4 {
    padding-right: 1rem !important;
  }

  .gt-md\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .gt-md\:pl-4 {
    padding-left: 1rem !important;
  }

  .gt-md\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .gt-md\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .gt-md\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .gt-md\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .gt-md\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .gt-md\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .gt-md\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .gt-md\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .gt-md\:pt-7 {
    padding-top: 1.75rem !important;
  }

  .gt-md\:pr-7 {
    padding-right: 1.75rem !important;
  }

  .gt-md\:pb-7 {
    padding-bottom: 1.75rem !important;
  }

  .gt-md\:pl-7 {
    padding-left: 1.75rem !important;
  }

  .gt-md\:pt-8 {
    padding-top: 2rem !important;
  }

  .gt-md\:pr-8 {
    padding-right: 2rem !important;
  }

  .gt-md\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .gt-md\:pl-8 {
    padding-left: 2rem !important;
  }

  .gt-md\:pt-9 {
    padding-top: 2.25rem !important;
  }

  .gt-md\:pr-9 {
    padding-right: 2.25rem !important;
  }

  .gt-md\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .gt-md\:pl-9 {
    padding-left: 2.25rem !important;
  }

  .gt-md\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .gt-md\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .gt-md\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .gt-md\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .gt-md\:pt-11 {
    padding-top: 2.75rem !important;
  }

  .gt-md\:pr-11 {
    padding-right: 2.75rem !important;
  }

  .gt-md\:pb-11 {
    padding-bottom: 2.75rem !important;
  }

  .gt-md\:pl-11 {
    padding-left: 2.75rem !important;
  }

  .gt-md\:pt-12 {
    padding-top: 3rem !important;
  }

  .gt-md\:pr-12 {
    padding-right: 3rem !important;
  }

  .gt-md\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .gt-md\:pl-12 {
    padding-left: 3rem !important;
  }

  .gt-md\:pt-13 {
    padding-top: 3.25rem !important;
  }

  .gt-md\:pr-13 {
    padding-right: 3.25rem !important;
  }

  .gt-md\:pb-13 {
    padding-bottom: 3.25rem !important;
  }

  .gt-md\:pl-13 {
    padding-left: 3.25rem !important;
  }

  .gt-md\:pt-14 {
    padding-top: 3.5rem !important;
  }

  .gt-md\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .gt-md\:pb-14 {
    padding-bottom: 3.5rem !important;
  }

  .gt-md\:pl-14 {
    padding-left: 3.5rem !important;
  }

  .gt-md\:pt-15 {
    padding-top: 3.75rem !important;
  }

  .gt-md\:pr-15 {
    padding-right: 3.75rem !important;
  }

  .gt-md\:pb-15 {
    padding-bottom: 3.75rem !important;
  }

  .gt-md\:pl-15 {
    padding-left: 3.75rem !important;
  }

  .gt-md\:pt-16 {
    padding-top: 4rem !important;
  }

  .gt-md\:pr-16 {
    padding-right: 4rem !important;
  }

  .gt-md\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .gt-md\:pl-16 {
    padding-left: 4rem !important;
  }

  .gt-md\:pt-18 {
    padding-top: 4.5rem !important;
  }

  .gt-md\:pr-18 {
    padding-right: 4.5rem !important;
  }

  .gt-md\:pb-18 {
    padding-bottom: 4.5rem !important;
  }

  .gt-md\:pl-18 {
    padding-left: 4.5rem !important;
  }

  .gt-md\:pt-20 {
    padding-top: 5rem !important;
  }

  .gt-md\:pr-20 {
    padding-right: 5rem !important;
  }

  .gt-md\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .gt-md\:pl-20 {
    padding-left: 5rem !important;
  }

  .gt-md\:pt-22 {
    padding-top: 5.5rem !important;
  }

  .gt-md\:pr-22 {
    padding-right: 5.5rem !important;
  }

  .gt-md\:pb-22 {
    padding-bottom: 5.5rem !important;
  }

  .gt-md\:pl-22 {
    padding-left: 5.5rem !important;
  }

  .gt-md\:pt-24 {
    padding-top: 6rem !important;
  }

  .gt-md\:pr-24 {
    padding-right: 6rem !important;
  }

  .gt-md\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .gt-md\:pl-24 {
    padding-left: 6rem !important;
  }

  .gt-md\:pt-26 {
    padding-top: 6.5rem !important;
  }

  .gt-md\:pr-26 {
    padding-right: 6.5rem !important;
  }

  .gt-md\:pb-26 {
    padding-bottom: 6.5rem !important;
  }

  .gt-md\:pl-26 {
    padding-left: 6.5rem !important;
  }

  .gt-md\:pt-28 {
    padding-top: 7rem !important;
  }

  .gt-md\:pr-28 {
    padding-right: 7rem !important;
  }

  .gt-md\:pb-28 {
    padding-bottom: 7rem !important;
  }

  .gt-md\:pl-28 {
    padding-left: 7rem !important;
  }

  .gt-md\:pt-30 {
    padding-top: 7.5rem !important;
  }

  .gt-md\:pr-30 {
    padding-right: 7.5rem !important;
  }

  .gt-md\:pb-30 {
    padding-bottom: 7.5rem !important;
  }

  .gt-md\:pl-30 {
    padding-left: 7.5rem !important;
  }

  .gt-md\:pt-32 {
    padding-top: 8rem !important;
  }

  .gt-md\:pr-32 {
    padding-right: 8rem !important;
  }

  .gt-md\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .gt-md\:pl-32 {
    padding-left: 8rem !important;
  }

  .gt-md\:pt-36 {
    padding-top: 9rem !important;
  }

  .gt-md\:pr-36 {
    padding-right: 9rem !important;
  }

  .gt-md\:pb-36 {
    padding-bottom: 9rem !important;
  }

  .gt-md\:pl-36 {
    padding-left: 9rem !important;
  }

  .gt-md\:pt-40 {
    padding-top: 10rem !important;
  }

  .gt-md\:pr-40 {
    padding-right: 10rem !important;
  }

  .gt-md\:pb-40 {
    padding-bottom: 10rem !important;
  }

  .gt-md\:pl-40 {
    padding-left: 10rem !important;
  }

  .gt-md\:pt-44 {
    padding-top: 11rem !important;
  }

  .gt-md\:pr-44 {
    padding-right: 11rem !important;
  }

  .gt-md\:pb-44 {
    padding-bottom: 11rem !important;
  }

  .gt-md\:pl-44 {
    padding-left: 11rem !important;
  }

  .gt-md\:pt-48 {
    padding-top: 12rem !important;
  }

  .gt-md\:pr-48 {
    padding-right: 12rem !important;
  }

  .gt-md\:pb-48 {
    padding-bottom: 12rem !important;
  }

  .gt-md\:pl-48 {
    padding-left: 12rem !important;
  }

  .gt-md\:pt-50 {
    padding-top: 12.5rem !important;
  }

  .gt-md\:pr-50 {
    padding-right: 12.5rem !important;
  }

  .gt-md\:pb-50 {
    padding-bottom: 12.5rem !important;
  }

  .gt-md\:pl-50 {
    padding-left: 12.5rem !important;
  }

  .gt-md\:pt-52 {
    padding-top: 13rem !important;
  }

  .gt-md\:pr-52 {
    padding-right: 13rem !important;
  }

  .gt-md\:pb-52 {
    padding-bottom: 13rem !important;
  }

  .gt-md\:pl-52 {
    padding-left: 13rem !important;
  }

  .gt-md\:pt-56 {
    padding-top: 14rem !important;
  }

  .gt-md\:pr-56 {
    padding-right: 14rem !important;
  }

  .gt-md\:pb-56 {
    padding-bottom: 14rem !important;
  }

  .gt-md\:pl-56 {
    padding-left: 14rem !important;
  }

  .gt-md\:pt-60 {
    padding-top: 15rem !important;
  }

  .gt-md\:pr-60 {
    padding-right: 15rem !important;
  }

  .gt-md\:pb-60 {
    padding-bottom: 15rem !important;
  }

  .gt-md\:pl-60 {
    padding-left: 15rem !important;
  }

  .gt-md\:pt-64 {
    padding-top: 16rem !important;
  }

  .gt-md\:pr-64 {
    padding-right: 16rem !important;
  }

  .gt-md\:pb-64 {
    padding-bottom: 16rem !important;
  }

  .gt-md\:pl-64 {
    padding-left: 16rem !important;
  }

  .gt-md\:pt-72 {
    padding-top: 18rem !important;
  }

  .gt-md\:pr-72 {
    padding-right: 18rem !important;
  }

  .gt-md\:pb-72 {
    padding-bottom: 18rem !important;
  }

  .gt-md\:pl-72 {
    padding-left: 18rem !important;
  }

  .gt-md\:pt-80 {
    padding-top: 20rem !important;
  }

  .gt-md\:pr-80 {
    padding-right: 20rem !important;
  }

  .gt-md\:pb-80 {
    padding-bottom: 20rem !important;
  }

  .gt-md\:pl-80 {
    padding-left: 20rem !important;
  }

  .gt-md\:pt-90 {
    padding-top: 24rem !important;
  }

  .gt-md\:pr-90 {
    padding-right: 24rem !important;
  }

  .gt-md\:pb-90 {
    padding-bottom: 24rem !important;
  }

  .gt-md\:pl-90 {
    padding-left: 24rem !important;
  }

  .gt-md\:pt-96 {
    padding-top: 24rem !important;
  }

  .gt-md\:pr-96 {
    padding-right: 24rem !important;
  }

  .gt-md\:pb-96 {
    padding-bottom: 24rem !important;
  }

  .gt-md\:pl-96 {
    padding-left: 24rem !important;
  }

  .gt-md\:pt-100 {
    padding-top: 25rem !important;
  }

  .gt-md\:pr-100 {
    padding-right: 25rem !important;
  }

  .gt-md\:pb-100 {
    padding-bottom: 25rem !important;
  }

  .gt-md\:pl-100 {
    padding-left: 25rem !important;
  }

  .gt-md\:pt-120 {
    padding-top: 30rem !important;
  }

  .gt-md\:pr-120 {
    padding-right: 30rem !important;
  }

  .gt-md\:pb-120 {
    padding-bottom: 30rem !important;
  }

  .gt-md\:pl-120 {
    padding-left: 30rem !important;
  }

  .gt-md\:pt-128 {
    padding-top: 32rem !important;
  }

  .gt-md\:pr-128 {
    padding-right: 32rem !important;
  }

  .gt-md\:pb-128 {
    padding-bottom: 32rem !important;
  }

  .gt-md\:pl-128 {
    padding-left: 32rem !important;
  }

  .gt-md\:pt-140 {
    padding-top: 35rem !important;
  }

  .gt-md\:pr-140 {
    padding-right: 35rem !important;
  }

  .gt-md\:pb-140 {
    padding-bottom: 35rem !important;
  }

  .gt-md\:pl-140 {
    padding-left: 35rem !important;
  }

  .gt-md\:pt-160 {
    padding-top: 40rem !important;
  }

  .gt-md\:pr-160 {
    padding-right: 40rem !important;
  }

  .gt-md\:pb-160 {
    padding-bottom: 40rem !important;
  }

  .gt-md\:pl-160 {
    padding-left: 40rem !important;
  }

  .gt-md\:pt-180 {
    padding-top: 45rem !important;
  }

  .gt-md\:pr-180 {
    padding-right: 45rem !important;
  }

  .gt-md\:pb-180 {
    padding-bottom: 45rem !important;
  }

  .gt-md\:pl-180 {
    padding-left: 45rem !important;
  }

  .gt-md\:pt-192 {
    padding-top: 48rem !important;
  }

  .gt-md\:pr-192 {
    padding-right: 48rem !important;
  }

  .gt-md\:pb-192 {
    padding-bottom: 48rem !important;
  }

  .gt-md\:pl-192 {
    padding-left: 48rem !important;
  }

  .gt-md\:pt-200 {
    padding-top: 50rem !important;
  }

  .gt-md\:pr-200 {
    padding-right: 50rem !important;
  }

  .gt-md\:pb-200 {
    padding-bottom: 50rem !important;
  }

  .gt-md\:pl-200 {
    padding-left: 50rem !important;
  }

  .gt-md\:pt-240 {
    padding-top: 60rem !important;
  }

  .gt-md\:pr-240 {
    padding-right: 60rem !important;
  }

  .gt-md\:pb-240 {
    padding-bottom: 60rem !important;
  }

  .gt-md\:pl-240 {
    padding-left: 60rem !important;
  }

  .gt-md\:pt-256 {
    padding-top: 64rem !important;
  }

  .gt-md\:pr-256 {
    padding-right: 64rem !important;
  }

  .gt-md\:pb-256 {
    padding-bottom: 64rem !important;
  }

  .gt-md\:pl-256 {
    padding-left: 64rem !important;
  }

  .gt-md\:pt-280 {
    padding-top: 70rem !important;
  }

  .gt-md\:pr-280 {
    padding-right: 70rem !important;
  }

  .gt-md\:pb-280 {
    padding-bottom: 70rem !important;
  }

  .gt-md\:pl-280 {
    padding-left: 70rem !important;
  }

  .gt-md\:pt-320 {
    padding-top: 80rem !important;
  }

  .gt-md\:pr-320 {
    padding-right: 80rem !important;
  }

  .gt-md\:pb-320 {
    padding-bottom: 80rem !important;
  }

  .gt-md\:pl-320 {
    padding-left: 80rem !important;
  }

  .gt-md\:pt-360 {
    padding-top: 90rem !important;
  }

  .gt-md\:pr-360 {
    padding-right: 90rem !important;
  }

  .gt-md\:pb-360 {
    padding-bottom: 90rem !important;
  }

  .gt-md\:pl-360 {
    padding-left: 90rem !important;
  }

  .gt-md\:pt-400 {
    padding-top: 100rem !important;
  }

  .gt-md\:pr-400 {
    padding-right: 100rem !important;
  }

  .gt-md\:pb-400 {
    padding-bottom: 100rem !important;
  }

  .gt-md\:pl-400 {
    padding-left: 100rem !important;
  }

  .gt-md\:pt-480 {
    padding-top: 120rem !important;
  }

  .gt-md\:pr-480 {
    padding-right: 120rem !important;
  }

  .gt-md\:pb-480 {
    padding-bottom: 120rem !important;
  }

  .gt-md\:pl-480 {
    padding-left: 120rem !important;
  }

  .gt-md\:pt-px {
    padding-top: 1px !important;
  }

  .gt-md\:pr-px {
    padding-right: 1px !important;
  }

  .gt-md\:pb-px {
    padding-bottom: 1px !important;
  }

  .gt-md\:pl-px {
    padding-left: 1px !important;
  }

  .gt-md\:pt-0\.5 {
    padding-top: 0.125rem !important;
  }

  .gt-md\:pr-0\.5 {
    padding-right: 0.125rem !important;
  }

  .gt-md\:pb-0\.5 {
    padding-bottom: 0.125rem !important;
  }

  .gt-md\:pl-0\.5 {
    padding-left: 0.125rem !important;
  }

  .gt-md\:pt-1\.5 {
    padding-top: 0.375rem !important;
  }

  .gt-md\:pr-1\.5 {
    padding-right: 0.375rem !important;
  }

  .gt-md\:pb-1\.5 {
    padding-bottom: 0.375rem !important;
  }

  .gt-md\:pl-1\.5 {
    padding-left: 0.375rem !important;
  }

  .gt-md\:pt-2\.5 {
    padding-top: 0.625rem !important;
  }

  .gt-md\:pr-2\.5 {
    padding-right: 0.625rem !important;
  }

  .gt-md\:pb-2\.5 {
    padding-bottom: 0.625rem !important;
  }

  .gt-md\:pl-2\.5 {
    padding-left: 0.625rem !important;
  }

  .gt-md\:pt-3\.5 {
    padding-top: 0.875rem !important;
  }

  .gt-md\:pr-3\.5 {
    padding-right: 0.875rem !important;
  }

  .gt-md\:pb-3\.5 {
    padding-bottom: 0.875rem !important;
  }

  .gt-md\:pl-3\.5 {
    padding-left: 0.875rem !important;
  }

  .gt-md\:pt-1\/2 {
    padding-top: 50% !important;
  }

  .gt-md\:pr-1\/2 {
    padding-right: 50% !important;
  }

  .gt-md\:pb-1\/2 {
    padding-bottom: 50% !important;
  }

  .gt-md\:pl-1\/2 {
    padding-left: 50% !important;
  }

  .gt-md\:pt-1\/3 {
    padding-top: 33.333333% !important;
  }

  .gt-md\:pr-1\/3 {
    padding-right: 33.333333% !important;
  }

  .gt-md\:pb-1\/3 {
    padding-bottom: 33.333333% !important;
  }

  .gt-md\:pl-1\/3 {
    padding-left: 33.333333% !important;
  }

  .gt-md\:pt-2\/3 {
    padding-top: 66.666667% !important;
  }

  .gt-md\:pr-2\/3 {
    padding-right: 66.666667% !important;
  }

  .gt-md\:pb-2\/3 {
    padding-bottom: 66.666667% !important;
  }

  .gt-md\:pl-2\/3 {
    padding-left: 66.666667% !important;
  }

  .gt-md\:pt-1\/4 {
    padding-top: 25% !important;
  }

  .gt-md\:pr-1\/4 {
    padding-right: 25% !important;
  }

  .gt-md\:pb-1\/4 {
    padding-bottom: 25% !important;
  }

  .gt-md\:pl-1\/4 {
    padding-left: 25% !important;
  }

  .gt-md\:pt-2\/4 {
    padding-top: 50% !important;
  }

  .gt-md\:pr-2\/4 {
    padding-right: 50% !important;
  }

  .gt-md\:pb-2\/4 {
    padding-bottom: 50% !important;
  }

  .gt-md\:pl-2\/4 {
    padding-left: 50% !important;
  }

  .gt-md\:pt-3\/4 {
    padding-top: 75% !important;
  }

  .gt-md\:pr-3\/4 {
    padding-right: 75% !important;
  }

  .gt-md\:pb-3\/4 {
    padding-bottom: 75% !important;
  }

  .gt-md\:pl-3\/4 {
    padding-left: 75% !important;
  }

  .gt-md\:pt-1\/5 {
    padding-top: 20% !important;
  }

  .gt-md\:pr-1\/5 {
    padding-right: 20% !important;
  }

  .gt-md\:pb-1\/5 {
    padding-bottom: 20% !important;
  }

  .gt-md\:pl-1\/5 {
    padding-left: 20% !important;
  }

  .gt-md\:pt-2\/5 {
    padding-top: 40% !important;
  }

  .gt-md\:pr-2\/5 {
    padding-right: 40% !important;
  }

  .gt-md\:pb-2\/5 {
    padding-bottom: 40% !important;
  }

  .gt-md\:pl-2\/5 {
    padding-left: 40% !important;
  }

  .gt-md\:pt-3\/5 {
    padding-top: 60% !important;
  }

  .gt-md\:pr-3\/5 {
    padding-right: 60% !important;
  }

  .gt-md\:pb-3\/5 {
    padding-bottom: 60% !important;
  }

  .gt-md\:pl-3\/5 {
    padding-left: 60% !important;
  }

  .gt-md\:pt-4\/5 {
    padding-top: 80% !important;
  }

  .gt-md\:pr-4\/5 {
    padding-right: 80% !important;
  }

  .gt-md\:pb-4\/5 {
    padding-bottom: 80% !important;
  }

  .gt-md\:pl-4\/5 {
    padding-left: 80% !important;
  }

  .gt-md\:pt-1\/6 {
    padding-top: 16.666667% !important;
  }

  .gt-md\:pr-1\/6 {
    padding-right: 16.666667% !important;
  }

  .gt-md\:pb-1\/6 {
    padding-bottom: 16.666667% !important;
  }

  .gt-md\:pl-1\/6 {
    padding-left: 16.666667% !important;
  }

  .gt-md\:pt-2\/6 {
    padding-top: 33.333333% !important;
  }

  .gt-md\:pr-2\/6 {
    padding-right: 33.333333% !important;
  }

  .gt-md\:pb-2\/6 {
    padding-bottom: 33.333333% !important;
  }

  .gt-md\:pl-2\/6 {
    padding-left: 33.333333% !important;
  }

  .gt-md\:pt-3\/6 {
    padding-top: 50% !important;
  }

  .gt-md\:pr-3\/6 {
    padding-right: 50% !important;
  }

  .gt-md\:pb-3\/6 {
    padding-bottom: 50% !important;
  }

  .gt-md\:pl-3\/6 {
    padding-left: 50% !important;
  }

  .gt-md\:pt-4\/6 {
    padding-top: 66.666667% !important;
  }

  .gt-md\:pr-4\/6 {
    padding-right: 66.666667% !important;
  }

  .gt-md\:pb-4\/6 {
    padding-bottom: 66.666667% !important;
  }

  .gt-md\:pl-4\/6 {
    padding-left: 66.666667% !important;
  }

  .gt-md\:pt-5\/6 {
    padding-top: 83.333333% !important;
  }

  .gt-md\:pr-5\/6 {
    padding-right: 83.333333% !important;
  }

  .gt-md\:pb-5\/6 {
    padding-bottom: 83.333333% !important;
  }

  .gt-md\:pl-5\/6 {
    padding-left: 83.333333% !important;
  }

  .gt-md\:pt-1\/12 {
    padding-top: 8.333333% !important;
  }

  .gt-md\:pr-1\/12 {
    padding-right: 8.333333% !important;
  }

  .gt-md\:pb-1\/12 {
    padding-bottom: 8.333333% !important;
  }

  .gt-md\:pl-1\/12 {
    padding-left: 8.333333% !important;
  }

  .gt-md\:pt-2\/12 {
    padding-top: 16.666667% !important;
  }

  .gt-md\:pr-2\/12 {
    padding-right: 16.666667% !important;
  }

  .gt-md\:pb-2\/12 {
    padding-bottom: 16.666667% !important;
  }

  .gt-md\:pl-2\/12 {
    padding-left: 16.666667% !important;
  }

  .gt-md\:pt-3\/12 {
    padding-top: 25% !important;
  }

  .gt-md\:pr-3\/12 {
    padding-right: 25% !important;
  }

  .gt-md\:pb-3\/12 {
    padding-bottom: 25% !important;
  }

  .gt-md\:pl-3\/12 {
    padding-left: 25% !important;
  }

  .gt-md\:pt-4\/12 {
    padding-top: 33.333333% !important;
  }

  .gt-md\:pr-4\/12 {
    padding-right: 33.333333% !important;
  }

  .gt-md\:pb-4\/12 {
    padding-bottom: 33.333333% !important;
  }

  .gt-md\:pl-4\/12 {
    padding-left: 33.333333% !important;
  }

  .gt-md\:pt-5\/12 {
    padding-top: 41.666667% !important;
  }

  .gt-md\:pr-5\/12 {
    padding-right: 41.666667% !important;
  }

  .gt-md\:pb-5\/12 {
    padding-bottom: 41.666667% !important;
  }

  .gt-md\:pl-5\/12 {
    padding-left: 41.666667% !important;
  }

  .gt-md\:pt-6\/12 {
    padding-top: 50% !important;
  }

  .gt-md\:pr-6\/12 {
    padding-right: 50% !important;
  }

  .gt-md\:pb-6\/12 {
    padding-bottom: 50% !important;
  }

  .gt-md\:pl-6\/12 {
    padding-left: 50% !important;
  }

  .gt-md\:pt-7\/12 {
    padding-top: 58.333333% !important;
  }

  .gt-md\:pr-7\/12 {
    padding-right: 58.333333% !important;
  }

  .gt-md\:pb-7\/12 {
    padding-bottom: 58.333333% !important;
  }

  .gt-md\:pl-7\/12 {
    padding-left: 58.333333% !important;
  }

  .gt-md\:pt-8\/12 {
    padding-top: 66.666667% !important;
  }

  .gt-md\:pr-8\/12 {
    padding-right: 66.666667% !important;
  }

  .gt-md\:pb-8\/12 {
    padding-bottom: 66.666667% !important;
  }

  .gt-md\:pl-8\/12 {
    padding-left: 66.666667% !important;
  }

  .gt-md\:pt-9\/12 {
    padding-top: 75% !important;
  }

  .gt-md\:pr-9\/12 {
    padding-right: 75% !important;
  }

  .gt-md\:pb-9\/12 {
    padding-bottom: 75% !important;
  }

  .gt-md\:pl-9\/12 {
    padding-left: 75% !important;
  }

  .gt-md\:pt-10\/12 {
    padding-top: 83.333333% !important;
  }

  .gt-md\:pr-10\/12 {
    padding-right: 83.333333% !important;
  }

  .gt-md\:pb-10\/12 {
    padding-bottom: 83.333333% !important;
  }

  .gt-md\:pl-10\/12 {
    padding-left: 83.333333% !important;
  }

  .gt-md\:pt-11\/12 {
    padding-top: 91.666667% !important;
  }

  .gt-md\:pr-11\/12 {
    padding-right: 91.666667% !important;
  }

  .gt-md\:pb-11\/12 {
    padding-bottom: 91.666667% !important;
  }

  .gt-md\:pl-11\/12 {
    padding-left: 91.666667% !important;
  }

  .gt-md\:pt-full {
    padding-top: 100% !important;
  }

  .gt-md\:pr-full {
    padding-right: 100% !important;
  }

  .gt-md\:pb-full {
    padding-bottom: 100% !important;
  }

  .gt-md\:pl-full {
    padding-left: 100% !important;
  }

  .gt-md\:pt-2px {
    padding-top: 2px !important;
  }

  .gt-md\:pr-2px {
    padding-right: 2px !important;
  }

  .gt-md\:pb-2px {
    padding-bottom: 2px !important;
  }

  .gt-md\:pl-2px {
    padding-left: 2px !important;
  }

  .gt-md\:static {
    position: static !important;
  }

  .gt-md\:fixed {
    position: fixed !important;
  }

  .gt-md\:absolute {
    position: absolute !important;
  }

  .gt-md\:relative {
    position: relative !important;
  }

  .gt-md\:sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .gt-md\:inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .gt-md\:inset-1 {
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .gt-md\:inset-2 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .gt-md\:inset-3 {
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .gt-md\:inset-4 {
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .gt-md\:inset-5 {
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .gt-md\:inset-6 {
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .gt-md\:inset-7 {
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .gt-md\:inset-8 {
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .gt-md\:inset-9 {
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .gt-md\:inset-10 {
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .gt-md\:inset-11 {
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .gt-md\:inset-12 {
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .gt-md\:inset-13 {
    top: 3.25rem !important;
    right: 3.25rem !important;
    bottom: 3.25rem !important;
    left: 3.25rem !important;
  }

  .gt-md\:inset-14 {
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .gt-md\:inset-15 {
    top: 3.75rem !important;
    right: 3.75rem !important;
    bottom: 3.75rem !important;
    left: 3.75rem !important;
  }

  .gt-md\:inset-16 {
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .gt-md\:inset-18 {
    top: 4.5rem !important;
    right: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
  }

  .gt-md\:inset-20 {
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .gt-md\:inset-22 {
    top: 5.5rem !important;
    right: 5.5rem !important;
    bottom: 5.5rem !important;
    left: 5.5rem !important;
  }

  .gt-md\:inset-24 {
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .gt-md\:inset-26 {
    top: 6.5rem !important;
    right: 6.5rem !important;
    bottom: 6.5rem !important;
    left: 6.5rem !important;
  }

  .gt-md\:inset-28 {
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .gt-md\:inset-30 {
    top: 7.5rem !important;
    right: 7.5rem !important;
    bottom: 7.5rem !important;
    left: 7.5rem !important;
  }

  .gt-md\:inset-32 {
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .gt-md\:inset-36 {
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .gt-md\:inset-40 {
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .gt-md\:inset-44 {
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .gt-md\:inset-48 {
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .gt-md\:inset-50 {
    top: 12.5rem !important;
    right: 12.5rem !important;
    bottom: 12.5rem !important;
    left: 12.5rem !important;
  }

  .gt-md\:inset-52 {
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .gt-md\:inset-56 {
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .gt-md\:inset-60 {
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .gt-md\:inset-64 {
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .gt-md\:inset-72 {
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .gt-md\:inset-80 {
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .gt-md\:inset-90 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .gt-md\:inset-96 {
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .gt-md\:inset-100 {
    top: 25rem !important;
    right: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
  }

  .gt-md\:inset-120 {
    top: 30rem !important;
    right: 30rem !important;
    bottom: 30rem !important;
    left: 30rem !important;
  }

  .gt-md\:inset-128 {
    top: 32rem !important;
    right: 32rem !important;
    bottom: 32rem !important;
    left: 32rem !important;
  }

  .gt-md\:inset-140 {
    top: 35rem !important;
    right: 35rem !important;
    bottom: 35rem !important;
    left: 35rem !important;
  }

  .gt-md\:inset-160 {
    top: 40rem !important;
    right: 40rem !important;
    bottom: 40rem !important;
    left: 40rem !important;
  }

  .gt-md\:inset-180 {
    top: 45rem !important;
    right: 45rem !important;
    bottom: 45rem !important;
    left: 45rem !important;
  }

  .gt-md\:inset-192 {
    top: 48rem !important;
    right: 48rem !important;
    bottom: 48rem !important;
    left: 48rem !important;
  }

  .gt-md\:inset-200 {
    top: 50rem !important;
    right: 50rem !important;
    bottom: 50rem !important;
    left: 50rem !important;
  }

  .gt-md\:inset-240 {
    top: 60rem !important;
    right: 60rem !important;
    bottom: 60rem !important;
    left: 60rem !important;
  }

  .gt-md\:inset-256 {
    top: 64rem !important;
    right: 64rem !important;
    bottom: 64rem !important;
    left: 64rem !important;
  }

  .gt-md\:inset-280 {
    top: 70rem !important;
    right: 70rem !important;
    bottom: 70rem !important;
    left: 70rem !important;
  }

  .gt-md\:inset-320 {
    top: 80rem !important;
    right: 80rem !important;
    bottom: 80rem !important;
    left: 80rem !important;
  }

  .gt-md\:inset-360 {
    top: 90rem !important;
    right: 90rem !important;
    bottom: 90rem !important;
    left: 90rem !important;
  }

  .gt-md\:inset-400 {
    top: 100rem !important;
    right: 100rem !important;
    bottom: 100rem !important;
    left: 100rem !important;
  }

  .gt-md\:inset-480 {
    top: 120rem !important;
    right: 120rem !important;
    bottom: 120rem !important;
    left: 120rem !important;
  }

  .gt-md\:inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .gt-md\:inset-px {
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .gt-md\:inset-0\.5 {
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .gt-md\:inset-1\.5 {
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .gt-md\:inset-2\.5 {
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .gt-md\:inset-3\.5 {
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .gt-md\:inset-1\/2 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-md\:inset-1\/3 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-md\:inset-2\/3 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-md\:inset-1\/4 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .gt-md\:inset-2\/4 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-md\:inset-3\/4 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .gt-md\:inset-1\/5 {
    top: 20% !important;
    right: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
  }

  .gt-md\:inset-2\/5 {
    top: 40% !important;
    right: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
  }

  .gt-md\:inset-3\/5 {
    top: 60% !important;
    right: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
  }

  .gt-md\:inset-4\/5 {
    top: 80% !important;
    right: 80% !important;
    bottom: 80% !important;
    left: 80% !important;
  }

  .gt-md\:inset-1\/6 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-md\:inset-2\/6 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-md\:inset-3\/6 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-md\:inset-4\/6 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-md\:inset-5\/6 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-md\:inset-1\/12 {
    top: 8.333333% !important;
    right: 8.333333% !important;
    bottom: 8.333333% !important;
    left: 8.333333% !important;
  }

  .gt-md\:inset-2\/12 {
    top: 16.666667% !important;
    right: 16.666667% !important;
    bottom: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-md\:inset-3\/12 {
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .gt-md\:inset-4\/12 {
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-md\:inset-5\/12 {
    top: 41.666667% !important;
    right: 41.666667% !important;
    bottom: 41.666667% !important;
    left: 41.666667% !important;
  }

  .gt-md\:inset-6\/12 {
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .gt-md\:inset-7\/12 {
    top: 58.333333% !important;
    right: 58.333333% !important;
    bottom: 58.333333% !important;
    left: 58.333333% !important;
  }

  .gt-md\:inset-8\/12 {
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-md\:inset-9\/12 {
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .gt-md\:inset-10\/12 {
    top: 83.333333% !important;
    right: 83.333333% !important;
    bottom: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-md\:inset-11\/12 {
    top: 91.666667% !important;
    right: 91.666667% !important;
    bottom: 91.666667% !important;
    left: 91.666667% !important;
  }

  .gt-md\:inset-full {
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .gt-md\:inset-2px {
    top: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  .gt-md\:inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .gt-md\:inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .gt-md\:inset-y-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .gt-md\:inset-x-1 {
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .gt-md\:inset-y-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .gt-md\:inset-x-2 {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .gt-md\:inset-y-3 {
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .gt-md\:inset-x-3 {
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .gt-md\:inset-y-4 {
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .gt-md\:inset-x-4 {
    right: 1rem !important;
    left: 1rem !important;
  }

  .gt-md\:inset-y-5 {
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .gt-md\:inset-x-5 {
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .gt-md\:inset-y-6 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .gt-md\:inset-x-6 {
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .gt-md\:inset-y-7 {
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .gt-md\:inset-x-7 {
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .gt-md\:inset-y-8 {
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .gt-md\:inset-x-8 {
    right: 2rem !important;
    left: 2rem !important;
  }

  .gt-md\:inset-y-9 {
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .gt-md\:inset-x-9 {
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .gt-md\:inset-y-10 {
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .gt-md\:inset-x-10 {
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .gt-md\:inset-y-11 {
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .gt-md\:inset-x-11 {
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .gt-md\:inset-y-12 {
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .gt-md\:inset-x-12 {
    right: 3rem !important;
    left: 3rem !important;
  }

  .gt-md\:inset-y-13 {
    top: 3.25rem !important;
    bottom: 3.25rem !important;
  }

  .gt-md\:inset-x-13 {
    right: 3.25rem !important;
    left: 3.25rem !important;
  }

  .gt-md\:inset-y-14 {
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .gt-md\:inset-x-14 {
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .gt-md\:inset-y-15 {
    top: 3.75rem !important;
    bottom: 3.75rem !important;
  }

  .gt-md\:inset-x-15 {
    right: 3.75rem !important;
    left: 3.75rem !important;
  }

  .gt-md\:inset-y-16 {
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .gt-md\:inset-x-16 {
    right: 4rem !important;
    left: 4rem !important;
  }

  .gt-md\:inset-y-18 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
  }

  .gt-md\:inset-x-18 {
    right: 4.5rem !important;
    left: 4.5rem !important;
  }

  .gt-md\:inset-y-20 {
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .gt-md\:inset-x-20 {
    right: 5rem !important;
    left: 5rem !important;
  }

  .gt-md\:inset-y-22 {
    top: 5.5rem !important;
    bottom: 5.5rem !important;
  }

  .gt-md\:inset-x-22 {
    right: 5.5rem !important;
    left: 5.5rem !important;
  }

  .gt-md\:inset-y-24 {
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .gt-md\:inset-x-24 {
    right: 6rem !important;
    left: 6rem !important;
  }

  .gt-md\:inset-y-26 {
    top: 6.5rem !important;
    bottom: 6.5rem !important;
  }

  .gt-md\:inset-x-26 {
    right: 6.5rem !important;
    left: 6.5rem !important;
  }

  .gt-md\:inset-y-28 {
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .gt-md\:inset-x-28 {
    right: 7rem !important;
    left: 7rem !important;
  }

  .gt-md\:inset-y-30 {
    top: 7.5rem !important;
    bottom: 7.5rem !important;
  }

  .gt-md\:inset-x-30 {
    right: 7.5rem !important;
    left: 7.5rem !important;
  }

  .gt-md\:inset-y-32 {
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .gt-md\:inset-x-32 {
    right: 8rem !important;
    left: 8rem !important;
  }

  .gt-md\:inset-y-36 {
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .gt-md\:inset-x-36 {
    right: 9rem !important;
    left: 9rem !important;
  }

  .gt-md\:inset-y-40 {
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .gt-md\:inset-x-40 {
    right: 10rem !important;
    left: 10rem !important;
  }

  .gt-md\:inset-y-44 {
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .gt-md\:inset-x-44 {
    right: 11rem !important;
    left: 11rem !important;
  }

  .gt-md\:inset-y-48 {
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .gt-md\:inset-x-48 {
    right: 12rem !important;
    left: 12rem !important;
  }

  .gt-md\:inset-y-50 {
    top: 12.5rem !important;
    bottom: 12.5rem !important;
  }

  .gt-md\:inset-x-50 {
    right: 12.5rem !important;
    left: 12.5rem !important;
  }

  .gt-md\:inset-y-52 {
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .gt-md\:inset-x-52 {
    right: 13rem !important;
    left: 13rem !important;
  }

  .gt-md\:inset-y-56 {
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .gt-md\:inset-x-56 {
    right: 14rem !important;
    left: 14rem !important;
  }

  .gt-md\:inset-y-60 {
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .gt-md\:inset-x-60 {
    right: 15rem !important;
    left: 15rem !important;
  }

  .gt-md\:inset-y-64 {
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .gt-md\:inset-x-64 {
    right: 16rem !important;
    left: 16rem !important;
  }

  .gt-md\:inset-y-72 {
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .gt-md\:inset-x-72 {
    right: 18rem !important;
    left: 18rem !important;
  }

  .gt-md\:inset-y-80 {
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .gt-md\:inset-x-80 {
    right: 20rem !important;
    left: 20rem !important;
  }

  .gt-md\:inset-y-90 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .gt-md\:inset-x-90 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .gt-md\:inset-y-96 {
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .gt-md\:inset-x-96 {
    right: 24rem !important;
    left: 24rem !important;
  }

  .gt-md\:inset-y-100 {
    top: 25rem !important;
    bottom: 25rem !important;
  }

  .gt-md\:inset-x-100 {
    right: 25rem !important;
    left: 25rem !important;
  }

  .gt-md\:inset-y-120 {
    top: 30rem !important;
    bottom: 30rem !important;
  }

  .gt-md\:inset-x-120 {
    right: 30rem !important;
    left: 30rem !important;
  }

  .gt-md\:inset-y-128 {
    top: 32rem !important;
    bottom: 32rem !important;
  }

  .gt-md\:inset-x-128 {
    right: 32rem !important;
    left: 32rem !important;
  }

  .gt-md\:inset-y-140 {
    top: 35rem !important;
    bottom: 35rem !important;
  }

  .gt-md\:inset-x-140 {
    right: 35rem !important;
    left: 35rem !important;
  }

  .gt-md\:inset-y-160 {
    top: 40rem !important;
    bottom: 40rem !important;
  }

  .gt-md\:inset-x-160 {
    right: 40rem !important;
    left: 40rem !important;
  }

  .gt-md\:inset-y-180 {
    top: 45rem !important;
    bottom: 45rem !important;
  }

  .gt-md\:inset-x-180 {
    right: 45rem !important;
    left: 45rem !important;
  }

  .gt-md\:inset-y-192 {
    top: 48rem !important;
    bottom: 48rem !important;
  }

  .gt-md\:inset-x-192 {
    right: 48rem !important;
    left: 48rem !important;
  }

  .gt-md\:inset-y-200 {
    top: 50rem !important;
    bottom: 50rem !important;
  }

  .gt-md\:inset-x-200 {
    right: 50rem !important;
    left: 50rem !important;
  }

  .gt-md\:inset-y-240 {
    top: 60rem !important;
    bottom: 60rem !important;
  }

  .gt-md\:inset-x-240 {
    right: 60rem !important;
    left: 60rem !important;
  }

  .gt-md\:inset-y-256 {
    top: 64rem !important;
    bottom: 64rem !important;
  }

  .gt-md\:inset-x-256 {
    right: 64rem !important;
    left: 64rem !important;
  }

  .gt-md\:inset-y-280 {
    top: 70rem !important;
    bottom: 70rem !important;
  }

  .gt-md\:inset-x-280 {
    right: 70rem !important;
    left: 70rem !important;
  }

  .gt-md\:inset-y-320 {
    top: 80rem !important;
    bottom: 80rem !important;
  }

  .gt-md\:inset-x-320 {
    right: 80rem !important;
    left: 80rem !important;
  }

  .gt-md\:inset-y-360 {
    top: 90rem !important;
    bottom: 90rem !important;
  }

  .gt-md\:inset-x-360 {
    right: 90rem !important;
    left: 90rem !important;
  }

  .gt-md\:inset-y-400 {
    top: 100rem !important;
    bottom: 100rem !important;
  }

  .gt-md\:inset-x-400 {
    right: 100rem !important;
    left: 100rem !important;
  }

  .gt-md\:inset-y-480 {
    top: 120rem !important;
    bottom: 120rem !important;
  }

  .gt-md\:inset-x-480 {
    right: 120rem !important;
    left: 120rem !important;
  }

  .gt-md\:inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .gt-md\:inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .gt-md\:inset-y-px {
    top: 1px !important;
    bottom: 1px !important;
  }

  .gt-md\:inset-x-px {
    right: 1px !important;
    left: 1px !important;
  }

  .gt-md\:inset-y-0\.5 {
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .gt-md\:inset-x-0\.5 {
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .gt-md\:inset-y-1\.5 {
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .gt-md\:inset-x-1\.5 {
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .gt-md\:inset-y-2\.5 {
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .gt-md\:inset-x-2\.5 {
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .gt-md\:inset-y-3\.5 {
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .gt-md\:inset-x-3\.5 {
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .gt-md\:inset-y-1\/2 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-md\:inset-x-1\/2 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-md\:inset-y-1\/3 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .gt-md\:inset-x-1\/3 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-md\:inset-y-2\/3 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .gt-md\:inset-x-2\/3 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-md\:inset-y-1\/4 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .gt-md\:inset-x-1\/4 {
    right: 25% !important;
    left: 25% !important;
  }

  .gt-md\:inset-y-2\/4 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-md\:inset-x-2\/4 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-md\:inset-y-3\/4 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .gt-md\:inset-x-3\/4 {
    right: 75% !important;
    left: 75% !important;
  }

  .gt-md\:inset-y-1\/5 {
    top: 20% !important;
    bottom: 20% !important;
  }

  .gt-md\:inset-x-1\/5 {
    right: 20% !important;
    left: 20% !important;
  }

  .gt-md\:inset-y-2\/5 {
    top: 40% !important;
    bottom: 40% !important;
  }

  .gt-md\:inset-x-2\/5 {
    right: 40% !important;
    left: 40% !important;
  }

  .gt-md\:inset-y-3\/5 {
    top: 60% !important;
    bottom: 60% !important;
  }

  .gt-md\:inset-x-3\/5 {
    right: 60% !important;
    left: 60% !important;
  }

  .gt-md\:inset-y-4\/5 {
    top: 80% !important;
    bottom: 80% !important;
  }

  .gt-md\:inset-x-4\/5 {
    right: 80% !important;
    left: 80% !important;
  }

  .gt-md\:inset-y-1\/6 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .gt-md\:inset-x-1\/6 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-md\:inset-y-2\/6 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .gt-md\:inset-x-2\/6 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-md\:inset-y-3\/6 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-md\:inset-x-3\/6 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-md\:inset-y-4\/6 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .gt-md\:inset-x-4\/6 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-md\:inset-y-5\/6 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .gt-md\:inset-x-5\/6 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-md\:inset-y-1\/12 {
    top: 8.333333% !important;
    bottom: 8.333333% !important;
  }

  .gt-md\:inset-x-1\/12 {
    right: 8.333333% !important;
    left: 8.333333% !important;
  }

  .gt-md\:inset-y-2\/12 {
    top: 16.666667% !important;
    bottom: 16.666667% !important;
  }

  .gt-md\:inset-x-2\/12 {
    right: 16.666667% !important;
    left: 16.666667% !important;
  }

  .gt-md\:inset-y-3\/12 {
    top: 25% !important;
    bottom: 25% !important;
  }

  .gt-md\:inset-x-3\/12 {
    right: 25% !important;
    left: 25% !important;
  }

  .gt-md\:inset-y-4\/12 {
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .gt-md\:inset-x-4\/12 {
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .gt-md\:inset-y-5\/12 {
    top: 41.666667% !important;
    bottom: 41.666667% !important;
  }

  .gt-md\:inset-x-5\/12 {
    right: 41.666667% !important;
    left: 41.666667% !important;
  }

  .gt-md\:inset-y-6\/12 {
    top: 50% !important;
    bottom: 50% !important;
  }

  .gt-md\:inset-x-6\/12 {
    right: 50% !important;
    left: 50% !important;
  }

  .gt-md\:inset-y-7\/12 {
    top: 58.333333% !important;
    bottom: 58.333333% !important;
  }

  .gt-md\:inset-x-7\/12 {
    right: 58.333333% !important;
    left: 58.333333% !important;
  }

  .gt-md\:inset-y-8\/12 {
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .gt-md\:inset-x-8\/12 {
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .gt-md\:inset-y-9\/12 {
    top: 75% !important;
    bottom: 75% !important;
  }

  .gt-md\:inset-x-9\/12 {
    right: 75% !important;
    left: 75% !important;
  }

  .gt-md\:inset-y-10\/12 {
    top: 83.333333% !important;
    bottom: 83.333333% !important;
  }

  .gt-md\:inset-x-10\/12 {
    right: 83.333333% !important;
    left: 83.333333% !important;
  }

  .gt-md\:inset-y-11\/12 {
    top: 91.666667% !important;
    bottom: 91.666667% !important;
  }

  .gt-md\:inset-x-11\/12 {
    right: 91.666667% !important;
    left: 91.666667% !important;
  }

  .gt-md\:inset-y-full {
    top: 100% !important;
    bottom: 100% !important;
  }

  .gt-md\:inset-x-full {
    right: 100% !important;
    left: 100% !important;
  }

  .gt-md\:inset-y-2px {
    top: 2px !important;
    bottom: 2px !important;
  }

  .gt-md\:inset-x-2px {
    right: 2px !important;
    left: 2px !important;
  }

  .gt-md\:top-0 {
    top: 0 !important;
  }

  .gt-md\:right-0 {
    right: 0 !important;
  }

  .gt-md\:bottom-0 {
    bottom: 0 !important;
  }

  .gt-md\:left-0 {
    left: 0 !important;
  }

  .gt-md\:top-1 {
    top: 0.25rem !important;
  }

  .gt-md\:right-1 {
    right: 0.25rem !important;
  }

  .gt-md\:bottom-1 {
    bottom: 0.25rem !important;
  }

  .gt-md\:left-1 {
    left: 0.25rem !important;
  }

  .gt-md\:top-2 {
    top: 0.5rem !important;
  }

  .gt-md\:right-2 {
    right: 0.5rem !important;
  }

  .gt-md\:bottom-2 {
    bottom: 0.5rem !important;
  }

  .gt-md\:left-2 {
    left: 0.5rem !important;
  }

  .gt-md\:top-3 {
    top: 0.75rem !important;
  }

  .gt-md\:right-3 {
    right: 0.75rem !important;
  }

  .gt-md\:bottom-3 {
    bottom: 0.75rem !important;
  }

  .gt-md\:left-3 {
    left: 0.75rem !important;
  }

  .gt-md\:top-4 {
    top: 1rem !important;
  }

  .gt-md\:right-4 {
    right: 1rem !important;
  }

  .gt-md\:bottom-4 {
    bottom: 1rem !important;
  }

  .gt-md\:left-4 {
    left: 1rem !important;
  }

  .gt-md\:top-5 {
    top: 1.25rem !important;
  }

  .gt-md\:right-5 {
    right: 1.25rem !important;
  }

  .gt-md\:bottom-5 {
    bottom: 1.25rem !important;
  }

  .gt-md\:left-5 {
    left: 1.25rem !important;
  }

  .gt-md\:top-6 {
    top: 1.5rem !important;
  }

  .gt-md\:right-6 {
    right: 1.5rem !important;
  }

  .gt-md\:bottom-6 {
    bottom: 1.5rem !important;
  }

  .gt-md\:left-6 {
    left: 1.5rem !important;
  }

  .gt-md\:top-7 {
    top: 1.75rem !important;
  }

  .gt-md\:right-7 {
    right: 1.75rem !important;
  }

  .gt-md\:bottom-7 {
    bottom: 1.75rem !important;
  }

  .gt-md\:left-7 {
    left: 1.75rem !important;
  }

  .gt-md\:top-8 {
    top: 2rem !important;
  }

  .gt-md\:right-8 {
    right: 2rem !important;
  }

  .gt-md\:bottom-8 {
    bottom: 2rem !important;
  }

  .gt-md\:left-8 {
    left: 2rem !important;
  }

  .gt-md\:top-9 {
    top: 2.25rem !important;
  }

  .gt-md\:right-9 {
    right: 2.25rem !important;
  }

  .gt-md\:bottom-9 {
    bottom: 2.25rem !important;
  }

  .gt-md\:left-9 {
    left: 2.25rem !important;
  }

  .gt-md\:top-10 {
    top: 2.5rem !important;
  }

  .gt-md\:right-10 {
    right: 2.5rem !important;
  }

  .gt-md\:bottom-10 {
    bottom: 2.5rem !important;
  }

  .gt-md\:left-10 {
    left: 2.5rem !important;
  }

  .gt-md\:top-11 {
    top: 2.75rem !important;
  }

  .gt-md\:right-11 {
    right: 2.75rem !important;
  }

  .gt-md\:bottom-11 {
    bottom: 2.75rem !important;
  }

  .gt-md\:left-11 {
    left: 2.75rem !important;
  }

  .gt-md\:top-12 {
    top: 3rem !important;
  }

  .gt-md\:right-12 {
    right: 3rem !important;
  }

  .gt-md\:bottom-12 {
    bottom: 3rem !important;
  }

  .gt-md\:left-12 {
    left: 3rem !important;
  }

  .gt-md\:top-13 {
    top: 3.25rem !important;
  }

  .gt-md\:right-13 {
    right: 3.25rem !important;
  }

  .gt-md\:bottom-13 {
    bottom: 3.25rem !important;
  }

  .gt-md\:left-13 {
    left: 3.25rem !important;
  }

  .gt-md\:top-14 {
    top: 3.5rem !important;
  }

  .gt-md\:right-14 {
    right: 3.5rem !important;
  }

  .gt-md\:bottom-14 {
    bottom: 3.5rem !important;
  }

  .gt-md\:left-14 {
    left: 3.5rem !important;
  }

  .gt-md\:top-15 {
    top: 3.75rem !important;
  }

  .gt-md\:right-15 {
    right: 3.75rem !important;
  }

  .gt-md\:bottom-15 {
    bottom: 3.75rem !important;
  }

  .gt-md\:left-15 {
    left: 3.75rem !important;
  }

  .gt-md\:top-16 {
    top: 4rem !important;
  }

  .gt-md\:right-16 {
    right: 4rem !important;
  }

  .gt-md\:bottom-16 {
    bottom: 4rem !important;
  }

  .gt-md\:left-16 {
    left: 4rem !important;
  }

  .gt-md\:top-18 {
    top: 4.5rem !important;
  }

  .gt-md\:right-18 {
    right: 4.5rem !important;
  }

  .gt-md\:bottom-18 {
    bottom: 4.5rem !important;
  }

  .gt-md\:left-18 {
    left: 4.5rem !important;
  }

  .gt-md\:top-20 {
    top: 5rem !important;
  }

  .gt-md\:right-20 {
    right: 5rem !important;
  }

  .gt-md\:bottom-20 {
    bottom: 5rem !important;
  }

  .gt-md\:left-20 {
    left: 5rem !important;
  }

  .gt-md\:top-22 {
    top: 5.5rem !important;
  }

  .gt-md\:right-22 {
    right: 5.5rem !important;
  }

  .gt-md\:bottom-22 {
    bottom: 5.5rem !important;
  }

  .gt-md\:left-22 {
    left: 5.5rem !important;
  }

  .gt-md\:top-24 {
    top: 6rem !important;
  }

  .gt-md\:right-24 {
    right: 6rem !important;
  }

  .gt-md\:bottom-24 {
    bottom: 6rem !important;
  }

  .gt-md\:left-24 {
    left: 6rem !important;
  }

  .gt-md\:top-26 {
    top: 6.5rem !important;
  }

  .gt-md\:right-26 {
    right: 6.5rem !important;
  }

  .gt-md\:bottom-26 {
    bottom: 6.5rem !important;
  }

  .gt-md\:left-26 {
    left: 6.5rem !important;
  }

  .gt-md\:top-28 {
    top: 7rem !important;
  }

  .gt-md\:right-28 {
    right: 7rem !important;
  }

  .gt-md\:bottom-28 {
    bottom: 7rem !important;
  }

  .gt-md\:left-28 {
    left: 7rem !important;
  }

  .gt-md\:top-30 {
    top: 7.5rem !important;
  }

  .gt-md\:right-30 {
    right: 7.5rem !important;
  }

  .gt-md\:bottom-30 {
    bottom: 7.5rem !important;
  }

  .gt-md\:left-30 {
    left: 7.5rem !important;
  }

  .gt-md\:top-32 {
    top: 8rem !important;
  }

  .gt-md\:right-32 {
    right: 8rem !important;
  }

  .gt-md\:bottom-32 {
    bottom: 8rem !important;
  }

  .gt-md\:left-32 {
    left: 8rem !important;
  }

  .gt-md\:top-36 {
    top: 9rem !important;
  }

  .gt-md\:right-36 {
    right: 9rem !important;
  }

  .gt-md\:bottom-36 {
    bottom: 9rem !important;
  }

  .gt-md\:left-36 {
    left: 9rem !important;
  }

  .gt-md\:top-40 {
    top: 10rem !important;
  }

  .gt-md\:right-40 {
    right: 10rem !important;
  }

  .gt-md\:bottom-40 {
    bottom: 10rem !important;
  }

  .gt-md\:left-40 {
    left: 10rem !important;
  }

  .gt-md\:top-44 {
    top: 11rem !important;
  }

  .gt-md\:right-44 {
    right: 11rem !important;
  }

  .gt-md\:bottom-44 {
    bottom: 11rem !important;
  }

  .gt-md\:left-44 {
    left: 11rem !important;
  }

  .gt-md\:top-48 {
    top: 12rem !important;
  }

  .gt-md\:right-48 {
    right: 12rem !important;
  }

  .gt-md\:bottom-48 {
    bottom: 12rem !important;
  }

  .gt-md\:left-48 {
    left: 12rem !important;
  }

  .gt-md\:top-50 {
    top: 12.5rem !important;
  }

  .gt-md\:right-50 {
    right: 12.5rem !important;
  }

  .gt-md\:bottom-50 {
    bottom: 12.5rem !important;
  }

  .gt-md\:left-50 {
    left: 12.5rem !important;
  }

  .gt-md\:top-52 {
    top: 13rem !important;
  }

  .gt-md\:right-52 {
    right: 13rem !important;
  }

  .gt-md\:bottom-52 {
    bottom: 13rem !important;
  }

  .gt-md\:left-52 {
    left: 13rem !important;
  }

  .gt-md\:top-56 {
    top: 14rem !important;
  }

  .gt-md\:right-56 {
    right: 14rem !important;
  }

  .gt-md\:bottom-56 {
    bottom: 14rem !important;
  }

  .gt-md\:left-56 {
    left: 14rem !important;
  }

  .gt-md\:top-60 {
    top: 15rem !important;
  }

  .gt-md\:right-60 {
    right: 15rem !important;
  }

  .gt-md\:bottom-60 {
    bottom: 15rem !important;
  }

  .gt-md\:left-60 {
    left: 15rem !important;
  }

  .gt-md\:top-64 {
    top: 16rem !important;
  }

  .gt-md\:right-64 {
    right: 16rem !important;
  }

  .gt-md\:bottom-64 {
    bottom: 16rem !important;
  }

  .gt-md\:left-64 {
    left: 16rem !important;
  }

  .gt-md\:top-72 {
    top: 18rem !important;
  }

  .gt-md\:right-72 {
    right: 18rem !important;
  }

  .gt-md\:bottom-72 {
    bottom: 18rem !important;
  }

  .gt-md\:left-72 {
    left: 18rem !important;
  }

  .gt-md\:top-80 {
    top: 20rem !important;
  }

  .gt-md\:right-80 {
    right: 20rem !important;
  }

  .gt-md\:bottom-80 {
    bottom: 20rem !important;
  }

  .gt-md\:left-80 {
    left: 20rem !important;
  }

  .gt-md\:top-90 {
    top: 24rem !important;
  }

  .gt-md\:right-90 {
    right: 24rem !important;
  }

  .gt-md\:bottom-90 {
    bottom: 24rem !important;
  }

  .gt-md\:left-90 {
    left: 24rem !important;
  }

  .gt-md\:top-96 {
    top: 24rem !important;
  }

  .gt-md\:right-96 {
    right: 24rem !important;
  }

  .gt-md\:bottom-96 {
    bottom: 24rem !important;
  }

  .gt-md\:left-96 {
    left: 24rem !important;
  }

  .gt-md\:top-100 {
    top: 25rem !important;
  }

  .gt-md\:right-100 {
    right: 25rem !important;
  }

  .gt-md\:bottom-100 {
    bottom: 25rem !important;
  }

  .gt-md\:left-100 {
    left: 25rem !important;
  }

  .gt-md\:top-120 {
    top: 30rem !important;
  }

  .gt-md\:right-120 {
    right: 30rem !important;
  }

  .gt-md\:bottom-120 {
    bottom: 30rem !important;
  }

  .gt-md\:left-120 {
    left: 30rem !important;
  }

  .gt-md\:top-128 {
    top: 32rem !important;
  }

  .gt-md\:right-128 {
    right: 32rem !important;
  }

  .gt-md\:bottom-128 {
    bottom: 32rem !important;
  }

  .gt-md\:left-128 {
    left: 32rem !important;
  }

  .gt-md\:top-140 {
    top: 35rem !important;
  }

  .gt-md\:right-140 {
    right: 35rem !important;
  }

  .gt-md\:bottom-140 {
    bottom: 35rem !important;
  }

  .gt-md\:left-140 {
    left: 35rem !important;
  }

  .gt-md\:top-160 {
    top: 40rem !important;
  }

  .gt-md\:right-160 {
    right: 40rem !important;
  }

  .gt-md\:bottom-160 {
    bottom: 40rem !important;
  }

  .gt-md\:left-160 {
    left: 40rem !important;
  }

  .gt-md\:top-180 {
    top: 45rem !important;
  }

  .gt-md\:right-180 {
    right: 45rem !important;
  }

  .gt-md\:bottom-180 {
    bottom: 45rem !important;
  }

  .gt-md\:left-180 {
    left: 45rem !important;
  }

  .gt-md\:top-192 {
    top: 48rem !important;
  }

  .gt-md\:right-192 {
    right: 48rem !important;
  }

  .gt-md\:bottom-192 {
    bottom: 48rem !important;
  }

  .gt-md\:left-192 {
    left: 48rem !important;
  }

  .gt-md\:top-200 {
    top: 50rem !important;
  }

  .gt-md\:right-200 {
    right: 50rem !important;
  }

  .gt-md\:bottom-200 {
    bottom: 50rem !important;
  }

  .gt-md\:left-200 {
    left: 50rem !important;
  }

  .gt-md\:top-240 {
    top: 60rem !important;
  }

  .gt-md\:right-240 {
    right: 60rem !important;
  }

  .gt-md\:bottom-240 {
    bottom: 60rem !important;
  }

  .gt-md\:left-240 {
    left: 60rem !important;
  }

  .gt-md\:top-256 {
    top: 64rem !important;
  }

  .gt-md\:right-256 {
    right: 64rem !important;
  }

  .gt-md\:bottom-256 {
    bottom: 64rem !important;
  }

  .gt-md\:left-256 {
    left: 64rem !important;
  }

  .gt-md\:top-280 {
    top: 70rem !important;
  }

  .gt-md\:right-280 {
    right: 70rem !important;
  }

  .gt-md\:bottom-280 {
    bottom: 70rem !important;
  }

  .gt-md\:left-280 {
    left: 70rem !important;
  }

  .gt-md\:top-320 {
    top: 80rem !important;
  }

  .gt-md\:right-320 {
    right: 80rem !important;
  }

  .gt-md\:bottom-320 {
    bottom: 80rem !important;
  }

  .gt-md\:left-320 {
    left: 80rem !important;
  }

  .gt-md\:top-360 {
    top: 90rem !important;
  }

  .gt-md\:right-360 {
    right: 90rem !important;
  }

  .gt-md\:bottom-360 {
    bottom: 90rem !important;
  }

  .gt-md\:left-360 {
    left: 90rem !important;
  }

  .gt-md\:top-400 {
    top: 100rem !important;
  }

  .gt-md\:right-400 {
    right: 100rem !important;
  }

  .gt-md\:bottom-400 {
    bottom: 100rem !important;
  }

  .gt-md\:left-400 {
    left: 100rem !important;
  }

  .gt-md\:top-480 {
    top: 120rem !important;
  }

  .gt-md\:right-480 {
    right: 120rem !important;
  }

  .gt-md\:bottom-480 {
    bottom: 120rem !important;
  }

  .gt-md\:left-480 {
    left: 120rem !important;
  }

  .gt-md\:top-auto {
    top: auto !important;
  }

  .gt-md\:right-auto {
    right: auto !important;
  }

  .gt-md\:bottom-auto {
    bottom: auto !important;
  }

  .gt-md\:left-auto {
    left: auto !important;
  }

  .gt-md\:top-px {
    top: 1px !important;
  }

  .gt-md\:right-px {
    right: 1px !important;
  }

  .gt-md\:bottom-px {
    bottom: 1px !important;
  }

  .gt-md\:left-px {
    left: 1px !important;
  }

  .gt-md\:top-0\.5 {
    top: 0.125rem !important;
  }

  .gt-md\:right-0\.5 {
    right: 0.125rem !important;
  }

  .gt-md\:bottom-0\.5 {
    bottom: 0.125rem !important;
  }

  .gt-md\:left-0\.5 {
    left: 0.125rem !important;
  }

  .gt-md\:top-1\.5 {
    top: 0.375rem !important;
  }

  .gt-md\:right-1\.5 {
    right: 0.375rem !important;
  }

  .gt-md\:bottom-1\.5 {
    bottom: 0.375rem !important;
  }

  .gt-md\:left-1\.5 {
    left: 0.375rem !important;
  }

  .gt-md\:top-2\.5 {
    top: 0.625rem !important;
  }

  .gt-md\:right-2\.5 {
    right: 0.625rem !important;
  }

  .gt-md\:bottom-2\.5 {
    bottom: 0.625rem !important;
  }

  .gt-md\:left-2\.5 {
    left: 0.625rem !important;
  }

  .gt-md\:top-3\.5 {
    top: 0.875rem !important;
  }

  .gt-md\:right-3\.5 {
    right: 0.875rem !important;
  }

  .gt-md\:bottom-3\.5 {
    bottom: 0.875rem !important;
  }

  .gt-md\:left-3\.5 {
    left: 0.875rem !important;
  }

  .gt-md\:top-1\/2 {
    top: 50% !important;
  }

  .gt-md\:right-1\/2 {
    right: 50% !important;
  }

  .gt-md\:bottom-1\/2 {
    bottom: 50% !important;
  }

  .gt-md\:left-1\/2 {
    left: 50% !important;
  }

  .gt-md\:top-1\/3 {
    top: 33.333333% !important;
  }

  .gt-md\:right-1\/3 {
    right: 33.333333% !important;
  }

  .gt-md\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }

  .gt-md\:left-1\/3 {
    left: 33.333333% !important;
  }

  .gt-md\:top-2\/3 {
    top: 66.666667% !important;
  }

  .gt-md\:right-2\/3 {
    right: 66.666667% !important;
  }

  .gt-md\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }

  .gt-md\:left-2\/3 {
    left: 66.666667% !important;
  }

  .gt-md\:top-1\/4 {
    top: 25% !important;
  }

  .gt-md\:right-1\/4 {
    right: 25% !important;
  }

  .gt-md\:bottom-1\/4 {
    bottom: 25% !important;
  }

  .gt-md\:left-1\/4 {
    left: 25% !important;
  }

  .gt-md\:top-2\/4 {
    top: 50% !important;
  }

  .gt-md\:right-2\/4 {
    right: 50% !important;
  }

  .gt-md\:bottom-2\/4 {
    bottom: 50% !important;
  }

  .gt-md\:left-2\/4 {
    left: 50% !important;
  }

  .gt-md\:top-3\/4 {
    top: 75% !important;
  }

  .gt-md\:right-3\/4 {
    right: 75% !important;
  }

  .gt-md\:bottom-3\/4 {
    bottom: 75% !important;
  }

  .gt-md\:left-3\/4 {
    left: 75% !important;
  }

  .gt-md\:top-1\/5 {
    top: 20% !important;
  }

  .gt-md\:right-1\/5 {
    right: 20% !important;
  }

  .gt-md\:bottom-1\/5 {
    bottom: 20% !important;
  }

  .gt-md\:left-1\/5 {
    left: 20% !important;
  }

  .gt-md\:top-2\/5 {
    top: 40% !important;
  }

  .gt-md\:right-2\/5 {
    right: 40% !important;
  }

  .gt-md\:bottom-2\/5 {
    bottom: 40% !important;
  }

  .gt-md\:left-2\/5 {
    left: 40% !important;
  }

  .gt-md\:top-3\/5 {
    top: 60% !important;
  }

  .gt-md\:right-3\/5 {
    right: 60% !important;
  }

  .gt-md\:bottom-3\/5 {
    bottom: 60% !important;
  }

  .gt-md\:left-3\/5 {
    left: 60% !important;
  }

  .gt-md\:top-4\/5 {
    top: 80% !important;
  }

  .gt-md\:right-4\/5 {
    right: 80% !important;
  }

  .gt-md\:bottom-4\/5 {
    bottom: 80% !important;
  }

  .gt-md\:left-4\/5 {
    left: 80% !important;
  }

  .gt-md\:top-1\/6 {
    top: 16.666667% !important;
  }

  .gt-md\:right-1\/6 {
    right: 16.666667% !important;
  }

  .gt-md\:bottom-1\/6 {
    bottom: 16.666667% !important;
  }

  .gt-md\:left-1\/6 {
    left: 16.666667% !important;
  }

  .gt-md\:top-2\/6 {
    top: 33.333333% !important;
  }

  .gt-md\:right-2\/6 {
    right: 33.333333% !important;
  }

  .gt-md\:bottom-2\/6 {
    bottom: 33.333333% !important;
  }

  .gt-md\:left-2\/6 {
    left: 33.333333% !important;
  }

  .gt-md\:top-3\/6 {
    top: 50% !important;
  }

  .gt-md\:right-3\/6 {
    right: 50% !important;
  }

  .gt-md\:bottom-3\/6 {
    bottom: 50% !important;
  }

  .gt-md\:left-3\/6 {
    left: 50% !important;
  }

  .gt-md\:top-4\/6 {
    top: 66.666667% !important;
  }

  .gt-md\:right-4\/6 {
    right: 66.666667% !important;
  }

  .gt-md\:bottom-4\/6 {
    bottom: 66.666667% !important;
  }

  .gt-md\:left-4\/6 {
    left: 66.666667% !important;
  }

  .gt-md\:top-5\/6 {
    top: 83.333333% !important;
  }

  .gt-md\:right-5\/6 {
    right: 83.333333% !important;
  }

  .gt-md\:bottom-5\/6 {
    bottom: 83.333333% !important;
  }

  .gt-md\:left-5\/6 {
    left: 83.333333% !important;
  }

  .gt-md\:top-1\/12 {
    top: 8.333333% !important;
  }

  .gt-md\:right-1\/12 {
    right: 8.333333% !important;
  }

  .gt-md\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }

  .gt-md\:left-1\/12 {
    left: 8.333333% !important;
  }

  .gt-md\:top-2\/12 {
    top: 16.666667% !important;
  }

  .gt-md\:right-2\/12 {
    right: 16.666667% !important;
  }

  .gt-md\:bottom-2\/12 {
    bottom: 16.666667% !important;
  }

  .gt-md\:left-2\/12 {
    left: 16.666667% !important;
  }

  .gt-md\:top-3\/12 {
    top: 25% !important;
  }

  .gt-md\:right-3\/12 {
    right: 25% !important;
  }

  .gt-md\:bottom-3\/12 {
    bottom: 25% !important;
  }

  .gt-md\:left-3\/12 {
    left: 25% !important;
  }

  .gt-md\:top-4\/12 {
    top: 33.333333% !important;
  }

  .gt-md\:right-4\/12 {
    right: 33.333333% !important;
  }

  .gt-md\:bottom-4\/12 {
    bottom: 33.333333% !important;
  }

  .gt-md\:left-4\/12 {
    left: 33.333333% !important;
  }

  .gt-md\:top-5\/12 {
    top: 41.666667% !important;
  }

  .gt-md\:right-5\/12 {
    right: 41.666667% !important;
  }

  .gt-md\:bottom-5\/12 {
    bottom: 41.666667% !important;
  }

  .gt-md\:left-5\/12 {
    left: 41.666667% !important;
  }

  .gt-md\:top-6\/12 {
    top: 50% !important;
  }

  .gt-md\:right-6\/12 {
    right: 50% !important;
  }

  .gt-md\:bottom-6\/12 {
    bottom: 50% !important;
  }

  .gt-md\:left-6\/12 {
    left: 50% !important;
  }

  .gt-md\:top-7\/12 {
    top: 58.333333% !important;
  }

  .gt-md\:right-7\/12 {
    right: 58.333333% !important;
  }

  .gt-md\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }

  .gt-md\:left-7\/12 {
    left: 58.333333% !important;
  }

  .gt-md\:top-8\/12 {
    top: 66.666667% !important;
  }

  .gt-md\:right-8\/12 {
    right: 66.666667% !important;
  }

  .gt-md\:bottom-8\/12 {
    bottom: 66.666667% !important;
  }

  .gt-md\:left-8\/12 {
    left: 66.666667% !important;
  }

  .gt-md\:top-9\/12 {
    top: 75% !important;
  }

  .gt-md\:right-9\/12 {
    right: 75% !important;
  }

  .gt-md\:bottom-9\/12 {
    bottom: 75% !important;
  }

  .gt-md\:left-9\/12 {
    left: 75% !important;
  }

  .gt-md\:top-10\/12 {
    top: 83.333333% !important;
  }

  .gt-md\:right-10\/12 {
    right: 83.333333% !important;
  }

  .gt-md\:bottom-10\/12 {
    bottom: 83.333333% !important;
  }

  .gt-md\:left-10\/12 {
    left: 83.333333% !important;
  }

  .gt-md\:top-11\/12 {
    top: 91.666667% !important;
  }

  .gt-md\:right-11\/12 {
    right: 91.666667% !important;
  }

  .gt-md\:bottom-11\/12 {
    bottom: 91.666667% !important;
  }

  .gt-md\:left-11\/12 {
    left: 91.666667% !important;
  }

  .gt-md\:top-full {
    top: 100% !important;
  }

  .gt-md\:right-full {
    right: 100% !important;
  }

  .gt-md\:bottom-full {
    bottom: 100% !important;
  }

  .gt-md\:left-full {
    left: 100% !important;
  }

  .gt-md\:top-2px {
    top: 2px !important;
  }

  .gt-md\:right-2px {
    right: 2px !important;
  }

  .gt-md\:bottom-2px {
    bottom: 2px !important;
  }

  .gt-md\:left-2px {
    left: 2px !important;
  }

  .gt-md\:text-left {
    text-align: left !important;
  }

  .gt-md\:text-center {
    text-align: center !important;
  }

  .gt-md\:text-right {
    text-align: right !important;
  }

  .gt-md\:text-justify {
    text-align: justify !important;
  }

  .gt-md\:tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .gt-md\:tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .gt-md\:tracking-normal {
    letter-spacing: 0 !important;
  }

  .gt-md\:tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .gt-md\:tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .gt-md\:tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .gt-md\:visible {
    visibility: visible !important;
  }

  .gt-md\:invisible {
    visibility: hidden !important;
  }

  .gt-md\:whitespace-normal {
    white-space: normal !important;
  }

  .gt-md\:whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .gt-md\:whitespace-pre {
    white-space: pre !important;
  }

  .gt-md\:whitespace-pre-line {
    white-space: pre-line !important;
  }

  .gt-md\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .gt-md\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .gt-md\:break-words {
    overflow-wrap: break-word !important;
  }

  .gt-md\:break-all {
    word-break: break-all !important;
  }

  .gt-md\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .gt-md\:w-0 {
    width: 0 !important;
  }

  .gt-md\:w-1 {
    width: 0.25rem !important;
  }

  .gt-md\:w-2 {
    width: 0.5rem !important;
  }

  .gt-md\:w-3 {
    width: 0.75rem !important;
  }

  .gt-md\:w-4 {
    width: 1rem !important;
  }

  .gt-md\:w-5 {
    width: 1.25rem !important;
  }

  .gt-md\:w-6 {
    width: 1.5rem !important;
  }

  .gt-md\:w-7 {
    width: 1.75rem !important;
  }

  .gt-md\:w-8 {
    width: 2rem !important;
  }

  .gt-md\:w-9 {
    width: 2.25rem !important;
  }

  .gt-md\:w-10 {
    width: 2.5rem !important;
  }

  .gt-md\:w-11 {
    width: 2.75rem !important;
  }

  .gt-md\:w-12 {
    width: 3rem !important;
  }

  .gt-md\:w-13 {
    width: 3.25rem !important;
  }

  .gt-md\:w-14 {
    width: 3.5rem !important;
  }

  .gt-md\:w-15 {
    width: 3.75rem !important;
  }

  .gt-md\:w-16 {
    width: 4rem !important;
  }

  .gt-md\:w-18 {
    width: 4.5rem !important;
  }

  .gt-md\:w-20 {
    width: 5rem !important;
  }

  .gt-md\:w-22 {
    width: 5.5rem !important;
  }

  .gt-md\:w-24 {
    width: 6rem !important;
  }

  .gt-md\:w-26 {
    width: 6.5rem !important;
  }

  .gt-md\:w-28 {
    width: 7rem !important;
  }

  .gt-md\:w-30 {
    width: 7.5rem !important;
  }

  .gt-md\:w-32 {
    width: 8rem !important;
  }

  .gt-md\:w-36 {
    width: 9rem !important;
  }

  .gt-md\:w-40 {
    width: 10rem !important;
  }

  .gt-md\:w-44 {
    width: 11rem !important;
  }

  .gt-md\:w-48 {
    width: 12rem !important;
  }

  .gt-md\:w-50 {
    width: 12.5rem !important;
  }

  .gt-md\:w-52 {
    width: 13rem !important;
  }

  .gt-md\:w-56 {
    width: 14rem !important;
  }

  .gt-md\:w-60 {
    width: 15rem !important;
  }

  .gt-md\:w-64 {
    width: 16rem !important;
  }

  .gt-md\:w-72 {
    width: 18rem !important;
  }

  .gt-md\:w-80 {
    width: 20rem !important;
  }

  .gt-md\:w-90 {
    width: 24rem !important;
  }

  .gt-md\:w-96 {
    width: 24rem !important;
  }

  .gt-md\:w-100 {
    width: 25rem !important;
  }

  .gt-md\:w-120 {
    width: 30rem !important;
  }

  .gt-md\:w-128 {
    width: 32rem !important;
  }

  .gt-md\:w-140 {
    width: 35rem !important;
  }

  .gt-md\:w-160 {
    width: 40rem !important;
  }

  .gt-md\:w-180 {
    width: 45rem !important;
  }

  .gt-md\:w-192 {
    width: 48rem !important;
  }

  .gt-md\:w-200 {
    width: 50rem !important;
  }

  .gt-md\:w-240 {
    width: 60rem !important;
  }

  .gt-md\:w-256 {
    width: 64rem !important;
  }

  .gt-md\:w-280 {
    width: 70rem !important;
  }

  .gt-md\:w-320 {
    width: 80rem !important;
  }

  .gt-md\:w-360 {
    width: 90rem !important;
  }

  .gt-md\:w-400 {
    width: 100rem !important;
  }

  .gt-md\:w-480 {
    width: 120rem !important;
  }

  .gt-md\:w-auto {
    width: auto !important;
  }

  .gt-md\:w-px {
    width: 1px !important;
  }

  .gt-md\:w-0\.5 {
    width: 0.125rem !important;
  }

  .gt-md\:w-1\.5 {
    width: 0.375rem !important;
  }

  .gt-md\:w-2\.5 {
    width: 0.625rem !important;
  }

  .gt-md\:w-3\.5 {
    width: 0.875rem !important;
  }

  .gt-md\:w-1\/2 {
    width: 50% !important;
  }

  .gt-md\:w-1\/3 {
    width: 33.333333% !important;
  }

  .gt-md\:w-2\/3 {
    width: 66.666667% !important;
  }

  .gt-md\:w-1\/4 {
    width: 25% !important;
  }

  .gt-md\:w-2\/4 {
    width: 50% !important;
  }

  .gt-md\:w-3\/4 {
    width: 75% !important;
  }

  .gt-md\:w-1\/5 {
    width: 20% !important;
  }

  .gt-md\:w-2\/5 {
    width: 40% !important;
  }

  .gt-md\:w-3\/5 {
    width: 60% !important;
  }

  .gt-md\:w-4\/5 {
    width: 80% !important;
  }

  .gt-md\:w-1\/6 {
    width: 16.666667% !important;
  }

  .gt-md\:w-2\/6 {
    width: 33.333333% !important;
  }

  .gt-md\:w-3\/6 {
    width: 50% !important;
  }

  .gt-md\:w-4\/6 {
    width: 66.666667% !important;
  }

  .gt-md\:w-5\/6 {
    width: 83.333333% !important;
  }

  .gt-md\:w-1\/12 {
    width: 8.333333% !important;
  }

  .gt-md\:w-2\/12 {
    width: 16.666667% !important;
  }

  .gt-md\:w-3\/12 {
    width: 25% !important;
  }

  .gt-md\:w-4\/12 {
    width: 33.333333% !important;
  }

  .gt-md\:w-5\/12 {
    width: 41.666667% !important;
  }

  .gt-md\:w-6\/12 {
    width: 50% !important;
  }

  .gt-md\:w-7\/12 {
    width: 58.333333% !important;
  }

  .gt-md\:w-8\/12 {
    width: 66.666667% !important;
  }

  .gt-md\:w-9\/12 {
    width: 75% !important;
  }

  .gt-md\:w-10\/12 {
    width: 83.333333% !important;
  }

  .gt-md\:w-11\/12 {
    width: 91.666667% !important;
  }

  .gt-md\:w-full {
    width: 100% !important;
  }

  .gt-md\:w-2px {
    width: 2px !important;
  }

  .gt-md\:w-screen {
    width: 100vw !important;
  }

  .gt-md\:w-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .gt-md\:w-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .gt-md\:z-0 {
    z-index: 0 !important;
  }

  .gt-md\:z-10 {
    z-index: 10 !important;
  }

  .gt-md\:z-20 {
    z-index: 20 !important;
  }

  .gt-md\:z-30 {
    z-index: 30 !important;
  }

  .gt-md\:z-40 {
    z-index: 40 !important;
  }

  .gt-md\:z-50 {
    z-index: 50 !important;
  }

  .gt-md\:z-60 {
    z-index: 60 !important;
  }

  .gt-md\:z-70 {
    z-index: 70 !important;
  }

  .gt-md\:z-80 {
    z-index: 80 !important;
  }

  .gt-md\:z-90 {
    z-index: 90 !important;
  }

  .gt-md\:z-99 {
    z-index: 99 !important;
  }

  .gt-md\:z-999 {
    z-index: 999 !important;
  }

  .gt-md\:z-9999 {
    z-index: 9999 !important;
  }

  .gt-md\:z-99999 {
    z-index: 99999 !important;
  }

  .gt-md\:z-auto {
    z-index: auto !important;
  }

  .gt-md\:-z-1 {
    z-index: -1 !important;
  }

  .gt-md\:gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .gt-md\:gap-1 {
    grid-gap: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .gt-md\:gap-2 {
    grid-gap: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .gt-md\:gap-3 {
    grid-gap: 0.75rem !important;
    gap: 0.75rem !important;
  }

  .gt-md\:gap-4 {
    grid-gap: 1rem !important;
    gap: 1rem !important;
  }

  .gt-md\:gap-5 {
    grid-gap: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .gt-md\:gap-6 {
    grid-gap: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .gt-md\:gap-7 {
    grid-gap: 1.75rem !important;
    gap: 1.75rem !important;
  }

  .gt-md\:gap-8 {
    grid-gap: 2rem !important;
    gap: 2rem !important;
  }

  .gt-md\:gap-9 {
    grid-gap: 2.25rem !important;
    gap: 2.25rem !important;
  }

  .gt-md\:gap-10 {
    grid-gap: 2.5rem !important;
    gap: 2.5rem !important;
  }

  .gt-md\:gap-11 {
    grid-gap: 2.75rem !important;
    gap: 2.75rem !important;
  }

  .gt-md\:gap-12 {
    grid-gap: 3rem !important;
    gap: 3rem !important;
  }

  .gt-md\:gap-13 {
    grid-gap: 3.25rem !important;
    gap: 3.25rem !important;
  }

  .gt-md\:gap-14 {
    grid-gap: 3.5rem !important;
    gap: 3.5rem !important;
  }

  .gt-md\:gap-15 {
    grid-gap: 3.75rem !important;
    gap: 3.75rem !important;
  }

  .gt-md\:gap-16 {
    grid-gap: 4rem !important;
    gap: 4rem !important;
  }

  .gt-md\:gap-18 {
    grid-gap: 4.5rem !important;
    gap: 4.5rem !important;
  }

  .gt-md\:gap-20 {
    grid-gap: 5rem !important;
    gap: 5rem !important;
  }

  .gt-md\:gap-22 {
    grid-gap: 5.5rem !important;
    gap: 5.5rem !important;
  }

  .gt-md\:gap-24 {
    grid-gap: 6rem !important;
    gap: 6rem !important;
  }

  .gt-md\:gap-26 {
    grid-gap: 6.5rem !important;
    gap: 6.5rem !important;
  }

  .gt-md\:gap-28 {
    grid-gap: 7rem !important;
    gap: 7rem !important;
  }

  .gt-md\:gap-30 {
    grid-gap: 7.5rem !important;
    gap: 7.5rem !important;
  }

  .gt-md\:gap-32 {
    grid-gap: 8rem !important;
    gap: 8rem !important;
  }

  .gt-md\:gap-36 {
    grid-gap: 9rem !important;
    gap: 9rem !important;
  }

  .gt-md\:gap-40 {
    grid-gap: 10rem !important;
    gap: 10rem !important;
  }

  .gt-md\:gap-44 {
    grid-gap: 11rem !important;
    gap: 11rem !important;
  }

  .gt-md\:gap-48 {
    grid-gap: 12rem !important;
    gap: 12rem !important;
  }

  .gt-md\:gap-50 {
    grid-gap: 12.5rem !important;
    gap: 12.5rem !important;
  }

  .gt-md\:gap-52 {
    grid-gap: 13rem !important;
    gap: 13rem !important;
  }

  .gt-md\:gap-56 {
    grid-gap: 14rem !important;
    gap: 14rem !important;
  }

  .gt-md\:gap-60 {
    grid-gap: 15rem !important;
    gap: 15rem !important;
  }

  .gt-md\:gap-64 {
    grid-gap: 16rem !important;
    gap: 16rem !important;
  }

  .gt-md\:gap-72 {
    grid-gap: 18rem !important;
    gap: 18rem !important;
  }

  .gt-md\:gap-80 {
    grid-gap: 20rem !important;
    gap: 20rem !important;
  }

  .gt-md\:gap-90 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .gt-md\:gap-96 {
    grid-gap: 24rem !important;
    gap: 24rem !important;
  }

  .gt-md\:gap-100 {
    grid-gap: 25rem !important;
    gap: 25rem !important;
  }

  .gt-md\:gap-120 {
    grid-gap: 30rem !important;
    gap: 30rem !important;
  }

  .gt-md\:gap-128 {
    grid-gap: 32rem !important;
    gap: 32rem !important;
  }

  .gt-md\:gap-140 {
    grid-gap: 35rem !important;
    gap: 35rem !important;
  }

  .gt-md\:gap-160 {
    grid-gap: 40rem !important;
    gap: 40rem !important;
  }

  .gt-md\:gap-180 {
    grid-gap: 45rem !important;
    gap: 45rem !important;
  }

  .gt-md\:gap-192 {
    grid-gap: 48rem !important;
    gap: 48rem !important;
  }

  .gt-md\:gap-200 {
    grid-gap: 50rem !important;
    gap: 50rem !important;
  }

  .gt-md\:gap-240 {
    grid-gap: 60rem !important;
    gap: 60rem !important;
  }

  .gt-md\:gap-256 {
    grid-gap: 64rem !important;
    gap: 64rem !important;
  }

  .gt-md\:gap-280 {
    grid-gap: 70rem !important;
    gap: 70rem !important;
  }

  .gt-md\:gap-320 {
    grid-gap: 80rem !important;
    gap: 80rem !important;
  }

  .gt-md\:gap-360 {
    grid-gap: 90rem !important;
    gap: 90rem !important;
  }

  .gt-md\:gap-400 {
    grid-gap: 100rem !important;
    gap: 100rem !important;
  }

  .gt-md\:gap-480 {
    grid-gap: 120rem !important;
    gap: 120rem !important;
  }

  .gt-md\:gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .gt-md\:gap-0\.5 {
    grid-gap: 0.125rem !important;
    gap: 0.125rem !important;
  }

  .gt-md\:gap-1\.5 {
    grid-gap: 0.375rem !important;
    gap: 0.375rem !important;
  }

  .gt-md\:gap-2\.5 {
    grid-gap: 0.625rem !important;
    gap: 0.625rem !important;
  }

  .gt-md\:gap-3\.5 {
    grid-gap: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .gt-md\:gap-1\/2 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-md\:gap-1\/3 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .gt-md\:gap-2\/3 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .gt-md\:gap-1\/4 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .gt-md\:gap-2\/4 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-md\:gap-3\/4 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .gt-md\:gap-1\/5 {
    grid-gap: 20% !important;
    gap: 20% !important;
  }

  .gt-md\:gap-2\/5 {
    grid-gap: 40% !important;
    gap: 40% !important;
  }

  .gt-md\:gap-3\/5 {
    grid-gap: 60% !important;
    gap: 60% !important;
  }

  .gt-md\:gap-4\/5 {
    grid-gap: 80% !important;
    gap: 80% !important;
  }

  .gt-md\:gap-1\/6 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .gt-md\:gap-2\/6 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .gt-md\:gap-3\/6 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-md\:gap-4\/6 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .gt-md\:gap-5\/6 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .gt-md\:gap-1\/12 {
    grid-gap: 8.333333% !important;
    gap: 8.333333% !important;
  }

  .gt-md\:gap-2\/12 {
    grid-gap: 16.666667% !important;
    gap: 16.666667% !important;
  }

  .gt-md\:gap-3\/12 {
    grid-gap: 25% !important;
    gap: 25% !important;
  }

  .gt-md\:gap-4\/12 {
    grid-gap: 33.333333% !important;
    gap: 33.333333% !important;
  }

  .gt-md\:gap-5\/12 {
    grid-gap: 41.666667% !important;
    gap: 41.666667% !important;
  }

  .gt-md\:gap-6\/12 {
    grid-gap: 50% !important;
    gap: 50% !important;
  }

  .gt-md\:gap-7\/12 {
    grid-gap: 58.333333% !important;
    gap: 58.333333% !important;
  }

  .gt-md\:gap-8\/12 {
    grid-gap: 66.666667% !important;
    gap: 66.666667% !important;
  }

  .gt-md\:gap-9\/12 {
    grid-gap: 75% !important;
    gap: 75% !important;
  }

  .gt-md\:gap-10\/12 {
    grid-gap: 83.333333% !important;
    gap: 83.333333% !important;
  }

  .gt-md\:gap-11\/12 {
    grid-gap: 91.666667% !important;
    gap: 91.666667% !important;
  }

  .gt-md\:gap-full {
    grid-gap: 100% !important;
    gap: 100% !important;
  }

  .gt-md\:gap-2px {
    grid-gap: 2px !important;
    gap: 2px !important;
  }

  .gt-md\:gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .gt-md\:gap-x-1 {
    grid-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .gt-md\:gap-x-2 {
    grid-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .gt-md\:gap-x-3 {
    grid-column-gap: 0.75rem !important;
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }

  .gt-md\:gap-x-4 {
    grid-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .gt-md\:gap-x-5 {
    grid-column-gap: 1.25rem !important;
    -moz-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .gt-md\:gap-x-6 {
    grid-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .gt-md\:gap-x-7 {
    grid-column-gap: 1.75rem !important;
    -moz-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
  }

  .gt-md\:gap-x-8 {
    grid-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }

  .gt-md\:gap-x-9 {
    grid-column-gap: 2.25rem !important;
    -moz-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
  }

  .gt-md\:gap-x-10 {
    grid-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }

  .gt-md\:gap-x-11 {
    grid-column-gap: 2.75rem !important;
    -moz-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
  }

  .gt-md\:gap-x-12 {
    grid-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .gt-md\:gap-x-13 {
    grid-column-gap: 3.25rem !important;
    -moz-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
  }

  .gt-md\:gap-x-14 {
    grid-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }

  .gt-md\:gap-x-15 {
    grid-column-gap: 3.75rem !important;
    -moz-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
  }

  .gt-md\:gap-x-16 {
    grid-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }

  .gt-md\:gap-x-18 {
    grid-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }

  .gt-md\:gap-x-20 {
    grid-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .gt-md\:gap-x-22 {
    grid-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }

  .gt-md\:gap-x-24 {
    grid-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }

  .gt-md\:gap-x-26 {
    grid-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }

  .gt-md\:gap-x-28 {
    grid-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .gt-md\:gap-x-30 {
    grid-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }

  .gt-md\:gap-x-32 {
    grid-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .gt-md\:gap-x-36 {
    grid-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .gt-md\:gap-x-40 {
    grid-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .gt-md\:gap-x-44 {
    grid-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .gt-md\:gap-x-48 {
    grid-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .gt-md\:gap-x-50 {
    grid-column-gap: 12.5rem !important;
    -moz-column-gap: 12.5rem !important;
    column-gap: 12.5rem !important;
  }

  .gt-md\:gap-x-52 {
    grid-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .gt-md\:gap-x-56 {
    grid-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .gt-md\:gap-x-60 {
    grid-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .gt-md\:gap-x-64 {
    grid-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .gt-md\:gap-x-72 {
    grid-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .gt-md\:gap-x-80 {
    grid-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .gt-md\:gap-x-90 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .gt-md\:gap-x-96 {
    grid-column-gap: 24rem !important;
    -moz-column-gap: 24rem !important;
    column-gap: 24rem !important;
  }

  .gt-md\:gap-x-100 {
    grid-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }

  .gt-md\:gap-x-120 {
    grid-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }

  .gt-md\:gap-x-128 {
    grid-column-gap: 32rem !important;
    -moz-column-gap: 32rem !important;
    column-gap: 32rem !important;
  }

  .gt-md\:gap-x-140 {
    grid-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }

  .gt-md\:gap-x-160 {
    grid-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }

  .gt-md\:gap-x-180 {
    grid-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }

  .gt-md\:gap-x-192 {
    grid-column-gap: 48rem !important;
    -moz-column-gap: 48rem !important;
    column-gap: 48rem !important;
  }

  .gt-md\:gap-x-200 {
    grid-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }

  .gt-md\:gap-x-240 {
    grid-column-gap: 60rem !important;
    -moz-column-gap: 60rem !important;
    column-gap: 60rem !important;
  }

  .gt-md\:gap-x-256 {
    grid-column-gap: 64rem !important;
    -moz-column-gap: 64rem !important;
    column-gap: 64rem !important;
  }

  .gt-md\:gap-x-280 {
    grid-column-gap: 70rem !important;
    -moz-column-gap: 70rem !important;
    column-gap: 70rem !important;
  }

  .gt-md\:gap-x-320 {
    grid-column-gap: 80rem !important;
    -moz-column-gap: 80rem !important;
    column-gap: 80rem !important;
  }

  .gt-md\:gap-x-360 {
    grid-column-gap: 90rem !important;
    -moz-column-gap: 90rem !important;
    column-gap: 90rem !important;
  }

  .gt-md\:gap-x-400 {
    grid-column-gap: 100rem !important;
    -moz-column-gap: 100rem !important;
    column-gap: 100rem !important;
  }

  .gt-md\:gap-x-480 {
    grid-column-gap: 120rem !important;
    -moz-column-gap: 120rem !important;
    column-gap: 120rem !important;
  }

  .gt-md\:gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
  }

  .gt-md\:gap-x-0\.5 {
    grid-column-gap: 0.125rem !important;
    -moz-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
  }

  .gt-md\:gap-x-1\.5 {
    grid-column-gap: 0.375rem !important;
    -moz-column-gap: 0.375rem !important;
    column-gap: 0.375rem !important;
  }

  .gt-md\:gap-x-2\.5 {
    grid-column-gap: 0.625rem !important;
    -moz-column-gap: 0.625rem !important;
    column-gap: 0.625rem !important;
  }

  .gt-md\:gap-x-3\.5 {
    grid-column-gap: 0.875rem !important;
    -moz-column-gap: 0.875rem !important;
    column-gap: 0.875rem !important;
  }

  .gt-md\:gap-x-1\/2 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-md\:gap-x-1\/3 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .gt-md\:gap-x-2\/3 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .gt-md\:gap-x-1\/4 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .gt-md\:gap-x-2\/4 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-md\:gap-x-3\/4 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .gt-md\:gap-x-1\/5 {
    grid-column-gap: 20% !important;
    -moz-column-gap: 20% !important;
    column-gap: 20% !important;
  }

  .gt-md\:gap-x-2\/5 {
    grid-column-gap: 40% !important;
    -moz-column-gap: 40% !important;
    column-gap: 40% !important;
  }

  .gt-md\:gap-x-3\/5 {
    grid-column-gap: 60% !important;
    -moz-column-gap: 60% !important;
    column-gap: 60% !important;
  }

  .gt-md\:gap-x-4\/5 {
    grid-column-gap: 80% !important;
    -moz-column-gap: 80% !important;
    column-gap: 80% !important;
  }

  .gt-md\:gap-x-1\/6 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .gt-md\:gap-x-2\/6 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .gt-md\:gap-x-3\/6 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-md\:gap-x-4\/6 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .gt-md\:gap-x-5\/6 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .gt-md\:gap-x-1\/12 {
    grid-column-gap: 8.333333% !important;
    -moz-column-gap: 8.333333% !important;
    column-gap: 8.333333% !important;
  }

  .gt-md\:gap-x-2\/12 {
    grid-column-gap: 16.666667% !important;
    -moz-column-gap: 16.666667% !important;
    column-gap: 16.666667% !important;
  }

  .gt-md\:gap-x-3\/12 {
    grid-column-gap: 25% !important;
    -moz-column-gap: 25% !important;
    column-gap: 25% !important;
  }

  .gt-md\:gap-x-4\/12 {
    grid-column-gap: 33.333333% !important;
    -moz-column-gap: 33.333333% !important;
    column-gap: 33.333333% !important;
  }

  .gt-md\:gap-x-5\/12 {
    grid-column-gap: 41.666667% !important;
    -moz-column-gap: 41.666667% !important;
    column-gap: 41.666667% !important;
  }

  .gt-md\:gap-x-6\/12 {
    grid-column-gap: 50% !important;
    -moz-column-gap: 50% !important;
    column-gap: 50% !important;
  }

  .gt-md\:gap-x-7\/12 {
    grid-column-gap: 58.333333% !important;
    -moz-column-gap: 58.333333% !important;
    column-gap: 58.333333% !important;
  }

  .gt-md\:gap-x-8\/12 {
    grid-column-gap: 66.666667% !important;
    -moz-column-gap: 66.666667% !important;
    column-gap: 66.666667% !important;
  }

  .gt-md\:gap-x-9\/12 {
    grid-column-gap: 75% !important;
    -moz-column-gap: 75% !important;
    column-gap: 75% !important;
  }

  .gt-md\:gap-x-10\/12 {
    grid-column-gap: 83.333333% !important;
    -moz-column-gap: 83.333333% !important;
    column-gap: 83.333333% !important;
  }

  .gt-md\:gap-x-11\/12 {
    grid-column-gap: 91.666667% !important;
    -moz-column-gap: 91.666667% !important;
    column-gap: 91.666667% !important;
  }

  .gt-md\:gap-x-full {
    grid-column-gap: 100% !important;
    -moz-column-gap: 100% !important;
    column-gap: 100% !important;
  }

  .gt-md\:gap-x-2px {
    grid-column-gap: 2px !important;
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
  }

  .gt-md\:gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .gt-md\:gap-y-1 {
    grid-row-gap: 0.25rem !important;
    row-gap: 0.25rem !important;
  }

  .gt-md\:gap-y-2 {
    grid-row-gap: 0.5rem !important;
    row-gap: 0.5rem !important;
  }

  .gt-md\:gap-y-3 {
    grid-row-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }

  .gt-md\:gap-y-4 {
    grid-row-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  .gt-md\:gap-y-5 {
    grid-row-gap: 1.25rem !important;
    row-gap: 1.25rem !important;
  }

  .gt-md\:gap-y-6 {
    grid-row-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .gt-md\:gap-y-7 {
    grid-row-gap: 1.75rem !important;
    row-gap: 1.75rem !important;
  }

  .gt-md\:gap-y-8 {
    grid-row-gap: 2rem !important;
    row-gap: 2rem !important;
  }

  .gt-md\:gap-y-9 {
    grid-row-gap: 2.25rem !important;
    row-gap: 2.25rem !important;
  }

  .gt-md\:gap-y-10 {
    grid-row-gap: 2.5rem !important;
    row-gap: 2.5rem !important;
  }

  .gt-md\:gap-y-11 {
    grid-row-gap: 2.75rem !important;
    row-gap: 2.75rem !important;
  }

  .gt-md\:gap-y-12 {
    grid-row-gap: 3rem !important;
    row-gap: 3rem !important;
  }

  .gt-md\:gap-y-13 {
    grid-row-gap: 3.25rem !important;
    row-gap: 3.25rem !important;
  }

  .gt-md\:gap-y-14 {
    grid-row-gap: 3.5rem !important;
    row-gap: 3.5rem !important;
  }

  .gt-md\:gap-y-15 {
    grid-row-gap: 3.75rem !important;
    row-gap: 3.75rem !important;
  }

  .gt-md\:gap-y-16 {
    grid-row-gap: 4rem !important;
    row-gap: 4rem !important;
  }

  .gt-md\:gap-y-18 {
    grid-row-gap: 4.5rem !important;
    row-gap: 4.5rem !important;
  }

  .gt-md\:gap-y-20 {
    grid-row-gap: 5rem !important;
    row-gap: 5rem !important;
  }

  .gt-md\:gap-y-22 {
    grid-row-gap: 5.5rem !important;
    row-gap: 5.5rem !important;
  }

  .gt-md\:gap-y-24 {
    grid-row-gap: 6rem !important;
    row-gap: 6rem !important;
  }

  .gt-md\:gap-y-26 {
    grid-row-gap: 6.5rem !important;
    row-gap: 6.5rem !important;
  }

  .gt-md\:gap-y-28 {
    grid-row-gap: 7rem !important;
    row-gap: 7rem !important;
  }

  .gt-md\:gap-y-30 {
    grid-row-gap: 7.5rem !important;
    row-gap: 7.5rem !important;
  }

  .gt-md\:gap-y-32 {
    grid-row-gap: 8rem !important;
    row-gap: 8rem !important;
  }

  .gt-md\:gap-y-36 {
    grid-row-gap: 9rem !important;
    row-gap: 9rem !important;
  }

  .gt-md\:gap-y-40 {
    grid-row-gap: 10rem !important;
    row-gap: 10rem !important;
  }

  .gt-md\:gap-y-44 {
    grid-row-gap: 11rem !important;
    row-gap: 11rem !important;
  }

  .gt-md\:gap-y-48 {
    grid-row-gap: 12rem !important;
    row-gap: 12rem !important;
  }

  .gt-md\:gap-y-50 {
    grid-row-gap: 12.5rem !important;
    row-gap: 12.5rem !important;
  }

  .gt-md\:gap-y-52 {
    grid-row-gap: 13rem !important;
    row-gap: 13rem !important;
  }

  .gt-md\:gap-y-56 {
    grid-row-gap: 14rem !important;
    row-gap: 14rem !important;
  }

  .gt-md\:gap-y-60 {
    grid-row-gap: 15rem !important;
    row-gap: 15rem !important;
  }

  .gt-md\:gap-y-64 {
    grid-row-gap: 16rem !important;
    row-gap: 16rem !important;
  }

  .gt-md\:gap-y-72 {
    grid-row-gap: 18rem !important;
    row-gap: 18rem !important;
  }

  .gt-md\:gap-y-80 {
    grid-row-gap: 20rem !important;
    row-gap: 20rem !important;
  }

  .gt-md\:gap-y-90 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .gt-md\:gap-y-96 {
    grid-row-gap: 24rem !important;
    row-gap: 24rem !important;
  }

  .gt-md\:gap-y-100 {
    grid-row-gap: 25rem !important;
    row-gap: 25rem !important;
  }

  .gt-md\:gap-y-120 {
    grid-row-gap: 30rem !important;
    row-gap: 30rem !important;
  }

  .gt-md\:gap-y-128 {
    grid-row-gap: 32rem !important;
    row-gap: 32rem !important;
  }

  .gt-md\:gap-y-140 {
    grid-row-gap: 35rem !important;
    row-gap: 35rem !important;
  }

  .gt-md\:gap-y-160 {
    grid-row-gap: 40rem !important;
    row-gap: 40rem !important;
  }

  .gt-md\:gap-y-180 {
    grid-row-gap: 45rem !important;
    row-gap: 45rem !important;
  }

  .gt-md\:gap-y-192 {
    grid-row-gap: 48rem !important;
    row-gap: 48rem !important;
  }

  .gt-md\:gap-y-200 {
    grid-row-gap: 50rem !important;
    row-gap: 50rem !important;
  }

  .gt-md\:gap-y-240 {
    grid-row-gap: 60rem !important;
    row-gap: 60rem !important;
  }

  .gt-md\:gap-y-256 {
    grid-row-gap: 64rem !important;
    row-gap: 64rem !important;
  }

  .gt-md\:gap-y-280 {
    grid-row-gap: 70rem !important;
    row-gap: 70rem !important;
  }

  .gt-md\:gap-y-320 {
    grid-row-gap: 80rem !important;
    row-gap: 80rem !important;
  }

  .gt-md\:gap-y-360 {
    grid-row-gap: 90rem !important;
    row-gap: 90rem !important;
  }

  .gt-md\:gap-y-400 {
    grid-row-gap: 100rem !important;
    row-gap: 100rem !important;
  }

  .gt-md\:gap-y-480 {
    grid-row-gap: 120rem !important;
    row-gap: 120rem !important;
  }

  .gt-md\:gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .gt-md\:gap-y-0\.5 {
    grid-row-gap: 0.125rem !important;
    row-gap: 0.125rem !important;
  }

  .gt-md\:gap-y-1\.5 {
    grid-row-gap: 0.375rem !important;
    row-gap: 0.375rem !important;
  }

  .gt-md\:gap-y-2\.5 {
    grid-row-gap: 0.625rem !important;
    row-gap: 0.625rem !important;
  }

  .gt-md\:gap-y-3\.5 {
    grid-row-gap: 0.875rem !important;
    row-gap: 0.875rem !important;
  }

  .gt-md\:gap-y-1\/2 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-md\:gap-y-1\/3 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .gt-md\:gap-y-2\/3 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .gt-md\:gap-y-1\/4 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .gt-md\:gap-y-2\/4 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-md\:gap-y-3\/4 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .gt-md\:gap-y-1\/5 {
    grid-row-gap: 20% !important;
    row-gap: 20% !important;
  }

  .gt-md\:gap-y-2\/5 {
    grid-row-gap: 40% !important;
    row-gap: 40% !important;
  }

  .gt-md\:gap-y-3\/5 {
    grid-row-gap: 60% !important;
    row-gap: 60% !important;
  }

  .gt-md\:gap-y-4\/5 {
    grid-row-gap: 80% !important;
    row-gap: 80% !important;
  }

  .gt-md\:gap-y-1\/6 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .gt-md\:gap-y-2\/6 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .gt-md\:gap-y-3\/6 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-md\:gap-y-4\/6 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .gt-md\:gap-y-5\/6 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .gt-md\:gap-y-1\/12 {
    grid-row-gap: 8.333333% !important;
    row-gap: 8.333333% !important;
  }

  .gt-md\:gap-y-2\/12 {
    grid-row-gap: 16.666667% !important;
    row-gap: 16.666667% !important;
  }

  .gt-md\:gap-y-3\/12 {
    grid-row-gap: 25% !important;
    row-gap: 25% !important;
  }

  .gt-md\:gap-y-4\/12 {
    grid-row-gap: 33.333333% !important;
    row-gap: 33.333333% !important;
  }

  .gt-md\:gap-y-5\/12 {
    grid-row-gap: 41.666667% !important;
    row-gap: 41.666667% !important;
  }

  .gt-md\:gap-y-6\/12 {
    grid-row-gap: 50% !important;
    row-gap: 50% !important;
  }

  .gt-md\:gap-y-7\/12 {
    grid-row-gap: 58.333333% !important;
    row-gap: 58.333333% !important;
  }

  .gt-md\:gap-y-8\/12 {
    grid-row-gap: 66.666667% !important;
    row-gap: 66.666667% !important;
  }

  .gt-md\:gap-y-9\/12 {
    grid-row-gap: 75% !important;
    row-gap: 75% !important;
  }

  .gt-md\:gap-y-10\/12 {
    grid-row-gap: 83.333333% !important;
    row-gap: 83.333333% !important;
  }

  .gt-md\:gap-y-11\/12 {
    grid-row-gap: 91.666667% !important;
    row-gap: 91.666667% !important;
  }

  .gt-md\:gap-y-full {
    grid-row-gap: 100% !important;
    row-gap: 100% !important;
  }

  .gt-md\:gap-y-2px {
    grid-row-gap: 2px !important;
    row-gap: 2px !important;
  }

  .gt-md\:grid-flow-row {
    grid-auto-flow: row !important;
  }

  .gt-md\:grid-flow-col {
    grid-auto-flow: column !important;
  }

  .gt-md\:grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .gt-md\:grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

  .gt-md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-cols-none {
    grid-template-columns: none !important;
  }

  .gt-md\:col-auto {
    grid-column: auto !important;
  }

  .gt-md\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }

  .gt-md\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }

  .gt-md\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }

  .gt-md\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }

  .gt-md\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }

  .gt-md\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }

  .gt-md\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }

  .gt-md\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }

  .gt-md\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }

  .gt-md\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }

  .gt-md\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }

  .gt-md\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }

  .gt-md\:col-start-1 {
    grid-column-start: 1 !important;
  }

  .gt-md\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .gt-md\:col-start-3 {
    grid-column-start: 3 !important;
  }

  .gt-md\:col-start-4 {
    grid-column-start: 4 !important;
  }

  .gt-md\:col-start-5 {
    grid-column-start: 5 !important;
  }

  .gt-md\:col-start-6 {
    grid-column-start: 6 !important;
  }

  .gt-md\:col-start-7 {
    grid-column-start: 7 !important;
  }

  .gt-md\:col-start-8 {
    grid-column-start: 8 !important;
  }

  .gt-md\:col-start-9 {
    grid-column-start: 9 !important;
  }

  .gt-md\:col-start-10 {
    grid-column-start: 10 !important;
  }

  .gt-md\:col-start-11 {
    grid-column-start: 11 !important;
  }

  .gt-md\:col-start-12 {
    grid-column-start: 12 !important;
  }

  .gt-md\:col-start-13 {
    grid-column-start: 13 !important;
  }

  .gt-md\:col-start-auto {
    grid-column-start: auto !important;
  }

  .gt-md\:col-end-1 {
    grid-column-end: 1 !important;
  }

  .gt-md\:col-end-2 {
    grid-column-end: 2 !important;
  }

  .gt-md\:col-end-3 {
    grid-column-end: 3 !important;
  }

  .gt-md\:col-end-4 {
    grid-column-end: 4 !important;
  }

  .gt-md\:col-end-5 {
    grid-column-end: 5 !important;
  }

  .gt-md\:col-end-6 {
    grid-column-end: 6 !important;
  }

  .gt-md\:col-end-7 {
    grid-column-end: 7 !important;
  }

  .gt-md\:col-end-8 {
    grid-column-end: 8 !important;
  }

  .gt-md\:col-end-9 {
    grid-column-end: 9 !important;
  }

  .gt-md\:col-end-10 {
    grid-column-end: 10 !important;
  }

  .gt-md\:col-end-11 {
    grid-column-end: 11 !important;
  }

  .gt-md\:col-end-12 {
    grid-column-end: 12 !important;
  }

  .gt-md\:col-end-13 {
    grid-column-end: 13 !important;
  }

  .gt-md\:col-end-auto {
    grid-column-end: auto !important;
  }

  .gt-md\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .gt-md\:grid-rows-none {
    grid-template-rows: none !important;
  }

  .gt-md\:row-auto {
    grid-row: auto !important;
  }

  .gt-md\:row-span-1 {
    grid-row: span 1/span 1 !important;
  }

  .gt-md\:row-span-2 {
    grid-row: span 2/span 2 !important;
  }

  .gt-md\:row-span-3 {
    grid-row: span 3/span 3 !important;
  }

  .gt-md\:row-span-4 {
    grid-row: span 4/span 4 !important;
  }

  .gt-md\:row-span-5 {
    grid-row: span 5/span 5 !important;
  }

  .gt-md\:row-span-6 {
    grid-row: span 6/span 6 !important;
  }

  .gt-md\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .gt-md\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .gt-md\:row-start-3 {
    grid-row-start: 3 !important;
  }

  .gt-md\:row-start-4 {
    grid-row-start: 4 !important;
  }

  .gt-md\:row-start-5 {
    grid-row-start: 5 !important;
  }

  .gt-md\:row-start-6 {
    grid-row-start: 6 !important;
  }

  .gt-md\:row-start-7 {
    grid-row-start: 7 !important;
  }

  .gt-md\:row-start-auto {
    grid-row-start: auto !important;
  }

  .gt-md\:row-end-1 {
    grid-row-end: 1 !important;
  }

  .gt-md\:row-end-2 {
    grid-row-end: 2 !important;
  }

  .gt-md\:row-end-3 {
    grid-row-end: 3 !important;
  }

  .gt-md\:row-end-4 {
    grid-row-end: 4 !important;
  }

  .gt-md\:row-end-5 {
    grid-row-end: 5 !important;
  }

  .gt-md\:row-end-6 {
    grid-row-end: 6 !important;
  }

  .gt-md\:row-end-7 {
    grid-row-end: 7 !important;
  }

  .gt-md\:row-end-auto {
    grid-row-end: auto !important;
  }

  .gt-md\:transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .gt-md\:transform-none {
    transform: none !important;
  }

  .gt-md\:origin-center {
    transform-origin: center !important;
  }

  .gt-md\:origin-top {
    transform-origin: top !important;
  }

  .gt-md\:origin-top-right {
    transform-origin: top right !important;
  }

  .gt-md\:origin-right {
    transform-origin: right !important;
  }

  .gt-md\:origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .gt-md\:origin-bottom {
    transform-origin: bottom !important;
  }

  .gt-md\:origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .gt-md\:origin-left {
    transform-origin: left !important;
  }

  .gt-md\:origin-top-left {
    transform-origin: top left !important;
  }

  .gt-md\:icon-size-12 {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .gt-md\:icon-size-12 svg {
    width: 12px !important;
    height: 12px !important;
  }

  .gt-md\:icon-size-14 {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }

  .gt-md\:icon-size-14 svg {
    width: 14px !important;
    height: 14px !important;
  }

  .gt-md\:icon-size-16 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 16px !important;
  }

  .gt-md\:icon-size-16 svg {
    width: 16px !important;
    height: 16px !important;
  }

  .gt-md\:icon-size-18 {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }

  .gt-md\:icon-size-18 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .gt-md\:icon-size-20 {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 20px !important;
    line-height: 20px !important;
  }

  .gt-md\:icon-size-20 svg {
    width: 20px !important;
    height: 20px !important;
  }

  .gt-md\:icon-size-24 {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .gt-md\:icon-size-24 svg {
    width: 24px !important;
    height: 24px !important;
  }

  .gt-md\:icon-size-32 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .gt-md\:icon-size-32 svg {
    width: 32px !important;
    height: 32px !important;
  }

  .gt-md\:icon-size-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .gt-md\:icon-size-40 svg {
    width: 40px !important;
    height: 40px !important;
  }

  .gt-md\:icon-size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .gt-md\:icon-size-48 svg {
    width: 48px !important;
    height: 48px !important;
  }

  .gt-md\:icon-size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    font-size: 56px !important;
    line-height: 56px !important;
  }

  .gt-md\:icon-size-56 svg {
    width: 56px !important;
    height: 56px !important;
  }

  .gt-md\:icon-size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .gt-md\:icon-size-64 svg {
    width: 64px !important;
    height: 64px !important;
  }

  .gt-md\:icon-size-72 {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 72px !important;
    line-height: 72px !important;
  }

  .gt-md\:icon-size-72 svg {
    width: 72px !important;
    height: 72px !important;
  }

  .gt-md\:icon-size-80 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    font-size: 80px !important;
    line-height: 80px !important;
  }

  .gt-md\:icon-size-80 svg {
    width: 80px !important;
    height: 80px !important;
  }

  .gt-md\:icon-size-88 {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    font-size: 88px !important;
    line-height: 88px !important;
  }

  .gt-md\:icon-size-88 svg {
    width: 88px !important;
    height: 88px !important;
  }

  .gt-md\:icon-size-96 {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    font-size: 96px !important;
    line-height: 96px !important;
  }

  .gt-md\:icon-size-96 svg {
    width: 96px !important;
    height: 96px !important;
  }
}
